@charset "UTF-8";
html body {
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #1e1e1e;
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-font-kerning: auto;
  font-kerning: auto;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

/* ========================================================
# 関数の設定
======================================================== */
/* ========================================================
# リキッドレイアウト設定
======================================================== */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  background: #f2f2f2;
  position: relative;
}
body::before {
  pointer-events: none;
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/kfu-corp/img/common/section-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

html:has(.kfu-corp-s-restartMv) body::before {
  background-image: url("/assets/kfu-corp/img/restart/restart-bg.png");
}
@media (max-width: 768px) {
  html:has(.kfu-corp-s-restartMv) body::before {
    background-image: url("/assets/kfu-corp/img/restart/restart-bg-sp.png");
    background-position: center;
  }
}

html,
body {
  scroll-padding-top: 50px;
}

@media (max-width: 768px) {
  html,
  body {
    scroll-padding-top: 80px;
  }
}
body {
  background: #f2f2f2;
}

main {
  overflow: clip;
  position: relative;
  z-index: 2;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-ja);
  color: var(--color-base-text);
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: "icomoon";
  src: url("/assets/base/img/common/icomoon/fonts/icomoon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
::-moz-selection {
  background-color: #4650d7; /* ハイライト背景色 */
  color: #fff; /* ハイライト時の文字色 */
}
::selection {
  background-color: #4650d7; /* ハイライト背景色 */
  color: #fff; /* ハイライト時の文字色 */
}

/* Firefox対応 */
::-moz-selection {
  background-color: #4650d7;
  color: #fff;
}

/*! normalize.css v8.0.0 | 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.
 * 3. For a smooth scroll.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth; /* 3 */
}

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

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

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  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-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  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-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  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;
  max-width: 100%;
  height: auto;
}

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

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

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

/**
 * 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 {
  border-style: none;
  padding: 0;
}

/**
 * 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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  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] {
  -webkit-box-sizing: border-box;
  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;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

h1,
h2,
h3 {
  font-weight: unset;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

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

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  overflow-wrap: break-word;
}

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

.-lg-fs_xs {
  font-size: var(--font-size-xs);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .-lg-fs_xs {
    font-size: var(--font-size-xs-sp);
  }
}

.-lg-fs_s {
  font-size: var(--font-size-s);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .-lg-fs_s {
    font-size: var(--font-size-s-sp);
  }
}

.-lg-fs_m {
  font-size: var(--font-size-m);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .-lg-fs_m {
    font-size: var(--font-size-m-sp);
  }
}

.-lg-fs_l {
  font-size: var(--font-size-l);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .-lg-fs_l {
    font-size: var(--font-size-l-sp);
  }
}

.-lg-fs_xl {
  font-size: var(--font-size-xl);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .-lg-fs_xl {
    font-size: var(--font-size-xl-sp);
  }
}

.-lg-fs_xxl {
  font-size: var(--font-size-xxl);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .-lg-fs_xxl {
    font-size: var(--font-size-xxl-sp);
  }
}

.-lg-fd_bold {
  font-weight: bold;
}

.-lg-fd_underline {
  text-decoration: underline;
}

.-lg-fd_strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(35, 96, 153, 0.2)), color-stop(90%, rgba(35, 96, 153, 0.2)), color-stop(90%, transparent));
  background: linear-gradient(transparent 70%, rgba(35, 96, 153, 0.2) 70%, rgba(35, 96, 153, 0.2) 90%, transparent 90%);
}

.-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.-pt0 {
  padding-top: 0 !important;
}

.-pb0 {
  padding-bottom: 0 !important;
}

/* ========================================================
# utilityクラス
======================================================== */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

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

/*
resources/default/public/assets/base/img/common/icomoon/style.css をリセットするた目のcss
icomoonは、新規フォント追加の度に、style.cssが更新されてしまうため、更新されて欲しくないスタイル修正はここに記載する。
*/
.icon-circle-arrow {
  position: relative;
  width: 14px;
  height: 14px;
}
.icon-circle-arrow.-white .path1:before {
  color: #fff;
}
.icon-circle-arrow.-white .path2:before {
  color: var(--color-base-primary);
}
.icon-circle-arrow.-primary .path1:before {
  color: var(--color-base-primary);
}
.icon-circle-arrow.-primary .path2:before {
  color: var(--color-base-primaryInside);
}
.icon-circle-arrow.-secondary .path1:before {
  color: var(--color-base-secondary);
}
.icon-circle-arrow.-secondary .path2:before {
  color: var(--color-base-secondaryInside);
}
.icon-circle-arrow.-large {
  width: 20px;
  height: 20px;
}
.icon-circle-arrow.-large .path1:before {
  font-size: 20px;
}
.icon-circle-arrow.-large .path2:before {
  font-size: 20px;
}
.icon-circle-arrow .path1 {
  position: absolute;
  left: 0;
}
.icon-circle-arrow .path2 {
  position: absolute;
  left: 0;
}
.icon-circle-arrow .path2:before {
  margin: 0;
  color: var(--color-base-secondary);
}

.leadgrid-c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  border-radius: var(--border-radius-button);
  text-decoration: none;
  cursor: pointer;
  padding: 6px 40px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.leadgrid-c-button.-primary {
  background-color: var(--color-base-primary);
  color: var(--color-base-primaryInside);
  border: 3px solid var(--color-base-primary);
}
.leadgrid-c-button.-primary .icon-circle-arrow .path1:before {
  color: var(--color-base-secondary);
}
.leadgrid-c-button.-primary .icon-circle-arrow .path2:before {
  color: var(--color-base-primary);
}
.leadgrid-c-button.-secondary {
  background-color: var(--color-base-primary);
  color: var(--color-base-primaryInside);
  border: 3px solid var(--color-base-primary);
}
.leadgrid-c-button.-secondary .icon-circle-arrow .path1:before {
  color: #fff;
}
.leadgrid-c-button.-secondary .icon-circle-arrow .path2:before {
  color: var(--color-base-secondary);
}
.leadgrid-c-button.-white {
  background-color: #fff;
  color: var(--color-base-secondary);
  border: 3px solid var(--color-base-secondary);
}
.leadgrid-c-button.-white .icon-circle-arrow .path1:before {
  color: var(--color-base-secondary);
}
.leadgrid-c-button.-white .icon-circle-arrow .path2:before {
  color: var(--color-base-primary);
}
.leadgrid-c-button.-large {
  min-width: 275px;
  padding: 10px 40px;
}
.leadgrid-c-button.-large .c-button__jaTitle {
  font-size: var(--font-size-m);
}
.leadgrid-c-button.-large .icon-circle-arrow {
  right: 20px;
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.leadgrid-c-button.-big {
  min-width: 365px;
  padding: 28px 84px;
}
@media screen and (max-width: 767px) {
  .leadgrid-c-button.-big {
    padding: 28px 64px;
  }
}
.leadgrid-c-button.-big .c-button__jaTitle {
  font-size: var(--font-size-l);
}
.leadgrid-c-button.-big .icon-circle-arrow {
  right: 32px;
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.leadgrid-c-button.-medium {
  min-width: 235px;
  padding: 11px 40px;
  font-size: var(--font-size-s);
}
.leadgrid-c-button.-tag {
  border-radius: var(--border-radius);
  background-color: #f3f3f3;
  min-width: initial;
  font-size: 12px;
  font-weight: normal;
  padding: 3px 14px;
}
.leadgrid-c-button.-arrow:before {
  content: " ";
  width: 22px;
  height: 7px;
  background-image: url("/assets/base/img/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 22px 7px;
  position: absolute;
  top: 50%;
  right: 22px;
  margin-top: -3.5px;
}
.leadgrid-c-button.-shadow {
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
}
.leadgrid-c-button.-notValid {
  pointer-events: none;
  opacity: 0.5;
}
.leadgrid-c-button.-noRecaptcha {
  pointer-events: none;
  opacity: 0.5;
}
.leadgrid-c-button .c-button__enTitle {
  font-size: var(--font-size-xs);
  line-height: 120%;
  font-weight: bold;
  text-transform: none;
  word-break: break-all;
  opacity: 0.5;
  letter-spacing: 2.46507px;
}
.leadgrid-c-button .c-button__jaTitle {
  font-size: var(--font-size-s);
  line-height: 145%;
  font-weight: bold;
  text-transform: none;
  word-break: break-all;
}
.leadgrid-c-button .icon-circle-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  display: none;
}
.leadgrid-c-button .button-cover {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 150%;
  background-image: url("/assets/kfu-corp/img/common/button/button-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 1;
  -webkit-filter: brightness(1000);
  filter: brightness(1000);
  pointer-events: none;
}

.kfu-corp-c-h2-title {
  position: relative;
  z-index: 4;
}
.kfu-corp-c-h2-title .c-h2-title__jp {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 1.125rem;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-h2-title .c-h2-title__jp {
    font-size: 0.875rem;
    padding-left: 1.625rem;
    margin-bottom: 0.4375rem;
  }
}
@-webkit-keyframes circle {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}
.kfu-corp-c-h2-title .c-h2-title__jp::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  aspect-ratio: 1;
  width: 1.125rem;
  -webkit-mask-image: url("../img/common/h2-dec.svg");
  mask-image: url("../img/common/h2-dec.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-animation: circle 4s linear infinite;
  animation: circle 4s linear infinite;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-h2-title .c-h2-title__jp::before {
    left: 0;
    top: calc(45% - 1px);
  }
}
.kfu-corp-c-h2-title.leadgridCms-onlyInnerWorkspace .c-h2-title__jp {
  margin-bottom: 2.5rem;
}
.kfu-corp-c-h2-title.leadgridCms-onlyInnerWorkspace .c-h2-title__en {
  margin-top: unset;
}
.kfu-corp-c-h2-title .c-h2-title__en {
  margin-top: -1.25rem;
  text-transform: uppercase;
  font-size: 6.75rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-h2-title .c-h2-title__en {
    margin-top: unset;
    font-size: 3rem;
  }
}
.kfu-corp-c-h2-title .c-h2-title__en:has(span) {
  -webkit-transform: unset;
  transform: unset;
}
.kfu-corp-c-h2-title .c-h2-title__en:has(span) span {
  display: contents;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-h2-title .c-h2-title__en:has(span) span {
    display: block;
    line-height: 1;
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
  }
}

.leadgridCms-onlyInnerWorkspace .kfu-corp-c-h2-title .c-h2-title__jp {
  margin-bottom: 2.5rem;
}

.kfu-corp-c-bread {
  color: #fff;
}
.kfu-corp-c-bread .c-bread__breads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-bread .c-bread__breads {
    overflow: auto;
    gap: 0.625rem 1.5rem;
  }
}
.kfu-corp-c-bread .c-bread__bread {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.kfu-corp-c-bread .c-bread__bread::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  aspect-ratio: 8/6;
  width: 0.5rem;
  background: white;
  left: calc(100% + 0.5rem);
  -webkit-mask-image: url("../img/common/arrow-bread.svg");
  mask-image: url("../img/common/arrow-bread.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.kfu-corp-c-bread .c-bread__bread:last-of-type::after {
  display: none;
}
.kfu-corp-c-bread .c-bread__breadLink {
  max-width: 31.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-bread .c-bread__breadLink {
    max-width: unset;
    white-space: nowrap;
  }
}
.kfu-corp-c-bread .c-bread__bread:last-of-type .c-bread__breadLink {
  text-decoration: unset;
  display: block;
  padding: 0.21875rem 0.125rem 0.0625rem;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-bread .c-bread__bread:last-of-type .c-bread__breadLink {
    padding: 0.21875rem 0.125rem 0.0625rem;
  }
}
.kfu-corp-c-bread .c-bread__bread:not(:last-of-type) .c-bread__breadLink {
  text-decoration: underline;
  -webkit-text-decoration-color: #fff;
  text-decoration-color: #fff;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-bread .c-bread__bread:not(:last-of-type) .c-bread__breadLink:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}

.kfu-corp-c-inner {
  max-width: 78.125rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-inner {
    padding: 0 32px;
  }
}

.kfu-corp-c-categoryList {
  border-top: 0.125rem solid #1e1e1e;
  padding: 2.5rem 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList {
    padding: 0.625rem 0 0.75rem;
  }
}
.kfu-corp-c-categoryList::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/common/categoryList/category-line.png");
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
  background-size: 3.75rem;
  bottom: 0;
  left: 0;
}
.kfu-corp-c-categoryList .c-categoryList__filter {
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.kfu-corp-c-categoryList .c-categoryList__filter .text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  font-family: "Outfit", sans-serif;
  display: block;
  text-transform: uppercase;
  padding-right: 0.75rem;
}
.kfu-corp-c-categoryList .c-categoryList__filter .toggle {
  display: block;
  width: 1rem;
  aspect-ratio: 1;
  position: relative;
}
.kfu-corp-c-categoryList .c-categoryList__filter .toggle.is-active .toggle__line:nth-child(2) {
  opacity: 0;
}
.kfu-corp-c-categoryList .c-categoryList__filter .toggle::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  aspect-ratio: 1;
  background: #f2f2f2;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.kfu-corp-c-categoryList .c-categoryList__filter .toggle__line {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #1e1e1e;
  top: 50%;
  left: 50%;
  z-index: 1;
}
.kfu-corp-c-categoryList .c-categoryList__filter .toggle__line:nth-child(1) {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.kfu-corp-c-categoryList .c-categoryList__filter .toggle__line:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.kfu-corp-c-categoryList .c-categoryList__filter.is-active .toggle__line:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.kfu-corp-c-categoryList .c-categoryList__filter.is-active .toggle__line:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.kfu-corp-c-categoryList .c-categoryList__items-wrap {
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__items-wrap {
    padding-top: 1.5rem;
  }
}
.kfu-corp-c-categoryList .c-categoryList__items {
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__items {
    gap: 1.5rem;
  }
}
.kfu-corp-c-categoryList .c-categoryList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__item {
    display: block;
  }
}
.kfu-corp-c-categoryList .c-categoryList__title {
  white-space: nowrap;
  margin-top: 0.3125rem;
  padding-right: 0.75rem;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #1e1e1e;
  font-family: "Outfit", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 6.25rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__title {
    margin-top: -0.5rem;
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 0.5625rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__title::after {
    display: none;
  }
}
.kfu-corp-c-categoryList .c-categoryList__title--jp {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
}
.kfu-corp-c-categoryList .c-categoryList__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.kfu-corp-c-categoryList .c-categoryList__list a,
.kfu-corp-c-categoryList .c-categoryList__list .c-categoryList__list-item {
  display: block;
  font-size: 0.875rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  color: #1e1e1e;
  line-height: 1;
  border-radius: 1.875rem;
  border: 1px solid #1e1e1e;
  padding: 0.625rem 0.875rem 0.5625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__list a,
  .kfu-corp-c-categoryList .c-categoryList__list .c-categoryList__list-item {
    padding: 0.5625rem 1rem 0.375rem;
  }
}
.kfu-corp-c-categoryList .c-categoryList__list a.is-current,
.kfu-corp-c-categoryList .c-categoryList__list-item:has(input:checked) {
  background: #1e1e1e;
  color: #fff;
}
.kfu-corp-c-categoryList .c-categoryList__list-item label {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0.625rem 0.875rem 0.5625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__list-item label {
    padding: 0.5625rem 1rem 0.375rem;
  }
}
.kfu-corp-c-categoryList .c-categoryList__list-item:has(label) {
  padding: unset !important;
}
@media (any-hover: hover) {
  .kfu-corp-c-categoryList .c-categoryList__list a:hover,
  .kfu-corp-c-categoryList .c-categoryList__list-item:hover {
    background: #1e1e1e;
    color: #fff;
  }
}
.kfu-corp-c-categoryList .c-categoryList__bottom {
  margin-top: 2.5rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__bottom {
    gap: 1.875rem;
    margin-top: 2rem;
  }
}
.kfu-corp-c-categoryList .c-categoryList__reset {
  display: block;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  text-decoration: underline;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__reset {
    font-size: 0.875rem;
  }
}
.kfu-corp-c-categoryList .c-categoryList__action {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2.8125rem;
  color: #fff;
  background: #1e1e1e;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList .c-categoryList__action {
    font-size: 0.875rem;
    padding: 0.6875rem 3.0625rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-c-categoryList .c-categoryList__reset:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
  .kfu-corp-c-categoryList .c-categoryList__action:hover {
    background: #fff;
    color: #1e1e1e;
  }
}

.kfu-corp-c-categoryList:has(.c-categoryList__bottom) {
  padding-bottom: unset;
}
.kfu-corp-c-categoryList:has(.c-categoryList__bottom) .c-categoryList__items {
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList:has(.c-categoryList__bottom) .c-categoryList__items {
    padding-left: unset;
  }
}
.kfu-corp-c-categoryList:has(.c-categoryList__bottom) .c-categoryList__title {
  min-width: unset;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-categoryList:has(.c-categoryList__bottom) .c-categoryList__filter {
    padding-bottom: 0.75rem;
  }
}

.kfu-corp-c-forth-dotted {
  position: relative;
}
.kfu-corp-c-forth-dotted::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0.75rem;
  background-image: url("../img/common/categoryList/category-dec.svg");
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.kfu-corp-c-newsItem {
  padding: 3.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
  overflow: hidden;
  position: relative;
  --after-x: -150%;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-newsItem {
    padding: 1.5rem 0 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.kfu-corp-c-newsItem:not(:first-child) {
  border-top: none;
}
.kfu-corp-c-newsItem::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 250%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(var(--after-x));
  transform: translateX(var(--after-x));
  background-image: url("/assets/kfu-corp/img/common/newsitem-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}
.kfu-corp-c-newsItem .c-newsItem__date {
  position: relative;
  z-index: 2;
  width: 7.5rem;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-newsItem .c-newsItem__date {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 0.375rem;
  }
}
.kfu-corp-c-newsItem .c-newsItem__date .top {
  position: absolute;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  bottom: calc(100% + 1rem);
  width: 100%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-newsItem .c-newsItem__date .top {
    font-size: 0.75rem;
    position: static;
  }
}
.kfu-corp-c-newsItem .c-newsItem__date .bottom {
  display: block;
  text-align: right;
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-newsItem .c-newsItem__date .bottom {
    font-size: 2rem;
    text-align: left;
  }
}
.kfu-corp-c-newsItem .c-newsItem__cat-wrap {
  position: relative;
  z-index: 2;
  width: 10.5rem;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-newsItem .c-newsItem__cat-wrap {
    width: 50%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: unset;
    margin-left: unset;
  }
}
.kfu-corp-c-newsItem .c-newsItem__cat {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  padding: 0.4375rem 1.375rem;
  background: #1e1e1e;
  border-radius: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-newsItem .c-newsItem__cat {
    font-size: 0.8125rem;
    margin-left: auto;
    padding: 0.3125rem 0.75rem 0.1875rem;
    border-radius: 0.9375rem;
  }
}
.kfu-corp-c-newsItem .c-newsItem__title {
  position: relative;
  z-index: 2;
  width: 50%;
  margin-left: 4rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.125rem;
  line-height: 2;
  word-break: break-all;
  overflow: hidden;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-newsItem .c-newsItem__title {
    width: 100%;
    margin-left: unset;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-line-clamp: 4;
  }
}

@media (any-hover: hover) {
  .kfu-corp-c-newsItem .c-newsItem__date {
    -webkit-transition: 0.5s ease-in-out all;
    transition: 0.5s ease-in-out all;
  }
  .kfu-corp-c-newsItem .c-newsItem__cat {
    -webkit-transition: 0.5s ease-in-out all;
    transition: 0.5s ease-in-out all;
  }
  .kfu-corp-c-newsItem .c-newsItem__title {
    -webkit-transition: 0.5s ease-in-out all;
    transition: 0.5s ease-in-out all;
  }
  .kfu-corp-c-newsItem:hover .c-newsItem__date {
    color: #4650d7;
  }
  .kfu-corp-c-newsItem:hover .c-newsItem__cat {
    background: #4650d7;
  }
  .kfu-corp-c-newsItem:hover .c-newsItem__title {
    color: #4650d7;
  }
}
.kfu-corp-c-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 2px solid #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-pager {
    padding-bottom: 1.5rem;
  }
}
.kfu-corp-c-pager .c-pager__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-pager .c-pager__list {
    gap: 0.75rem;
  }
}
.kfu-corp-c-pager .c-pager__list .c-pager__item {
  text-decoration: unset;
  position: relative;
}
.kfu-corp-c-pager .c-pager__list .c-pager__item::after {
  width: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-pager .c-pager__list .c-pager__item::after {
    width: 0.75rem;
  }
}
.kfu-corp-c-pager .c-pager__item {
  line-height: 1;
  text-transform: uppercase;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: #1e1e1e;
  font-size: 3rem;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-pager .c-pager__item {
    font-size: 1.5rem;
  }
}
.kfu-corp-c-pager .c-pager__item::after {
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #1e1e1e;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.kfu-corp-c-pager .c-pager__item.-current::after {
  opacity: 0;
}
.kfu-corp-c-pager .c-pager__item.-disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media (any-hover: hover) {
  .kfu-corp-c-pager a.c-pager__item:hover {
    color: #4650d7;
  }
  .kfu-corp-c-pager a.c-pager__item:hover::after {
    background: #4650d7;
  }
}

.kfu-corp-c-noResult {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-noResult {
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
}
.kfu-corp-c-noResult .c-noresult__noResult-jp-title {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-noResult .c-noresult__noResult-jp-title {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}
.kfu-corp-c-noResult .c-noresult__noResult-en-title {
  text-align: center;
  margin-bottom: 2.8125rem;
  font-size: 4rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.04em;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-noResult .c-noresult__noResult-en-title {
    margin-bottom: 2.8125rem;
    font-size: 3rem;
  }
}
.kfu-corp-c-noResult .c-noresult__noResult-text {
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-noResult .c-noresult__noResult-text {
    font-size: 0.9375rem;
    text-align: left;
  }
}

.kfu-corp-c-buttonArrow {
  aspect-ratio: 1;
  width: 2.5rem;
  background: #1e1e1e;
  position: relative;
  display: grid;
  place-content: center;
  border-radius: 0.25rem;
}
.kfu-corp-c-buttonArrow::after {
  content: "";
  display: block;
  aspect-ratio: 8/6;
  width: 0.5rem;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.kfu-corp-c-buttonArrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 1.6875rem;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/button/button-circle.svg");
  mask-image: url("/assets/kfu-corp/img/common/button/button-circle.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  z-index: 1;
}

.kfu-corp-c-button {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  margin-inline: auto;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 1.5rem 0.4375rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #1e1e1e;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 12.5rem;
  --after-x: -100%;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-button {
    width: 100%;
  }
}
.kfu-corp-c-button::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 150%;
  background-image: url("/assets/kfu-corp/img/common/button/button-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(var(--after-x));
  transform: translateX(var(--after-x));
  z-index: 1;
}
.kfu-corp-c-button .text {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-button .text {
    text-align: left;
  }
}
.kfu-corp-c-button .kfu-corp-c-buttonArrow {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes circle2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes circle2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (any-hover: hover) {
  .kfu-corp-c-button:hover {
    border: 1px solid rgba(63, 63, 63, 0.8);
  }
  .kfu-corp-c-button:hover .text {
    color: #fff;
  }
  .kfu-corp-c-button:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: circle2 4s linear infinite;
    animation: circle2 4s linear infinite;
  }
}
.kfu-corp-c-button.is-hovered {
  background: #1e1e1e;
}
.kfu-corp-c-button.is-hovered .text {
  color: #fff;
}
.kfu-corp-c-button.is-hovered .kfu-corp-c-buttonArrow::before {
  -webkit-animation: circle2 4s linear infinite;
  animation: circle2 4s linear infinite;
}

.kfu-corp-c-share {
  width: 4.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-share {
    -ms-flex-item-align: unset;
    align-self: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
.kfu-corp-c-share .c-share__wrap {
  position: sticky;
  top: 6.25rem;
  right: 0;
  padding: 1.5rem 0.75rem;
  border-radius: 0.375rem;
  background: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-share .c-share__wrap {
    position: static;
    padding: 0.75rem 0.875rem;
    border-radius: 0.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
  }
}
.kfu-corp-c-share .c-share__text {
  text-transform: uppercase;
  text-align: center;
  font-size: 0.875rem;
  font-family: "Outfit", sans-serif;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-share .c-share__text {
    margin-bottom: unset;
  }
}
.kfu-corp-c-share .c-share__links {
  display: grid;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-share .c-share__links {
    gap: 0.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.kfu-corp-c-share .c-share__link {
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-share .c-share__link:hover {
    opacity: 0.7;
  }
}

.kfu-corp-c-wysiwyg {
  width: 100%;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg {
    margin-bottom: 3.4375rem;
  }
}
.kfu-corp-c-wysiwyg h2,
.kfu-corp-c-wysiwyg h3,
.kfu-corp-c-wysiwyg h4,
.kfu-corp-c-wysiwyg h5,
.kfu-corp-c-wysiwyg h6 {
  margin: 0;
}
.kfu-corp-c-wysiwyg h2 {
  font-size: 2rem;
  line-height: 1.6;
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-top: 2.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg h2 {
    font-size: 1.375rem;
    margin: 3rem 0;
  }
}
.kfu-corp-c-wysiwyg h2::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1;
  width: 1.125rem;
  background-image: url("/assets/kfu-corp/img/common/wysiwyg/h2-dec.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.kfu-corp-c-wysiwyg h3 {
  font-size: 1.625rem;
  line-height: 1.6;
  margin-top: 5rem;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 1px solid #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg h3 {
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
  }
}
.kfu-corp-c-wysiwyg h4 {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.6;
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg h4 {
    font-size: 1.125rem;
    margin: 2.5rem 0;
  }
}
.kfu-corp-c-wysiwyg strong {
  font-weight: 700;
}
.kfu-corp-c-wysiwyg p {
  font-size: 1.125rem;
  line-height: 2;
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg p {
    font-size: 0.9375rem;
    margin: 2.5rem 0;
  }
}
.kfu-corp-c-wysiwyg p a {
  color: #4650d7;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-c-wysiwyg p a:hover {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}
.kfu-corp-c-wysiwyg li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #131313;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg li {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-c-wysiwyg ul,
.kfu-corp-c-wysiwyg ol {
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg ul,
  .kfu-corp-c-wysiwyg ol {
    margin: 2.5rem 0;
  }
}
.kfu-corp-c-wysiwyg ol {
  list-style: none;
  padding-left: 0;
  counter-reset: n;
}
.kfu-corp-c-wysiwyg ol li {
  padding-left: 2.25rem;
  text-indent: -2.25rem;
}
.kfu-corp-c-wysiwyg ol li::before {
  content: "0" counter(n);
  counter-increment: n;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: #131313;
  font-weight: 400;
  line-height: 1;
  padding: 0.375rem;
  margin-right: 0.5rem;
}
.kfu-corp-c-wysiwyg ol li:nth-of-type(n + 10):before {
  content: counter(n) ".";
}
.kfu-corp-c-wysiwyg ul {
  list-style: none;
  padding-left: 0;
}
.kfu-corp-c-wysiwyg ul li {
  padding-left: 2.25rem;
  text-indent: -2.25rem;
}
.kfu-corp-c-wysiwyg ul li::before {
  vertical-align: middle;
  display: inline-block;
  background-color: #131313;
  content: "";
  margin-right: 0.75rem;
  margin-left: 0.6875rem;
  width: 0.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
}
.kfu-corp-c-wysiwyg a {
  word-wrap: break-word;
}
.kfu-corp-c-wysiwyg blockquote {
  padding: 3rem 2.5rem;
  font-size: 1.125rem;
  line-height: 2;
  margin: 4rem 0;
  position: relative;
  border: 1px solid #131313;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg blockquote {
    font-size: 0.9375rem;
    line-height: 2;
    padding: 1.5rem;
    margin: 2.5rem 0;
  }
}
.kfu-corp-c-wysiwyg blockquote::before {
  content: "";
  display: block;
  width: 0.8125rem;
  aspect-ratio: 1388/1218;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/wysiwyg/quote.svg");
  mask-image: url("/assets/kfu-corp/img/common/wysiwyg/quote.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg blockquote::before {
    top: 0.75rem;
    left: 0.625rem;
  }
}
.kfu-corp-c-wysiwyg blockquote p {
  margin: 0;
}
.kfu-corp-c-wysiwyg table {
  padding: 1px;
  display: block;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin-top: 4rem;
  margin-bottom: 4rem;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg table {
    margin: 2.5rem 0 2.5rem -32px;
    padding: 0 32px;
    width: calc(100% + 64px) !important;
  }
}
.kfu-corp-c-wysiwyg table th {
  background-color: #ececec;
  color: #1e1e1e;
}
.kfu-corp-c-wysiwyg table td,
.kfu-corp-c-wysiwyg table th {
  overflow: hidden;
  border: 1px solid #1e1e1e;
  padding: 0.5625rem 0.8125rem;
  min-width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-wysiwyg table td,
  .kfu-corp-c-wysiwyg table th {
    min-width: 19.4375rem;
  }
}
.kfu-corp-c-wysiwyg table td {
  padding: 0.75rem 0.75rem 1.6875rem;
}
.kfu-corp-c-wysiwyg table td {
  background: #fff;
}
.kfu-corp-c-wysiwyg code .hljs-ln {
  margin-top: 0;
  margin-bottom: 0;
}
.kfu-corp-c-wysiwyg code .hljs-ln-code,
.kfu-corp-c-wysiwyg code .hljs-ln-numbers {
  border: none;
  padding: 0;
  min-width: 0.3125rem;
}
.kfu-corp-c-wysiwyg code .hljs-ln-numbers {
  border-right: 1px solid #ccc;
}
.kfu-corp-c-wysiwyg img {
  max-width: 100%;
  height: auto;
  margin: 4rem 0;
}
.kfu-corp-c-wysiwyg .fr-img-caption .fr-inner {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
}
.kfu-corp-c-wysiwyg iframe {
  max-width: 100%;
}
.kfu-corp-c-wysiwyg h2:first-child,
.kfu-corp-c-wysiwyg h3:first-child,
.kfu-corp-c-wysiwyg h4:first-child,
.kfu-corp-c-wysiwyg h5:first-child,
.kfu-corp-c-wysiwyg h6:first-child,
.kfu-corp-c-wysiwyg p:first-child,
.kfu-corp-c-wysiwyg ol:first-child,
.kfu-corp-c-wysiwyg ul:first-child,
.kfu-corp-c-wysiwyg blockquote:first-child,
.kfu-corp-c-wysiwyg img:first-child,
.kfu-corp-c-wysiwyg table:first-child {
  margin-top: 0;
}
.kfu-corp-c-wysiwyg p a {
  color: #4650d7;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-wysiwyg p a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.kfu-corp-c-wysiwyg a img {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-wysiwyg a img:hover {
    opacity: 0.8;
  }
}
.kfu-corp-c-wysiwyg img.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 0.5rem 0.5rem 0.5rem 0.5rem;
  max-width: calc(100% - 1rem);
}

.kfu-corp-c-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #828282;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-tags {
    gap: 0.1875rem 0.5rem;
  }
}
.kfu-corp-c-tags .c-tags__item {
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-tags .c-tags__item {
    gap: 0.5rem;
    font-size: 0.8125rem;
  }
}
.kfu-corp-c-tags .c-tags__item::before {
  content: "#";
  display: inline-block;
  margin-right: 0.0625rem;
  -webkit-transform: translateY(-0.0625rem) scale(0.87);
  transform: translateY(-0.0625rem) scale(0.87);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-tags .c-tags__item::before {
    -webkit-transform: translateX(0.0625rem) translateY(-0.0625rem) scale(0.87);
    transform: translateX(0.0625rem) translateY(-0.0625rem) scale(0.87);
  }
}

.kfu-corp-c-card {
  display: block;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d2d2d2;
  position: relative;
  --after-x: -150%;
  overflow: hidden;
}
.kfu-corp-c-card .none {
  display: none;
}
.kfu-corp-c-card::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 300%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(var(--after-x));
  transform: translateX(var(--after-x));
  background-image: url("/assets/kfu-corp/img/common/card-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}
.kfu-corp-c-card .c-card__top {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}
.kfu-corp-c-card .c-card__cate {
  font-size: 0.875rem;
  color: #fff;
  padding: 0.25rem 1rem 0.125rem;
  background: #1e1e1e;
  border-radius: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card .c-card__cate {
    font-size: 0.8125rem;
    padding: 0.1875rem 0.75rem 0rem;
    border-radius: 0.9375rem;
  }
}
.kfu-corp-c-card .c-card__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.25rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 400;
}
.kfu-corp-c-card .c-card__date .top {
  font-size: 0.75rem;
}
.kfu-corp-c-card .c-card__date .bottom {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
  font-size: 1.25rem;
}
.kfu-corp-c-card .c-card__img {
  aspect-ratio: 380/253;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card .c-card__img {
    margin-bottom: 1rem;
  }
}
.kfu-corp-c-card .c-card__title {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  line-height: 1.6;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card .c-card__title {
    -webkit-line-clamp: 4;
  }
}
.kfu-corp-c-card .kfu-corp-c-tags {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.kfu-corp-c-card .c-card__bottom {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card .kfu-corp-c-buttonArrow {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@media (any-hover: hover) {
  .kfu-corp-c-card .c-card__cate {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card .c-card__date {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card .c-card__img {
    overflow: hidden;
  }
  .kfu-corp-c-card .c-card__img img {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card .c-card__title {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card .c-tags__item {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card:hover .c-card__cate {
    background: #4650d7;
  }
  .kfu-corp-c-card:hover .c-card__date {
    color: #4650d7;
  }
  .kfu-corp-c-card:hover .c-card__img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .kfu-corp-c-card:hover .c-card__title {
    color: #4650d7;
  }
  .kfu-corp-c-card:hover .c-tags__item {
    color: #4650d7;
  }
  @-webkit-keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-c-card:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: 4s linear infinite arrow;
    animation: 4s linear infinite arrow;
  }
}
.kfu-corp-c-toc {
  margin: 5rem 0;
  position: relative;
  border-top: 2px solid #1e1e1e;
  padding: 1rem 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-toc {
    margin: 2.5rem 0 3.5rem;
  }
}
.kfu-corp-c-toc::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/common/categoryList/category-line.png");
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
  background-size: 3.75rem;
  bottom: 0;
  left: 0;
}
.kfu-corp-c-toc .c-toc__title {
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.04em;
}
.kfu-corp-c-toc .c-toc__list {
  list-style: none;
  padding-left: 0;
}
.kfu-corp-c-toc .c-toc__item {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  padding-left: 2.125rem;
  position: relative;
}
.kfu-corp-c-toc .c-toc__item::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  position: absolute;
  width: 0.5rem;
  background: #6b74f3;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/subtitle-dec.svg");
  mask-image: url("/assets/kfu-corp/img/common/subtitle-dec.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  top: 0.5lh;
  margin-left: 0.625rem;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .kfu-corp-c-toc .c-toc__item a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.kfu-corp-c-toc .c-toc__item--lv3 {
  margin-left: 1.5em;
}
.kfu-corp-c-toc .c-toc__item--lv4 {
  margin-left: 2.5em;
}
.kfu-corp-c-toc .c-toc__link {
  text-decoration: underline;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
  font-size: 1.125rem;
  color: #4650d7;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-toc .c-toc__link {
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-c-toc .c-toc__link:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}

.kfu-corp-c-sub-title {
  padding-left: 1rem;
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  color: #4650d7;
  line-height: 1.6;
}
.kfu-corp-c-sub-title::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  position: absolute;
  width: 0.5rem;
  background: #6b74f3;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/subtitle-dec.svg");
  mask-image: url("/assets/kfu-corp/img/common/subtitle-dec.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
}

.kfu-corp-c-card2 {
  border-bottom: 1px solid #d2d2d2;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5rem;
  position: relative;
  --after-x: -150%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 {
    padding: 1rem 0;
    display: block;
  }
}
.kfu-corp-c-card2::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 200%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(var(--after-x));
  transform: translateX(var(--after-x));
  background-image: url("/assets/kfu-corp/img/common/card2-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}
.kfu-corp-c-card2 .c-card2__img {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: 30.0625rem;
  aspect-ratio: 480/277;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .c-card2__img {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
.kfu-corp-c-card2 .c-card2__content {
  position: relative;
  z-index: 3;
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .c-card2__content {
    width: 100%;
    display: block;
  }
}
.kfu-corp-c-card2 .c-card2__title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .c-card2__title {
    margin-top: unset;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}
.kfu-corp-c-card2 .c-card2__tags {
  color: #828282;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .c-card2__tags {
    margin-bottom: 2rem;
  }
}
.kfu-corp-c-card2 .c-card2__bottom {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
}
.kfu-corp-c-card2 .c-card2__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .c-card2__company {
    gap: 0.75rem;
  }
}
.kfu-corp-c-card2 .c-card2__logo {
  aspect-ratio: 160/80;
  width: 10rem;
  background: #fff;
  border-radius: 0.25rem;
  border: 1px solid #d2d2d2;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .c-card2__logo {
    aspect-ratio: 96/48;
    padding: 0.75rem;
    width: 6rem;
    height: 3rem;
  }
}
.kfu-corp-c-card2 .c-card2__logo img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.kfu-corp-c-card2 .c-card2__company-name {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .c-card2__company-name {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .kfu-corp-c-buttonArrow {
    width: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card2 .kfu-corp-c-buttonArrow::before {
    width: 1.25rem;
  }
}

.kfu-corp-c-card2:first-of-type {
  border-top: 1px solid #d2d2d2;
}

@media (any-hover: hover) {
  .kfu-corp-c-card2 {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card2 .c-card2__img img {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card2 .c-card2__title {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card2 .c-tags__item {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card2:hover .c-card2__img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .kfu-corp-c-card2:hover .c-card2__title {
    color: #4650d7;
  }
  .kfu-corp-c-card2:hover .c-tags__item {
    color: #4650d7;
  }
  .kfu-corp-c-card2:hover::after {
    opacity: 1;
  }
  @-webkit-keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-c-card2:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: 4s linear infinite arrow;
    animation: 4s linear infinite arrow;
  }
}
.kfu-corp-c-form .leadgrid-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 0.625rem;
}
.kfu-corp-c-form .leadgrid-form__label::before {
  content: "任意";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  padding: 0.375rem 0.625rem 0.1875rem;
  font-weight: bold;
  color: #7d7d7d;
  background-color: #f5f5f5;
  line-height: 1;
  height: auto;
  border-radius: unset;
  white-space: nowrap;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  margin-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .leadgrid-form__label::before {
    padding: 0.3125rem 0.625rem 0.125rem;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
.kfu-corp-c-form .leadgrid-form__label.-required:before {
  content: "必須";
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  padding: 0.375rem 0.625rem 0.1875rem;
  font-weight: bold;
  color: #fff;
  height: auto;
  background-color: #1e1e1e;
  white-space: nowrap;
  margin-right: 0.75rem;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  border-radius: unset;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .leadgrid-form__label.-required:before {
    padding: 0.3125rem 0.625rem 0.125rem;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
.kfu-corp-c-form .sc-dLMFU,
.kfu-corp-c-form .sc-fqkvVR {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ff1212;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.kfu-corp-c-form .leadgrid-form__input,
.kfu-corp-c-form .leadgrid-form__textarea,
.kfu-corp-c-form .leadgrid-form__select > select {
  -webkit-transition: all 0.3s cubic-bezier(0, 1, 0.64, 1);
  transition: all 0.3s cubic-bezier(0, 1, 0.64, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #1e1e1e;
  border-radius: 0.375rem;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  width: 100%;
  line-height: 1.4;
  font-size: 1rem;
  color: #1e1e1e;
}
.kfu-corp-c-form .leadgrid-form__input::-webkit-input-placeholder, .kfu-corp-c-form .leadgrid-form__textarea::-webkit-input-placeholder, .kfu-corp-c-form .leadgrid-form__select > select::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.4);
  opacity: 1;
}
.kfu-corp-c-form .leadgrid-form__input::-moz-placeholder, .kfu-corp-c-form .leadgrid-form__textarea::-moz-placeholder, .kfu-corp-c-form .leadgrid-form__select > select::-moz-placeholder {
  color: rgba(30, 30, 30, 0.4);
  opacity: 1;
}
.kfu-corp-c-form .leadgrid-form__input:-ms-input-placeholder, .kfu-corp-c-form .leadgrid-form__textarea:-ms-input-placeholder, .kfu-corp-c-form .leadgrid-form__select > select:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.4);
  opacity: 1;
}
.kfu-corp-c-form .leadgrid-form__input::-ms-input-placeholder, .kfu-corp-c-form .leadgrid-form__textarea::-ms-input-placeholder, .kfu-corp-c-form .leadgrid-form__select > select::-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.4);
  opacity: 1;
}
.kfu-corp-c-form .leadgrid-form__input::placeholder,
.kfu-corp-c-form .leadgrid-form__textarea::placeholder,
.kfu-corp-c-form .leadgrid-form__select > select::placeholder {
  color: rgba(30, 30, 30, 0.4);
  opacity: 1;
}
.kfu-corp-c-form .leadgrid-form__input:focus,
.kfu-corp-c-form .leadgrid-form__textarea:focus,
.kfu-corp-c-form .leadgrid-form__select > select:focus {
  border-color: #8531f0;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.24rem rgba(133, 49, 240, 0.005);
  box-shadow: 0 0 0 0.24rem rgba(133, 49, 240, 0.005);
}
.kfu-corp-c-form .leadgrid-form__input,
.kfu-corp-c-form .leadgrid-form__select > select,
.kfu-corp-c-form .leadgrid-form__textarea {
  padding: 1.1875rem 1.5rem 1.125rem;
  line-height: 1.4;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .leadgrid-form__input,
  .kfu-corp-c-form .leadgrid-form__select > select,
  .kfu-corp-c-form .leadgrid-form__textarea {
    padding: 1.0625rem 1.5rem 0.9375rem;
  }
}
.kfu-corp-c-form .leadgrid-form__textarea {
  min-height: 15rem;
}
.kfu-corp-c-form .leadgrid-form__select {
  position: relative;
}
.kfu-corp-c-form .leadgrid-form__select > select {
  cursor: pointer;
  padding-right: 2.8125rem;
}
.kfu-corp-c-form .leadgrid-form__select::before {
  content: "";
  display: block;
  position: absolute;
  right: 1.6875rem;
  background: #262626;
  aspect-ratio: 825/1100;
  width: 0.6875rem;
  height: 0.5rem !important;
  rotate: 90deg;
  top: 45%;
  margin-top: unset !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.kfu-corp-c-form .ctRfeX::after {
  display: none;
}
.kfu-corp-c-form .sc-cPiKLX.eQJVDn::before {
  border: 1px solid #131313;
  width: 1.5rem;
  background: transparent;
  height: 1.5rem;
  min-width: unset;
  margin-top: -1px !important;
}
.kfu-corp-c-form .leadgrid-form__radio input:checked + .sc-cPiKLX {
  font-weight: 700;
}
.kfu-corp-c-form .sc-cPiKLX.eQJVDn::after {
  background-color: unset !important;
  background: radial-gradient(#fff 0 0.25rem, #131313 0.25rem 100%) !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
  margin-top: unset !important;
  left: 0 !important;
  min-width: unset !important;
  top: 0px !important;
  margin-top: -1px !important;
}
.kfu-corp-c-form .eQJVDn {
  font-size: 1rem;
  line-height: 1;
  color: #131313;
}
.kfu-corp-c-form .leadgrid-form__radio + .leadgrid-form__radio {
  margin-top: 0.5rem;
}
.leadgrid-form__item .kfu-corp-c-form .leadgrid-form__radio {
  padding-left: 2.125rem;
}
@media screen and (max-width: 767px) {
  .leadgrid-form__item .kfu-corp-c-form .leadgrid-form__radio {
    padding-left: 1.25rem;
  }
}
.leadgrid-form__item .kfu-corp-c-form .leadgrid-form__radio:first-of-type {
  margin-top: 1rem;
}
.kfu-corp-c-form .leadgrid-form__radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.75rem;
  border: 1px solid #d2d2d2;
  border-radius: 0.375rem;
}
.kfu-corp-c-form .leadgrid-form__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.75rem;
  border: 1px solid #d2d2d2;
  border-radius: 0.375rem;
}
.kfu-corp-c-form .iUMJGW input[type=checkbox] + span::before {
  border-color: #131313 !important;
  aspect-ratio: 1;
  border-width: 1px !important;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  min-width: unset !important;
  margin-top: -3px;
}
.kfu-corp-c-form .iUMJGW input[type=radio] + span {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.kfu-corp-c-form .iUMJGW input[type=checkbox] + span {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.kfu-corp-c-form .iUMJGW input[type=checkbox]:checked + span::after {
  width: 1.5rem !important;
  height: 1.5rem !important;
  margin-top: -2px !important;
  background: #fff;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/check-icon.svg");
  mask-image: url("/assets/kfu-corp/img/common/check-icon.svg");
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-size: 1.125rem 0.6875rem !important;
  mask-size: 1.125rem 0.6875rem !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  left: 0 !important;
  min-width: unset !important;
  top: 0px !important;
  border: unset !important;
  -webkit-transform: unset !important;
  transform: unset !important;
}
.kfu-corp-c-form .iUMJGW input[type=checkbox]:checked + span::before {
  background: #1e1e1e;
}
.kfu-corp-c-form .leadgrid-form__radio:has(input:checked) label {
  border: 1px solid #131313;
}
.kfu-corp-c-form .c-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: unset;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .c-form__checkbox {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.kfu-corp-c-form .c-form__checkbox label {
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.kfu-corp-c-form .c-form__checkbox input[type=checkbox] {
  display: none;
}
.kfu-corp-c-form .c-form__checkbox input[type=checkbox]:checked + .c-form__checkboxLabel:after {
  position: absolute;
  content: " ";
  display: block;
  left: 0;
  top: 2px !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
  margin-top: -2px !important;
  background: #fff;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/check-icon.svg");
  mask-image: url("/assets/kfu-corp/img/common/check-icon.svg");
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-size: 1.125rem 0.6875rem !important;
  mask-size: 1.125rem 0.6875rem !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  left: 0 !important;
  min-width: unset !important;
  border: unset !important;
  -webkit-transform: unset !important;
  transform: unset !important;
}
.kfu-corp-c-form .c-form__checkbox input[type=checkbox]:checked + .c-form__checkboxLabel::before {
  background: #1e1e1e;
}
.kfu-corp-c-form .c-form__checkboxLabel {
  color: #131313;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 700;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .c-form__checkboxLabel {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
}
.kfu-corp-c-form .c-form__checkboxLabel:before {
  content: "";
  display: block;
  min-width: unset !important;
  background: transparent;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  border: 1px solid #131313 !important;
  border-radius: 0.25rem;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.kfu-corp-c-form #js-contact-privacy {
  padding: 0.75rem;
  border: 1px solid #131313;
  border-radius: 0.375rem;
}
.kfu-corp-c-form .c-form__agree {
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .c-form__agree {
    max-width: 23.4375rem;
    margin-inline: auto;
  }
}
.kfu-corp-c-form .c-form__agree > div {
  margin-bottom: 0.5rem;
}
.kfu-corp-c-form .c-form__agree .privacy {
  text-align: left;
  color: #131313;
  font-size: 0.75rem;
  margin: 1.5rem 0 0 0;
}
.kfu-corp-c-form .c-form__agreeText {
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .c-form__agreeText {
    font-size: 0.875rem;
  }
}
.kfu-corp-c-form .c-form__agreeText a {
  color: #1e1e1e;
}
.kfu-corp-c-form .button-cover {
  display: block;
  position: absolute;
  height: 100%;
  width: 150%;
  background-image: url("/assets/kfu-corp/img/common/button/button-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(var(--after-x));
  transform: translateX(var(--after-x));
  z-index: 1;
  -webkit-filter: brightness(1000);
  filter: brightness(1000);
}
.kfu-corp-c-form .c-form__action {
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  background: #fff;
  border-radius: 0.375rem;
  background: #1e1e1e !important;
  width: 100%;
  --after-x: -100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .c-form__action {
    margin-top: 3.125rem;
  }
}
.kfu-corp-c-form .kfu-corp-c-buttonArrow {
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;
}
.kfu-corp-c-form .leadgrid-c-button {
  width: 100%;
  border-radius: 0.375rem !important;
  padding: 0.875rem 1.5rem 0.8125rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  background: transparent !important;
  letter-spacing: 0.04em;
  border: 1px solid #1e1e1e !important;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .leadgrid-c-button {
    padding: 0.875rem 1.5rem 0.8125rem 1.5rem;
  }
}
.kfu-corp-c-form .leadgrid-c-button .c-button__jaTitle {
  font-size: 1rem;
  font-weight: 500 !important;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-form .c-form__action:hover .c-button__jaTitle {
    color: #1e1e1e;
  }
  @-webkit-keyframes circle-animation-form {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes circle-animation-form {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-c-form .c-form__action:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: circle-animation-form 4s linear infinite;
    animation: circle-animation-form 4s linear infinite;
  }
}
.kfu-corp-c-form .sc-dLMFU.gggCCx {
  text-align: left;
}
.kfu-corp-c-form .sc-imWYAI {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.6875rem 1.25rem;
  border-radius: 0.1875rem;
  border: 2px solid rgba(30, 30, 30, 0.05);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #131313;
  background: #f3f3e1;
  line-height: 1.65;
  min-height: 3rem;
}
.kfu-corp-c-form .sc-fqkvVR.eqlkwm {
  display: none;
}
.kfu-corp-c-form .c-form__agreeText_not_scroll > div {
  margin-bottom: 1.5rem;
  color: #131313;
  font-size: 1rem;
  text-align: left !important;
  font-weight: 700;
}
.kfu-corp-c-form .c-form__agreeText_not_scroll a {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-form .c-form__agreeText_not_scroll a:hover {
    color: #4650d7;
  }
}
.kfu-corp-c-form .sc-imWYAI img {
  width: 1.375rem;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1;
}
.kfu-corp-c-form .label--file-note {
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .label--file-note {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.kfu-corp-c-form .label--file-note::after {
  content: "※添付できるファイル総容量は5MBまでです。";
  display: inline-block;
  margin-left: 0.5625rem;
  color: #d35645;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.25rem;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-form .label--file-note::after {
    width: 100%;
    margin-left: unset;
  }
}
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__input,
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__select > select,
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__textarea {
  border-color: #ff1212;
}
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__input::-webkit-input-placeholder, .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__select > select::-webkit-input-placeholder, .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__textarea::-webkit-input-placeholder {
  color: #ff1212;
  opacity: 0.4;
}
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__input::-moz-placeholder, .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__select > select::-moz-placeholder, .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__textarea::-moz-placeholder {
  color: #ff1212;
  opacity: 0.4;
}
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__input:-ms-input-placeholder, .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__select > select:-ms-input-placeholder, .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__textarea:-ms-input-placeholder {
  color: #ff1212;
  opacity: 0.4;
}
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__input::-ms-input-placeholder, .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__select > select::-ms-input-placeholder, .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__textarea::-ms-input-placeholder {
  color: #ff1212;
  opacity: 0.4;
}
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__input::placeholder,
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__select > select::placeholder,
.kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__error:not(:empty)) .leadgrid-form__textarea::placeholder {
  color: #ff1212;
  opacity: 0.4;
}

.kfu-corp-c-footer {
  padding-bottom: 6.875rem;
  position: relative;
  z-index: 2;
}
.kfu-corp-c-footer .c-footer__content {
  margin: 0 1.5rem;
  border-radius: 0.5rem;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__content {
    margin: 0 0.5rem;
    border-radius: 0.25rem;
  }
}
.kfu-corp-c-footer .c-footer__inner {
  max-width: 83.125rem;
  padding: 6.25rem 25px 6rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__inner {
    max-width: 37.5rem;
    padding: 4.375rem 1.5rem;
  }
}
.kfu-corp-c-footer .c-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 5.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__menus {
    display: grid;
    grid-template-columns: 1fr;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    gap: 2.5rem;
    margin-bottom: 5rem;
  }
}
.kfu-corp-c-footer .c-footer__menu-block {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__menu-block {
    width: 100%;
  }
}
.kfu-corp-c-footer .c-footer__menu {
  display: block;
}
.kfu-corp-c-footer .c-footer__menu-text {
  margin-bottom: 0.625rem;
  color: #1e1e1e;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__menu-text {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-c-footer .c-footer__menu-text::before {
  background: #6b74f3;
}
.kfu-corp-c-footer .c-footer__menu-text-en {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  position: relative;
  padding-bottom: 0.125rem;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__menu-text-en {
    font-size: 1.75rem;
  }
}
.kfu-corp-c-footer .c-footer__menu-text-en::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1e1e;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-footer .c-footer__menu:hover .c-footer__menu-text-en {
    color: #4650d7;
  }
  .kfu-corp-c-footer .c-footer__menu:hover .c-footer__menu-text-en::after {
    background: #4650d7;
  }
}
.kfu-corp-c-footer .c-footer__child-menus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__child-menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.75rem 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0rem;
    margin-left: -0.125rem;
  }
}
.kfu-corp-c-footer .c-footer__child-menus:has(.c-footer__child-menu) {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__child-menus:has(.c-footer__child-menu) {
    margin-top: 2.25rem;
  }
}
.kfu-corp-c-footer .c-footer__child-menu-link {
  display: block;
  padding: 0 0.25rem;
  font-size: 1rem;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-footer .c-footer__child-menu-link:hover {
    color: #4650d7;
  }
}
.kfu-corp-c-footer .c-footer__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
.kfu-corp-c-footer .c-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__left {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.kfu-corp-c-footer .c-footer__logo {
  aspect-ratio: 104/40;
  width: 6.5rem;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__logo {
    width: 5.1875rem;
  }
}
.kfu-corp-c-footer .c-footer__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-c-footer .c-footer__sns-item {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__sns-item {
    grid-template-columns: repeat(4, 1fr);
  }
}
.kfu-corp-c-footer.leadgridCms-onlyInnerWorkspace .c-footer__sns-link {
  padding: 0.125rem;
}
.kfu-corp-c-footer .c-footer__sns-link {
  aspect-ratio: 1;
  width: 2rem;
  display: grid;
  place-content: center;
  padding: 0.5rem;
  background: #1e1e1e;
  border-radius: 0.25rem;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__sns-link {
    border-radius: 0.125rem;
  }
}
.kfu-corp-c-footer .c-footer__sns-link img {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
}
.kfu-corp-c-footer .c-footer__sns-link[href=""], .kfu-corp-c-footer .c-footer__sns-link[href="/"], .kfu-corp-c-footer .c-footer__sns-link[href="#"] {
  display: none;
}
.kfu-corp-c-footer.leadgridCms-onlyInnerWorkspace .c-footer__sns-link {
  display: block !important;
}
.kfu-corp-c-footer.leadgridCms-onlyInnerWorkspace .c-footer__sns-link img {
  height: 1.875rem;
  width: 1.875rem;
}
@media (any-hover: hover) {
  .kfu-corp-c-footer .c-footer__sns-link:hover {
    background: #fff;
  }
  .kfu-corp-c-footer .c-footer__sns-link:hover img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
  }
}
.kfu-corp-c-footer .c-footer__sns-link img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-c-footer .c-footer__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__right {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
  }
}
.kfu-corp-c-footer .c-footer__button {
  display: block;
  width: 17.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background: #fff;
  border: 1px solid #1e1e1e;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__button {
    width: 100%;
  }
}
.kfu-corp-c-footer .c-footer__button .icon {
  aspect-ratio: 1;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.6875rem;
  border-radius: 0.25rem;
}
.kfu-corp-c-footer .c-footer__button .icon img {
  -webkit-transform: translateX(2%);
  transform: translateX(2%);
}
.kfu-corp-c-footer .c-footer__button .text {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 1rem;
  line-height: 1;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__button .text {
    margin-left: -2.5rem;
    padding: 0 2.25rem;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}
@media (any-hover: hover) {
  .kfu-corp-c-footer .c-footer__button:hover {
    background: #1e1e1e;
    border: 1px solid rgba(63, 63, 63, 0.8);
  }
  .kfu-corp-c-footer .c-footer__button:hover .text {
    color: #fff;
  }
}
.kfu-corp-c-footer .c-footer__button:nth-of-type(1) .icon {
  background: #8b33fb;
}
.kfu-corp-c-footer .c-footer__button:nth-of-type(2) .icon {
  background: #1537e8;
}
.kfu-corp-c-footer .c-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__bottom {
    padding-top: 1.5625rem;
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    gap: 2.5rem;
  }
}
.kfu-corp-c-footer .c-footer__bottom-left {
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__bottom-left {
    line-height: 1.4;
    text-align: center;
  }
}
.kfu-corp-c-footer .c-footer__bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0625rem;
  max-width: 31.25rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer .c-footer__bottom-links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.kfu-corp-c-footer .c-footer__bottom-link {
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: underline;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  position: relative;
}
.kfu-corp-c-footer .c-footer__bottom-link::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.25rem;
  left: calc(100% + 1rem);
  width: 2px;
  height: 120%;
  background-image: radial-gradient(circle, #1e1e1e 0.5px, transparent 0.5px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 1px 5px;
}
@media (any-hover: hover) {
  .kfu-corp-c-footer .c-footer__bottom-link:hover {
    color: #4650d7;
  }
}
.kfu-corp-c-footer .c-footer__bottom-links li:last-of-type .c-footer__bottom-link::after {
  display: none;
}

@keyframes circle {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}
.kfu-corp-c-h2-dec {
  position: relative;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-h2-dec {
    padding-left: 1.625rem;
  }
}
.kfu-corp-c-h2-dec::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  aspect-ratio: 1;
  width: 1.125rem;
  -webkit-mask-image: url("../img/common/h2-dec.svg");
  mask-image: url("../img/common/h2-dec.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-animation: circle 4s linear infinite;
  animation: circle 4s linear infinite;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-h2-dec::before {
    top: calc(45% - 1px);
  }
}

.kfu-corp-c-dottedLine {
  position: relative;
}
.kfu-corp-c-dottedLine .c-dottedLine__inner {
  position: relative;
}
.kfu-corp-c-dottedLine::before, .kfu-corp-c-dottedLine::after,
.kfu-corp-c-dottedLine .c-dottedLine__inner::before,
.kfu-corp-c-dottedLine .c-dottedLine__inner::after {
  content: "";
  position: absolute;
  background-repeat: repeat;
  background-position: center;
  background-size: 0.4375rem 0.4375rem;
  background-image: radial-gradient(circle, #1e1e1e 1px, transparent 1px 4px);
  pointer-events: none;
}
.kfu-corp-c-dottedLine::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.625rem;
  clip-path: inset(0 0.5rem 0 0.5rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-dottedLine::before {
    clip-path: inset(0 0.375rem 0 0.375rem);
  }
}
.kfu-corp-c-dottedLine::after {
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.625rem;
  clip-path: inset(0 0.5rem 0 0.5rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-dottedLine::after {
    clip-path: inset(0 0.375rem 0 0.375rem);
  }
}
.kfu-corp-c-dottedLine .c-dottedLine__inner::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.625rem;
  clip-path: inset(0.5rem 0 0.5rem 0);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-dottedLine .c-dottedLine__inner::before {
    clip-path: inset(0.25rem 0 0.5625rem 0);
    top: 0.25rem;
  }
}
.kfu-corp-c-dottedLine .c-dottedLine__inner::after {
  top: 0;
  bottom: 0;
  right: 0;
  width: 0.625rem;
  clip-path: inset(0.5rem 0 0.5rem 0);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-dottedLine .c-dottedLine__inner::after {
    clip-path: inset(0.25rem 0 0.5625rem 0);
    top: 0.25rem;
  }
}

.kfu-corp-c-base-text {
  font-size: 1.125rem;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-base-text {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.kfu-corp-c-card3 .c-card3__thumb {
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card3 .c-card3__thumb {
    margin-bottom: 1.25rem;
  }
}
.kfu-corp-c-card3 .c-card3__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card3 .c-card3__title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
}
.kfu-corp-c-card3 .c-card3__text {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card3 .c-card3__text {
    margin-bottom: 0.9375rem;
    font-size: 0.9375rem;
  }
}
.kfu-corp-c-card3 .c-card3__btn {
  gap: 5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card3 .c-card3__btn {
    gap: 3.375rem;
  }
}
.kfu-corp-c-card3 .c-card3__btn .text {
  text-align: left;
}
.kfu-corp-c-card3 .kfu-corp-c-button {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card3 .kfu-corp-c-buttonArrow {
    width: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-card3 .kfu-corp-c-buttonArrow::before {
    width: 1.25rem;
  }
}

.leadgridCms-onlyInnerWorkspace .kfu-corp-c-card3 .kfu-corp-c-button {
  pointer-events: auto;
}

@media (any-hover: hover) {
  .kfu-corp-c-card3 .c-card3__thumb {
    overflow: hidden;
  }
  .kfu-corp-c-card3 .c-card3__thumb img {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card3 .c-card3__title {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card3 .c-card3__text {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-card3:hover .c-card3__thumb img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .kfu-corp-c-card3:hover .kfu-corp-c-button {
    border: 1px solid rgba(63, 63, 63, 0.8);
  }
  .kfu-corp-c-card3:hover .kfu-corp-c-button .text {
    color: #fff;
  }
  .kfu-corp-c-card3:hover .kfu-corp-c-button .kfu-corp-c-buttonArrow::before {
    -webkit-animation: circle2 4s linear infinite;
    animation: circle2 4s linear infinite;
  }
}
.kfu-corp-c-slider-bottom {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-slider-bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.kfu-corp-c-slider-bottom .swiper-pagination {
  position: static !important;
  width: 50% !important;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 0.25rem !important;
}
.kfu-corp-c-slider-bottom .swiper-pagination-bullet {
  width: 2.5rem !important;
  height: 1px !important;
  background: #c0c0c0 !important;
  -webkit-transition: 0.3s ease-in-out all !important;
  transition: 0.3s ease-in-out all !important;
  opacity: 1 !important;
  margin: unset !important;
  border-radius: unset !important;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-slider-bottom .swiper-pagination-bullet {
    width: 2.25rem !important;
  }
}
.kfu-corp-c-slider-bottom .swiper-pagination-bullet-active {
  background: #1e1e1e !important;
}
.kfu-corp-c-slider-bottom .c-slider-bottom__button {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 2.5rem;
  border: 1px solid #1e1e1e;
  display: grid;
  place-content: center;
}
.kfu-corp-c-slider-bottom .c-slider-bottom__button::after {
  content: "";
  display: block;
  aspect-ratio: 8/6;
  width: 0.5rem;
  background: #1e1e1e;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
@media (any-hover: hover) {
  .kfu-corp-c-slider-bottom .c-slider-bottom__button:hover {
    opacity: 0.7;
  }
}
.kfu-corp-c-slider-bottom .c-slider-bottom__button-prev {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.kfu-corp-c-sectionCircleTop {
  position: relative;
  z-index: 2;
}
.kfu-corp-c-sectionCircleTop::before {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 160vw;
  aspect-ratio: 2400/480;
  border-radius: 50%;
  background: #f2f2f2;
  z-index: 1;
  bottom: calc(100% - 9.375rem);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-sectionCircleTop::before {
    bottom: calc(100% - 1.875rem);
    width: 270vw;
    aspect-ratio: 1024/320;
  }
}

.kfu-corp-c-sectionCircleBottom {
  position: relative;
  z-index: 1;
}
.kfu-corp-c-sectionCircleBottom::after {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 160vw;
  aspect-ratio: 2400/480;
  border-radius: 50%;
  background: #f2f2f2;
  z-index: 1;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: calc(100% - 9.375rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-sectionCircleBottom::after {
    top: calc(100% - 1.875rem);
    width: 270vw;
    aspect-ratio: 1024/320;
  }
}

.kfu-corp-c-bg {
  background: transparent;
}

.kfu-corp-c-dot-line {
  position: relative;
}
.kfu-corp-c-dot-line::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/common/categoryList/category-line.png");
  background-repeat: repeat-x;
  background-size: 3.75rem;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.kfu-corp-c-logo {
  aspect-ratio: 104/40;
  width: 5.125rem;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-logo {
    width: 3.875rem;
    aspect-ratio: 62/24;
  }
}
.kfu-corp-c-logo .c-logo__link {
  position: fixed;
  top: 3.75rem;
  left: 3.75rem;
  z-index: 100;
  aspect-ratio: 104/40;
  width: 5.125rem;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-logo .c-logo__link {
    aspect-ratio: 62/24;
    width: 3.875rem;
    height: 1.5rem;
    top: 2rem;
    left: 1.25rem;
  }
}
.kfu-corp-c-logo .c-logo__link.is-light {
  -webkit-filter: brightness(0.2);
  filter: brightness(0.2);
}
.kfu-corp-c-logo .c-logo__link.is-dark {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}

section .kfu-corp-c-logo {
  opacity: 0;
}
section .kfu-corp-c-logo .c-logo__link {
  opacity: 0;
}

.kfu-corp-c-header + .kfu-corp-c-logo {
  height: 0;
}
.kfu-corp-c-header + .kfu-corp-c-logo.leadgridCms-onlyInnerWorkspace {
  height: auto !important;
}

.kfu-corp-c-header {
  position: fixed;
  z-index: 100;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  width: 100%;
}
.kfu-corp-c-header.leadgridCms-onlyInnerWorkspace {
  position: static !important;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header {
    bottom: 1.25rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-c-header .s-header__inner {
  max-width: 78.125rem;
  padding: 0 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__inner {
    padding: unset;
  }
}
.kfu-corp-c-header .s-header__content {
  background: #1e1e1e;
  padding: 0.4375rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__content {
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
  }
}
.kfu-corp-c-header .s-header__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.875rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__content-wrap {
    display: none;
    padding: 1.5rem 0.75rem 2.25rem;
    position: relative;
    max-height: calc(85svh - 3.75rem);
    overflow: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
  }
}
.kfu-corp-c-header .s-header__content-sp-line {
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__content-sp-line {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
    display: block;
    background-size: 3.75rem;
    -webkit-mask-image: url("/assets/kfu-corp/img/common/categoryList/category-line.png");
    mask-image: url("/assets/kfu-corp/img/common/categoryList/category-line.png");
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-size: 3.75rem;
    mask-size: 3.75rem;
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    top: -0.625rem;
    left: 0;
    right: 0;
    opacity: 0;
  }
}
.kfu-corp-c-header .s-header__nav {
  padding-left: 2.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__nav {
    padding-left: unset;
  }
}
.kfu-corp-c-header .s-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__nav-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}
.kfu-corp-c-header .s-header__nav-item {
  position: relative;
}
.kfu-corp-c-header .s-header__nav-item-wrap.is-clickFalse .s-header__nav-link {
  pointer-events: none;
}
.kfu-corp-c-header.leadgridCms-onlyInnerWorkspace .s-header__nav-item-wrap.is-clickFalse .s-header__nav-link {
  pointer-events: auto !important;
}
.kfu-corp-c-header .s-header__nav-link {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 3;
}
.kfu-corp-c-header .s-header__nav-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.8125rem;
  width: 100%;
  background: #fff;
  height: 2px;
  clip-path: inset(0% 100% 0% 0%);
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-header .s-header__nav-link:hover::after {
    clip-path: inset(0% 0% 0% 0%);
  }
}
.kfu-corp-c-header .s-header__nav-sub {
  opacity: 0;
  visibility: hidden;
  clip-path: inset(1.25rem 0 0 0);
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  min-width: 16.5rem;
  position: absolute;
  left: -2.25rem;
  bottom: calc(100% - 1.25rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem 1.25rem 3.125rem;
  background: #1e1e1e;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__nav-sub {
    opacity: 1;
    visibility: visible;
    clip-path: unset;
    position: static;
    min-width: unset;
    width: 100%;
    padding: unset;
    margin-bottom: 1.875rem;
  }
}
.kfu-corp-c-header .s-header__nav-sub:not(:has(.s-header__nav-sub-link)) {
  display: none;
}
.kfu-corp-c-header .s-header__nav-sub-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__nav-sub-list {
    gap: 0.3125rem;
  }
}
.kfu-corp-c-header .s-header__nav-sub-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 16.5rem;
  padding-left: 1rem;
  position: relative;
  display: block;
  font-size: 0.875rem;
  color: #fff;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__nav-sub-link {
    padding: 0.3125rem 0 0.3125rem 1rem;
  }
}
.kfu-corp-c-header .s-header__nav-sub-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 1px));
  transform: translateY(calc(-50% - 1px));
  left: 0;
  width: 0.5rem;
  aspect-ratio: 8/6;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background: #fff;
}
@media (any-hover: hover) {
  .kfu-corp-c-header .s-header__nav-sub-link:hover {
    opacity: 0.7;
  }
}
.kfu-corp-c-header .s-header__nav-item-wrap.is-clickFalse:hover .s-header__nav-sub,
.kfu-corp-c-header .s-header__nav-link:hover + .s-header__nav-sub,
.kfu-corp-c-header .s-header__nav-sub:hover {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
}
.kfu-corp-c-header .s-header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__cta {
    grid-template-columns: 1fr;
    display: grid;
    gap: 0.5rem;
    width: 100%;
  }
}
.kfu-corp-c-header .c-header__button {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  display: block;
  width: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.125rem;
  background: #fff;
  border: 1px solid #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .c-header__button {
    width: 100%;
    border-radius: 0.375rem;
  }
}
.kfu-corp-c-header .c-header__button .icon {
  aspect-ratio: 1;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .c-header__button .icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.625rem;
  }
}
.kfu-corp-c-header .c-header__button .text {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 0.9375rem;
  line-height: 1;
  padding-right: 0.625rem;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .c-header__button .text {
    margin-left: -2.5rem;
    padding: 0 2.25rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-c-header .c-header__button:hover {
    background: #1e1e1e;
    border: 1px solid rgba(86, 86, 86, 0.8);
  }
  .kfu-corp-c-header .c-header__button:hover .text {
    color: #fff;
  }
}
.kfu-corp-c-header .c-header__button:nth-of-type(1) .icon {
  background: #8b33fb;
}
.kfu-corp-c-header .c-header__button:nth-of-type(2) .icon {
  background: #1537e8;
}
.kfu-corp-c-header .s-header__content-sp:has(.is-active) .s-header__content-sp-line {
  opacity: 1;
}
.kfu-corp-c-header .s-header__content-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header .s-header__content-sp {
    background: #1e1e1e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.75rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.625rem 0.5rem;
    position: relative;
  }
}
@-webkit-keyframes circle-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.kfu-corp-c-header .s-header__content-sp .circle {
  aspect-ratio: 1;
  width: 1.5rem;
}
.kfu-corp-c-header .s-header__content-sp .circle.is-active {
  -webkit-animation: circle-animation 4s linear infinite;
  animation: circle-animation 4s linear infinite;
}
.kfu-corp-c-header .s-header__content-sp .text {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kfu-corp-c-header .s-header__content-sp .toggle {
  aspect-ratio: 1;
  width: 1rem;
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
.kfu-corp-c-header .s-header__content-sp .toggle.is-active {
  -webkit-transform: rotate(45deg) scale(0.9);
  transform: rotate(45deg) scale(0.9);
}

section:has(.kfu-corp-c-gif) {
  position: relative;
}

.kfu-corp-c-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: hard-light;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  background-image: var(--gif-url, inherit);
  background-size: 100% auto;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-gif {
    background-size: 100% auto;
    background-image: var(--gif-url-sp, inherit);
  }
}
.kfu-corp-c-gif img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/800;
  opacity: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-gif img {
    aspect-ratio: 375/800;
  }
}

section:has(.s-case__gif) {
  position: relative;
}

.kfu-corp-s-cta .kfu-corp-c-gif img {
  opacity: 1;
}

.kfu-corp-c-image-animation {
  position: relative;
}
.kfu-corp-c-image-animation::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#8a3aec), color-stop(90%, #413eca));
  background: linear-gradient(90deg, #8a3aec, #413eca 90%);
  clip-path: inset(0% 0% 0% 0%);
  -webkit-transition: 0.4s ease-in-out all;
  transition: 0.4s ease-in-out all;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.kfu-corp-c-image-animation.is-active::after {
  clip-path: inset(0% 0% 0% 100%);
}

.kfu-corp-c-title-animation {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  clip-path: inset(0% 100% 0% 0%);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.kfu-corp-c-title-animation .white,
.kfu-corp-c-title-animation .black {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.5s cubic-bezier(0.73, 0, 0.27, 0.99) all;
  transition: 0.5s cubic-bezier(0.73, 0, 0.27, 0.99) all;
}
.kfu-corp-c-title-animation .white {
  color: #fff;
}
.kfu-corp-c-title-animation .black {
  color: #1e1e1e;
}
.kfu-corp-c-title-animation .grad {
  position: relative;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(#8a3aec), color-stop(#413eca), to(#63e8f2));
  background: linear-gradient(90deg, #8a3aec, #413eca, #63e8f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: 0.5s cubic-bezier(0.73, 0, 0.27, 0.99) all;
  transition: 0.5s cubic-bezier(0.73, 0, 0.27, 0.99) all;
  transition: 0.5s cubic-bezier(0.73, 0, 0.27, 0.99) all;
}
.kfu-corp-c-title-animation.is-active {
  clip-path: inset(0% 0% 0% 0%);
}
.kfu-corp-c-title-animation.is-active .black,
.kfu-corp-c-title-animation.is-active .white {
  opacity: 1;
}
.kfu-corp-c-title-animation.is-active .grad {
  opacity: 0;
}

.leadgridCms-onlyInnerWorkspace .kfu-corp-c-title-animation .grad {
  display: none !important;
}
.leadgridCms-onlyInnerWorkspace .kfu-corp-c-title-animation .black {
  position: static !important;
}

body:has(.kfu-corp-c-pageLoader) {
  opacity: 0;
}

body:has(.leadgridCms-onlyInnerWorkspace) {
  opacity: 1 !important;
}

.kfu-corp-c-pageLoader {
  display: block;
  position: fixed;
  width: 220%;
  height: 100svh;
  background-image: url("/assets/kfu-corp/img/common/pageFv/pagefv-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  z-index: 500;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-pageLoader {
    width: 420vw;
  }
}
.kfu-corp-c-pageLoader.leadgridCms-onlyInnerWorkspace {
  display: none !important;
}

.kfu-corp-c-header2 {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 1.875rem;
  left: 0;
  right: 0;
}
.kfu-corp-c-header2.leadgridCms-onlyInnerWorkspace {
  position: static !important;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2 {
    top: 0.9375rem;
  }
}
.kfu-corp-c-header2.is-change .c-header2__logo {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.kfu-corp-c-header2.is-change .c-header2__nav-link {
  color: #1e1e1e;
}
.kfu-corp-c-header2.is-change .c-header2__nav-link::after {
  background: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2.is-change .c-header2__nav-link {
    color: #fff;
  }
}
.kfu-corp-c-header2.is-change .c-header2__button {
  border-color: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2.is-change .c-header2__button {
    border-color: transparent;
  }
}
.kfu-corp-c-header2.is-change .c-header2__content-sp .circle {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.kfu-corp-c-header2.is-change .c-header2__content-sp .text {
  color: #1e1e1e;
}
.kfu-corp-c-header2 .c-header2__inner {
  padding: 0.5rem 2.375rem 0.5rem 25px;
  margin: 0 25px;
  background: transparent;
  border-radius: 0.25rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2 .c-header2__inner {
    margin: 0 0.625rem;
    padding: 0.3125rem 0.625rem;
  }
}
.kfu-corp-c-header2 .c-header2__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.kfu-corp-c-header2 .c-header2__logo {
  aspect-ratio: 118/24;
  width: 7.375rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2 .c-header2__logo {
    width: 6.125rem;
  }
}
.kfu-corp-c-header2 .c-header2__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.125rem;
}
.kfu-corp-c-header2 .c-header2__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.125rem;
}
.kfu-corp-c-header2 .c-header2__nav-item {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}
.kfu-corp-c-header2 .c-header2__nav-link {
  display: block;
  padding: 0.625rem 0;
  position: relative;
}
.kfu-corp-c-header2 .c-header2__nav-link::after {
  content: "";
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  display: block;
  position: absolute;
  bottom: 0.5rem;
  width: 100%;
  background: #fff;
  height: 2px;
  clip-path: inset(0% 100% 0% 0%);
  transition: 0.3s ease-in-out all;
}
@media (any-hover: hover) {
  .kfu-corp-c-header2 .c-header2__nav-link:hover::after {
    clip-path: inset(0% 0% 0% 0%);
  }
}
.kfu-corp-c-header2 .c-header2__nav-link {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-c-header2 .c-header2__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2 .c-header2__cta {
    grid-template-columns: 1fr;
    display: grid;
    gap: 0.5rem;
    width: 100%;
  }
}
.kfu-corp-c-header2 .c-header2__button {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  display: block;
  width: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem;
  border-radius: 0.125rem;
  background: #fff;
  border: 1px solid transparent;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2 .c-header2__button {
    width: 100%;
  }
}
.kfu-corp-c-header2 .c-header2__button .icon {
  aspect-ratio: 1;
  width: 2rem;
  height: 2rem;
  padding: 0.3125rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2 .c-header2__button .icon {
    width: 2.5rem;
    padding: 0.625rem;
  }
}
.kfu-corp-c-header2 .c-header2__button .text {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  width: 100%;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
  text-align: center;
  display: block;
  font-size: 0.9375rem;
  line-height: 1;
}
@media (any-hover: hover) {
  .kfu-corp-c-header2 .c-header2__button:hover {
    background: #1e1e1e;
  }
  .kfu-corp-c-header2 .c-header2__button:hover .text {
    color: #fff;
  }
}
.kfu-corp-c-header2 .c-header2__button:nth-of-type(1) .icon {
  background: #1537e8;
}
.kfu-corp-c-header2 .c-header2__button:nth-of-type(2) .icon {
  background: #1537e8;
}
.kfu-corp-c-header2 .c-header2__content-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-header2 .c-header2__content-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.75rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.625rem 0rem 0.625rem 0.5rem;
  }
}
@keyframes circle-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.kfu-corp-c-header2 .c-header2__content-sp .circle {
  aspect-ratio: 1;
  width: 1.5rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-c-header2 .c-header2__content-sp .circle.is-active {
  -webkit-animation: circle-animation 4s linear infinite;
  animation: circle-animation 4s linear infinite;
}
.kfu-corp-c-header2 .c-header2__content-sp .text {
  -webkit-transform: translateY(0.125rem);
  transform: translateY(0.125rem);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

.kfu-corp-c-footer2 {
  padding-bottom: 4.375rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer2 {
    padding-bottom: 2.5rem;
  }
}
.kfu-corp-c-footer2 .c-footer2__bottom {
  padding-top: 2rem;
  border-top: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer2 .c-footer2__bottom {
    padding-top: 1.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    gap: 2.5rem;
  }
}
.kfu-corp-c-footer2 .c-footer2__bottom-left {
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer2 .c-footer2__bottom-left {
    text-align: center;
    line-height: 1.3;
  }
}
.kfu-corp-c-footer2 .c-footer2__bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0625rem;
  max-width: 31.25rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-footer2 .c-footer2__bottom-links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.kfu-corp-c-footer2 .c-footer2__bottom-link {
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  color: #fff;
}
.kfu-corp-c-footer2 .c-footer2__bottom-link::after {
  left: calc(100% + 1rem);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 2px;
}
@media (any-hover: hover) {
  .kfu-corp-c-footer2 .c-footer2__bottom-link:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.kfu-corp-c-footer2 .c-footer2__bottom-links li:last-of-type .c-footer2__bottom-link::after {
  display: none;
}
.kfu-corp-c-footer2.leadgridCms-onlyInnerWorkspace .c-footer2__form {
  display: block !important;
  margin-top: 3.125rem !important;
}

.kfu-corp-c-drawer {
  display: none;
  opacity: 0;
  clip-path: inset(0% 0% 0% 40%);
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100vh;
  right: 0;
  left: 0;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-drawer {
    display: block;
  }
}
.kfu-corp-c-drawer.is-open {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
  visibility: visible;
}
.kfu-corp-c-drawer .c-drawer__inner {
  width: calc(100% - 3rem);
  margin-left: auto;
  background: #1e1e1e;
  min-height: calc(100% + 8.75rem);
}
.kfu-corp-c-drawer .c-drawer__container {
  padding: 2rem 1.25rem 8.125rem;
}
.kfu-corp-c-drawer .c-drawer__close {
  width: 0.8125rem;
  aspect-ratio: 1;
  margin-left: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.kfu-corp-c-drawer .c-drawer__nav-list {
  display: grid;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.kfu-corp-c-drawer .c-drawer__nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.kfu-corp-c-drawer .c-drawer__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.kfu-corp-c-drawer .c-drawer__button {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem;
  border-radius: 0.125rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-drawer .c-drawer__button {
    width: 100%;
  }
}
.kfu-corp-c-drawer .c-drawer__button .icon {
  aspect-ratio: 1;
  width: 2rem;
  height: 2rem;
  padding: 0.3125rem;
  border-radius: 0.25rem;
  background: #1537e8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-drawer .c-drawer__button .icon {
    width: 2.5rem;
    padding: 0.625rem;
    height: 2.5rem;
  }
}
.kfu-corp-c-drawer .c-drawer__button .text {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 0.9375rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-drawer .c-drawer__button .text {
    margin-left: -2.9375rem;
    padding: 0 2.5rem;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
}

.kfu-corp-c-recruitBanner .c-recruitBanner__recruitLink {
  display: block;
  position: relative;
  padding: 3.75rem 2.5rem 4.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
  --after-x: -150%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitLink {
    padding: 10.625rem 1rem 1rem;
  }
}
.kfu-corp-c-recruitBanner .c-recruitBanner__recruitLink::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 250%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(var(--after-x));
  transform: translateX(var(--after-x));
  background-image: url("/assets/kfu-corp/img/common/recruit-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.kfu-corp-c-recruitBanner .c-recruitBanner__recruitLabel {
  color: #4650d7;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: -0.5rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitLabel {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}
.kfu-corp-c-recruitBanner .c-recruitBanner__recruitLabel::before {
  background: #4650d7;
}
.kfu-corp-c-recruitBanner .c-recruitBanner__recruitTitle {
  margin-bottom: 0.625rem;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  font-size: 4rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitTitle {
    margin-bottom: 0;
    font-size: 2.5rem;
  }
}
.kfu-corp-c-recruitBanner .c-recruitBanner__recruitText {
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  position: relative;
  z-index: 3;
  max-width: 23.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitText {
    max-width: unset;
    padding-right: 2.875rem;
    font-size: 1.125rem;
    line-height: 1.3;
  }
}
.kfu-corp-c-recruitBanner .c-recruitBanner__recruitText span {
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitText span {
    margin-bottom: 0.125rem;
  }
}
.kfu-corp-c-recruitBanner .c-recruitBanner__recruitImg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: hard-light;
  overflow: hidden;
}
.kfu-corp-c-recruitBanner .c-recruitBanner__recruitArrow {
  margin-left: auto;
  margin-top: -2.5rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitArrow {
    margin-top: -2.1875rem;
    width: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitArrow::before {
    width: 1.25rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitLink .c-recruitBanner__recruitImg img {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitLink:hover .c-recruitBanner__recruitImg img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  @-webkit-keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-c-recruitBanner .c-recruitBanner__recruitLink:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: 4s linear infinite arrow;
    animation: 4s linear infinite arrow;
  }
}

.kfu-corp-s-detailFv {
  padding-top: 3.75rem;
  padding-bottom: 12.8125rem;
  position: relative;
  overflow: hidden;
  min-height: 30rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv {
    padding-top: 2rem;
    padding-bottom: 5.625rem;
    min-height: 18.75rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__top {
  padding: 0 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__top {
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__top {
    display: block;
    margin-bottom: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .kfu-corp-c-bread {
    margin-top: 1.5rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__logo {
  aspect-ratio: 8267/3200;
  width: 5.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__logo {
    width: 3.875rem;
    margin-bottom: 1.625rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-s-detailFv .s-detailFv__main {
  position: relative;
  max-width: 75rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__main {
    padding: 0 0.75rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__main .c-h2-title__jp::before {
  background: #fff;
  position: relative;
  z-index: 2;
}
.kfu-corp-s-detailFv .s-detailFv__dec-text {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  position: absolute;
  left: 26.875rem;
  top: 50%;
  font-family: "Outfit", sans-serif;
  -webkit-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
  color: rgba(0, 255, 238, 0.4);
  -webkit-filter: blur(0.75rem);
  filter: blur(0.75rem);
  font-size: 15rem;
  letter-spacing: 0.02em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text {
    font-size: 7.5rem;
    left: 4.6875rem;
    top: 90%;
    -webkit-filter: blur(0.25rem);
    filter: blur(0.25rem);
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char {
  -webkit-transform: skewX(-4deg);
  transform: skewX(-4deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char {
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(1) {
  font-size: 15rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(1) {
    font-size: 7.5rem;
    margin-top: 0.625rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(2) {
  font-size: 16.25rem;
  margin-top: 0rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(2) {
    font-size: 8.125rem;
    margin-top: 0.3125rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(3) {
  font-size: 17.5rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(3) {
    font-size: 8.75rem;
    margin-top: 0rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(4) {
  font-size: 18.75rem;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(4) {
    font-size: 9.375rem;
    margin-top: -0.3125rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(5) {
  font-size: 20rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(5) {
    font-size: 10rem;
    margin-top: -0.625rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(6) {
  font-size: 21.25rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(6) {
    font-size: 10.625rem;
    margin-top: -0.9375rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(7) {
  font-size: 22.5rem;
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(7) {
    font-size: 11.25rem;
    margin-top: -1.25rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(8) {
  font-size: 23.75rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(8) {
    font-size: 11.875rem;
    margin-top: -1.5625rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(9) {
  font-size: 25rem;
  margin-top: -4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(9) {
    font-size: 12.5rem;
    margin-top: -1.875rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(10) {
  font-size: 26.25rem;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__dec-text .char:nth-of-type(10) {
    font-size: 13.125rem;
    margin-top: -2.1875rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__bottom {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-bottom: 0.625rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.25rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.kfu-corp-s-detailFv .s-detailFv__date .top {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__date .top {
    font-size: 0.75rem;
    font-weight: 400;
  }
}
.kfu-corp-s-detailFv .s-detailFv__date .bottom {
  -webkit-transform: translateY(0.125rem);
  transform: translateY(0.125rem);
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__date .bottom {
    font-size: 1.125rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__cat {
  font-size: 1rem;
  color: #fff;
  padding: 0.3125rem 1rem 0.1875rem;
  background: #1e1e1e;
  line-height: 1.2;
  border-radius: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__cat {
    border-radius: 1.25rem;
    font-size: 0.8125rem;
    padding: 0.3125rem 0.75rem 0.125rem;
  }
}
.kfu-corp-s-detailFv .s-detailFv__title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv .s-detailFv__title {
    font-size: 1.25rem;
  }
}

.kfu-corp-s-newsList {
  background: #f2f2f2;
  padding-top: 0.0625rem;
  padding-bottom: 6.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsList {
    padding-top: 2rem;
    padding-bottom: 1.25rem;
  }
}
.kfu-corp-s-newsList .s-newsList__top {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsList .s-newsList__top {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-newsList .s-newsList__items {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsList .s-newsList__items {
    margin-bottom: 2.5rem;
  }
}

.kfu-corp-s-pageFv {
  padding-top: 3.75rem;
  padding-bottom: 16.875rem;
  position: relative;
  overflow: hidden;
  --translate-x: 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv {
    padding-top: 2rem;
    padding-bottom: 6.25rem;
    min-height: unset;
  }
}
.kfu-corp-s-pageFv .s-pageFv__top {
  padding: 0 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__top {
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4.0625rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__logo {
  aspect-ratio: 8267/3200;
  width: 5.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__logo {
    width: 3.875rem;
  }
}
.kfu-corp-s-pageFv.leadgridCms-onlyInnerWorkspace .s-pageFv__logo {
  padding: 0.625rem;
}
.kfu-corp-s-pageFv .s-pageFv__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-s-pageFv .s-pageFv__title {
  color: #fff;
}
.kfu-corp-s-pageFv .s-pageFv__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__main {
    padding: 0 0.75rem;
    display: block;
  }
}
.kfu-corp-s-pageFv .s-pageFv__main .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-pageFv .s-pageFv__text {
  position: relative;
  z-index: 4;
  max-width: 29rem;
  font-size: 1.125rem;
  color: #fff;
  line-height: 2;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__text {
    -webkit-transform: unset;
    transform: unset;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    padding-bottom: 4.375rem;
    text-align: left;
  }
}
.kfu-corp-s-pageFv .s-pageFv__line {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 4.0625rem;
  left: -7.5rem;
  width: 35rem;
  aspect-ratio: 560/79;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__line {
    aspect-ratio: 300/63;
    width: 18.75rem;
    left: -5rem;
    top: 2.0625rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text {
  white-space: nowrap;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  position: absolute;
  left: 26.875rem;
  top: 50%;
  font-family: "Outfit", sans-serif;
  -webkit-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
  color: rgba(0, 255, 238, 0.4);
  -webkit-filter: blur(0.75rem);
  filter: blur(0.75rem);
  font-size: 15rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text {
    font-size: 7.5rem;
    left: 6.875rem;
    top: 30%;
    -webkit-filter: blur(0.25rem);
    filter: blur(0.25rem);
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char {
  display: inline-block;
  -webkit-transform: skewX(-4deg);
  transform: skewX(-4deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char {
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(1) {
  font-size: 15rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(1) {
    font-size: 7.5rem;
    margin-top: 0.625rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(2) {
  font-size: 16.25rem;
  margin-top: 0rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(2) {
    font-size: 8.125rem;
    margin-top: 0.3125rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(3) {
  font-size: 17.5rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(3) {
    font-size: 8.75rem;
    margin-top: 0rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(4) {
  font-size: 18.75rem;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(4) {
    font-size: 9.375rem;
    margin-top: -0.3125rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(5) {
  font-size: 20rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(5) {
    font-size: 10rem;
    margin-top: -0.625rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(6) {
  font-size: 21.25rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(6) {
    font-size: 10.625rem;
    margin-top: -0.9375rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(7) {
  font-size: 22.5rem;
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(7) {
    font-size: 11.25rem;
    margin-top: -1.25rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(8) {
  font-size: 23.75rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(8) {
    font-size: 11.875rem;
    margin-top: -1.5625rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(9) {
  font-size: 25rem;
  margin-top: -4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(9) {
    font-size: 12.5rem;
    margin-top: -1.875rem;
  }
}
.kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(10) {
  font-size: 26.25rem;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv .s-pageFv__dec-text .char:nth-of-type(10) {
    font-size: 13.125rem;
    margin-top: -2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv.--terms {
    padding-bottom: 7.0625rem;
    height: 20.625rem;
    padding-bottom: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv.--service {
    padding-bottom: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv.--service .s-pageFv__main {
    margin-bottom: 4.375rem;
  }
}

@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv.--about {
    padding-bottom: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv.--about .s-pageFv__main {
    margin-bottom: 4.375rem;
  }
}

@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-read) .kfu-corp-s-pageFv {
    padding-bottom: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-columnPick) .kfu-corp-s-pageFv.is-active {
    padding-bottom: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-documentList) .kfu-corp-s-pageFv {
    padding-bottom: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-documentList) .kfu-corp-s-pageFv .s-pageFv__text {
    padding-bottom: 3.125rem;
  }
}

.kfu-corp-s-newsDetail {
  background: #f2f2f2;
  padding-bottom: 10rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail {
    padding-top: 1rem;
    margin-top: -0.625rem;
    padding-bottom: 1.25rem;
  }
}
.kfu-corp-s-newsDetail .s-newsDetail__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.3125rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail .s-newsDetail__main {
    display: block;
    margin-bottom: 5rem;
  }
}
.kfu-corp-s-newsDetail .s-newsDetail__content {
  max-width: 62.1875rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail .s-newsDetail__content {
    margin-bottom: 0.9375rem;
  }
}
.kfu-corp-s-newsDetail .s-newsDetail__thumb {
  aspect-ratio: 995/664;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail .s-newsDetail__thumb {
    margin-bottom: 3.4375rem;
  }
}
.kfu-corp-s-newsDetail .s-newsDetail__related {
  padding-top: 5rem;
  border-top: 2px solid #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail .s-newsDetail__related {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: -0.75rem;
    width: calc(100% + 1.5rem);
    padding: 3.5625rem 0.75rem 0rem;
  }
}
.kfu-corp-s-newsDetail .s-newsDetail__related-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail .s-newsDetail__related-top {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail .s-newsDetail__related-title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-newsDetail .kfu-corp-c-button {
  margin-inline: unset;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail .kfu-corp-c-button {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-newsDetail .s-newsDetail__related-items {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 2.5rem;
  }
}

.kfu-corp-s-columnPick {
  overflow: hidden;
  margin-top: -12.5rem;
  position: relative;
}
.kfu-corp-s-columnPick::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  top: 12.5rem;
  left: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick::after {
    top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick {
    margin-top: -7.5rem;
    padding-bottom: 4.6875rem;
  }
}
.kfu-corp-s-columnPick .s-columnPick__swiper {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__swiper {
    margin-bottom: 2.1875rem;
  }
}
.kfu-corp-s-columnPick .swiper {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .swiper-slide {
    width: 19.4375rem;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d2d2d2;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-s-columnPick .s-columnPick__item .s-columnPick__item-cat {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-s-columnPick .s-columnPick__item .s-columnPick__item-date {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-s-columnPick .s-columnPick__item .s-columnPick__item-img {
    overflow: hidden;
  }
  .kfu-corp-s-columnPick .s-columnPick__item .s-columnPick__item-img img {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-s-columnPick .s-columnPick__item .s-columnPick__item-title {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-s-columnPick .s-columnPick__item .c-tags__item {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-s-columnPick .s-columnPick__item:hover .s-columnPick__item-cat {
    background: #4650d7;
  }
  .kfu-corp-s-columnPick .s-columnPick__item:hover .s-columnPick__item-date {
    color: #4650d7;
  }
  .kfu-corp-s-columnPick .s-columnPick__item:hover .s-columnPick__item-title {
    color: #4650d7;
  }
  .kfu-corp-s-columnPick .s-columnPick__item:hover .c-tags__item {
    color: #4650d7;
  }
  .kfu-corp-s-columnPick .s-columnPick__item:hover .s-columnPick__item-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  @-webkit-keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-s-columnPick .s-columnPick__item:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: 4s linear infinite arrow;
    animation: 4s linear infinite arrow;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item-texts {
  width: 36.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__item-texts {
    width: 100%;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item-top {
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__item-top {
    margin-bottom: 1rem;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item-cat {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.375rem 1rem 0.25rem;
  background: #1e1e1e;
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__item-cat {
    font-size: 0.8125rem;
    padding: 0.25rem 0.75rem 0.125rem;
    border-radius: 1.25rem;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.25rem;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.04em;
}
.kfu-corp-s-columnPick .s-columnPick__item-date .top {
  font-weight: 400;
  font-size: 1.25rem;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__item-date .top {
    font-size: 0.75rem;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item-date .bottom {
  font-weight: 400;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__item-date .bottom {
    font-size: 1.125rem;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item-title {
  margin-bottom: 2.5rem;
  font-size: 1.75rem;
  line-height: 1.6;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__item-title {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
}
.kfu-corp-s-columnPick .kfu-corp-c-tags {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.kfu-corp-s-columnPick .s-columnPick__item-img {
  width: 35%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  aspect-ratio: 584/390;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__item-img {
    width: 100%;
  }
}
.kfu-corp-s-columnPick .s-columnPick__item-img img {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-s-columnPick .s-columnPick__bottoms {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .s-columnPick__bottoms {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnPick .kfu-corp-c-buttonArrow {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}
.kfu-corp-s-columnPick .c-slider-bottom__pagination {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  -webkit-box-flex: unset !important;
  -ms-flex-positive: unset !important;
  flex-grow: unset !important;
}

.kfu-corp-s-columnList {
  padding-top: 7.5rem;
  background: #f2f2f2;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnList {
    padding-top: 0.625rem;
    padding-bottom: 0.0625rem;
  }
}
.kfu-corp-s-columnList .s-columnList__top {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnList .s-columnList__top {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-columnList .s-columnList__items {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnList .s-columnList__items {
    margin-bottom: 2.5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

html:has(.kfu-corp-s-pageFv.is-active) .kfu-corp-s-columnList {
  padding-top: 0.625rem;
}

.kfu-corp-s-detailFv2 {
  padding-top: 3.75rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 {
    padding-top: 2rem;
    padding-bottom: 6.5625rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__top {
  padding: 0 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__top {
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__top {
    display: block;
    margin-bottom: 2.25rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__logo {
  aspect-ratio: 8267/3200;
  width: 5.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__logo {
    width: 3.875rem;
    margin-bottom: 1.5625rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .kfu-corp-c-bread {
    margin-top: 1.5rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__main {
  max-width: 75rem;
  margin-inline: auto;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__main {
    padding: 0 0.75rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__main .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  position: absolute;
  left: 26.875rem;
  top: 20%;
  font-family: "Outfit", sans-serif;
  -webkit-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
  color: rgba(0, 255, 238, 0.4);
  -webkit-filter: blur(0.75rem);
  filter: blur(0.75rem);
  font-size: 15rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text {
    font-size: 7.5rem;
    left: 4.6875rem;
    top: 34%;
    -webkit-filter: blur(0.25rem);
    filter: blur(0.25rem);
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char {
  -webkit-transform: skewX(-4deg);
  transform: skewX(-4deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char {
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(1) {
  font-size: 15rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(1) {
    font-size: 7.5rem;
    margin-top: 0.625rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(2) {
  font-size: 16.25rem;
  margin-top: 0rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(2) {
    font-size: 8.125rem;
    margin-top: 0.3125rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(3) {
  font-size: 17.5rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(3) {
    font-size: 8.75rem;
    margin-top: 0rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(4) {
  font-size: 18.75rem;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(4) {
    font-size: 9.375rem;
    margin-top: -0.3125rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(5) {
  font-size: 20rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(5) {
    font-size: 10rem;
    margin-top: -0.625rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(6) {
  font-size: 21.25rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(6) {
    font-size: 10.625rem;
    margin-top: -0.9375rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(7) {
  font-size: 22.5rem;
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(7) {
    font-size: 11.25rem;
    margin-top: -1.25rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(8) {
  font-size: 23.75rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(8) {
    font-size: 11.875rem;
    margin-top: -1.5625rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(9) {
  font-size: 25rem;
  margin-top: -4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(9) {
    font-size: 12.5rem;
    margin-top: -1.875rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(10) {
  font-size: 26.25rem;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__dec-text .char:nth-of-type(10) {
    font-size: 13.125rem;
    margin-top: -2.1875rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__bottom {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.25rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.kfu-corp-s-detailFv2 .s-detailFv2__date .top {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__date .top {
    font-size: 0.75rem;
    font-weight: 400;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__date .bottom {
  -webkit-transform: translateY(0.125rem);
  transform: translateY(0.125rem);
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__date .bottom {
    font-size: 1.125rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__cat {
  font-size: 1rem;
  color: #fff;
  padding: 0.3125rem 1rem 0.125rem;
  background: #1e1e1e;
  border-radius: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__cat {
    border-radius: 1.25rem;
    font-size: 0.8125rem;
    padding: 0.3125rem 0.75rem 0.125rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__title {
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.6;
  margin-bottom: 2.1875rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.kfu-corp-s-detailFv2 .s-detailFv2__tags {
  padding-bottom: 4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv2 .s-detailFv2__tags {
    padding-bottom: 1.25rem;
  }
}

.kfu-corp-s-columnDetail {
  position: relative;
  z-index: 3;
  margin-top: -10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail {
    margin-top: -6.875rem;
    padding-bottom: 5rem;
  }
}
.kfu-corp-s-columnDetail::after {
  content: "";
  display: block;
  position: absolute;
  top: 10rem;
  left: 0;
  width: 100%;
  height: calc(100% - 10rem);
  background: #f2f2f2;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail::after {
    top: 6.875rem;
    height: calc(100% - 6.875rem);
  }
}
.kfu-corp-s-columnDetail .s-columnDetail__inner {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-columnDetail .s-columnDetail__main {
  margin-bottom: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail .s-columnDetail__main {
    display: block;
    margin-bottom: 5rem;
  }
}
.kfu-corp-s-columnDetail .s-columnDetail__content {
  max-width: 62.1875rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail .s-columnDetail__content {
    margin-bottom: 0.9375rem;
  }
}
.kfu-corp-s-columnDetail .s-columnDetail__thumb {
  aspect-ratio: 995/664;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail .s-columnDetail__thumb {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-columnDetail .s-columnDetail__related {
  padding-top: 5rem;
  border-top: 2px solid #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail .s-columnDetail__related {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 3.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.kfu-corp-s-columnDetail .s-columnDetail__related-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail .s-columnDetail__related-top {
    display: contents;
  }
}
.kfu-corp-s-columnDetail .s-columnDetail__related-title {
  color: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail .s-columnDetail__related-title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-columnDetail .kfu-corp-c-button {
  margin-inline: unset;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail .kfu-corp-c-button {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
.kfu-corp-s-columnDetail .s-columnDetail__related-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-columnDetail .s-columnDetail__related-items {
    gap: 2.5rem;
    grid-template-columns: 1fr;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 2.5rem;
  }
}

.kfu-corp-s-caseList {
  padding-top: 1.875rem;
  padding-bottom: 8.75rem;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseList {
    padding-top: 1.5rem;
    padding-bottom: 0.625rem;
  }
}
.kfu-corp-s-caseList .s-caseList__top {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseList .s-caseList__top {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-caseList .kfu-corp-c-pager {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseList .kfu-corp-c-pager {
    margin-top: 2.5rem;
  }
}

.kfu-corp-s-caseDetail {
  position: relative;
  z-index: 1;
  margin-top: -10.25rem;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail {
    margin-top: -5.9375rem;
    padding-bottom: 1.25rem;
  }
}
.kfu-corp-s-caseDetail::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  background: #f2f2f2;
  top: 10.25rem;
  width: 100%;
  height: calc(100% - 10.25rem);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail::after {
    top: 5.9375rem;
    height: calc(100% - 5.9375rem);
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__inner {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-caseDetail .s-caseDetail__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__top {
    display: block;
    margin-bottom: 3.5rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__top-imgs {
  width: 36.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__top-imgs {
    margin-bottom: 1.5rem;
    width: 100%;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__top-img {
  aspect-ratio: 584/329;
  margin-bottom: 1.5rem;
}
.kfu-corp-s-caseDetail .s-caseDetail__top-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__top-company {
    gap: 0.75rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__top-company-img {
  aspect-ratio: 160/80;
  width: 10rem;
  background: #fff;
  border-radius: 0.25rem;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__top-company-img {
    width: 6rem;
    padding: 0.75rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__top-company-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.kfu-corp-s-caseDetail .s-caseDetail__top-company-text {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__top-company-text {
    font-size: 0.8125rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__top-texts {
  background: #fff;
  padding: 2rem;
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__top-texts {
    width: 100%;
    padding: 1rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__top-read {
  margin-bottom: 0.5625rem;
  background: #1e1e1e;
  color: #fff;
  padding: 0.3125rem 1rem;
  font-size: 0.875rem;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 62.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__top-read {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.8125rem 0.25rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__top-text {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__top-text {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__top-text:last-of-type {
  margin-bottom: unset !important;
}
.kfu-corp-s-caseDetail .s-caseDetail__main {
  margin-bottom: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__main {
    display: block;
    margin-bottom: 5rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__content {
  max-width: 62.1875rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__content {
    margin-bottom: 0.9375rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__thumb {
  aspect-ratio: 995/664;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__thumb {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__related {
  padding-top: 5rem;
  border-top: 2px solid #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__related {
    padding-top: 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__related-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__related-top {
    display: contents;
  }
}
.kfu-corp-s-caseDetail .s-caseDetail__related-title {
  color: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__related-title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-caseDetail .kfu-corp-c-button {
  margin-inline: unset;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .kfu-corp-c-button {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-caseDetail .s-caseDetail__related-items {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 2.5rem;
  }
}

.kfu-corp-s-documentList {
  padding: 1rem 0 10.625rem;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentList {
    padding: 0.875rem 0 0.5rem;
  }
}
.kfu-corp-s-documentList .s-documentList__heading {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentList .s-documentList__heading {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-documentList .s-documentList__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentList .s-documentList__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.kfu-corp-s-documentDetail {
  margin-top: -10rem;
  position: relative;
  z-index: 3;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail {
    margin-top: -7rem;
    padding-bottom: 5rem;
  }
}
.kfu-corp-s-documentDetail::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 10rem;
  height: calc(100% - 10rem);
  background: #f2f2f2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail::after {
    height: calc(100% - 7rem);
    top: 7rem;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 3;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__inner {
    display: block;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__content {
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__content {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__thumb {
  aspect-ratio: 584/329;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__thumb {
    margin-bottom: unset;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__text {
  font-size: 1.125rem;
  line-height: 2;
  white-space: pre-line;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__text {
    line-height: 1.8;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__contact {
  border-radius: 0.25rem;
  overflow: auto;
  text-align: center;
  position: relative;
  background-image: radial-gradient(circle, #1e1e1e 1px, transparent 1px), radial-gradient(circle, #1e1e1e 1px, transparent 1px), radial-gradient(circle, #1e1e1e 1px, transparent 1px), radial-gradient(circle, #1e1e1e 1px, transparent 1px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 6px 2px, 2px 6px, 6px 2px, 2px 6px;
}
.kfu-corp-s-documentDetail .s-documentDetail__contactInner {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__contactInner {
    padding: 1.5rem 1rem;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__contactText {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding: 0 1.6875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__contactText {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: unset;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__tel {
  font-size: 3rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  padding: 0 1.6875rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__tel {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 0;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__tel .number {
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__tel .number {
    font-size: 1.75rem;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__tel .number::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #1e1e1e;
  bottom: 0;
}
.kfu-corp-s-documentDetail .s-documentDetail__time {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #1e1e1e;
  padding: 0.5625rem 0.9375rem;
  text-align: center;
  margin: 0 1.5rem;
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__time {
    line-height: 1;
    font-size: 0.8125rem;
    margin: 0;
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__right {
  width: 32.0625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .s-documentDetail__right {
    margin-left: -1.5rem;
    width: calc(100% + 3rem);
  }
}
.kfu-corp-s-documentDetail .s-documentDetail__form {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
}
.kfu-corp-s-documentDetail .kfu-corp-c-form .leadgrid-form__row {
  margin-top: 2rem;
}
.kfu-corp-s-documentDetail .kfu-corp-c-form .leadgrid-form__row:first-of-type {
  margin-top: 0;
}
.kfu-corp-s-documentDetail .leadgrid-form__row:has(.leadgrid-form__agree) {
  margin-bottom: 0.3125rem;
}
.kfu-corp-s-documentDetail .c-form__agreeText_not_scroll > div {
  margin-bottom: 1.25rem;
}
.kfu-corp-s-documentDetail .c-form__agree {
  margin-top: 0.5rem !important;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .privacy {
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-documentDetail .c-form__action {
    margin-top: 1.25rem;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

html:has(.kfu-corp-s-documentDetail) .kfu-corp-c-footer {
  position: relative;
  padding-top: 19.375rem;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-documentDetail) .kfu-corp-c-footer {
    padding-top: 12.5rem;
  }
}
html:has(.kfu-corp-s-documentDetail) .kfu-corp-c-footer::before {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 160vw;
  aspect-ratio: 2400/480;
  border-radius: 50%;
  background: #f2f2f2;
  z-index: 1;
  bottom: calc(100% - 9.375rem);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-documentDetail) .kfu-corp-c-footer::before {
    bottom: calc(100% - 1.875rem);
    width: 270vw;
    aspect-ratio: 1024/320;
  }
}

.kfu-corp-s-pageFv2 {
  padding-top: 3.75rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__top {
  padding: 0 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__top {
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__top {
    display: block;
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__logo {
  aspect-ratio: 8267/3200;
  width: 5.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__logo {
    width: 3.875rem;
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-s-pageFv2 .s-pageFv2__title {
  position: relative;
  z-index: 2;
  color: #fff;
}
.kfu-corp-s-pageFv2 .s-pageFv2__main {
  position: relative;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__main {
    padding: 0 0.75rem;
    display: block;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__main .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-pageFv2 .s-pageFv2__text {
  max-width: 75rem;
  margin-inline: auto;
  font-size: 1rem;
  padding-right: 12.5rem;
  color: #fff;
  line-height: 2;
  text-align: left;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__text {
    padding: 0 0.75rem 0;
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    text-align: left;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__text a {
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  -webkit-text-decoration-color: #fff;
  text-decoration-color: #fff;
}
@media (any-hover: hover) {
  .kfu-corp-s-pageFv2 .s-pageFv2__text a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__line {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 4.0625rem;
  left: -7.5rem;
  width: 35rem;
  aspect-ratio: 560/79;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__line {
    aspect-ratio: 300/63;
    width: 18.75rem;
    left: -5rem;
    top: 2.0625rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text {
  white-space: nowrap;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  left: 26.875rem;
  top: 50%;
  font-family: "Outfit", sans-serif;
  -webkit-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
  color: rgba(0, 255, 238, 0.4);
  -webkit-filter: blur(0.75rem);
  filter: blur(0.75rem);
  font-size: 15rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text {
    font-size: 7.5rem;
    left: 6.875rem;
    top: 50%;
    -webkit-filter: blur(0.25rem);
    filter: blur(0.25rem);
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char {
  -webkit-transform: skewX(-4deg);
  transform: skewX(-4deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char {
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(1) {
  font-size: 15rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(1) {
    font-size: 7.5rem;
    margin-top: 0.625rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(2) {
  font-size: 16.25rem;
  margin-top: 0rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(2) {
    font-size: 8.125rem;
    margin-top: 0.3125rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(3) {
  font-size: 17.5rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(3) {
    font-size: 8.75rem;
    margin-top: 0rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(4) {
  font-size: 18.75rem;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(4) {
    font-size: 9.375rem;
    margin-top: -0.3125rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(5) {
  font-size: 20rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(5) {
    font-size: 10rem;
    margin-top: -0.625rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(6) {
  font-size: 21.25rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(6) {
    font-size: 10.625rem;
    margin-top: -0.9375rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(7) {
  font-size: 22.5rem;
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(7) {
    font-size: 11.25rem;
    margin-top: -1.25rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(8) {
  font-size: 23.75rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(8) {
    font-size: 11.875rem;
    margin-top: -1.5625rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(9) {
  font-size: 25rem;
  margin-top: -4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(9) {
    font-size: 12.5rem;
    margin-top: -1.875rem;
  }
}
.kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(10) {
  font-size: 26.25rem;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .s-pageFv2__dec-text .char:nth-of-type(10) {
    font-size: 13.125rem;
    margin-top: -2.1875rem;
  }
}
.kfu-corp-s-pageFv2 .kfu-corp-c-button {
  margin-inline: unset;
  margin-top: 2.5rem;
  margin-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2 .kfu-corp-c-button {
    margin-left: unset;
    width: calc(100% - 1.5rem);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2--error .s-pageFv2__top {
    margin-bottom: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2--error .c-h2-title__en {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2--error .s-pageFv2__line {
    top: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2--error .s-pageFv2__text {
    margin-top: 1.875rem;
  }
}
.kfu-corp-s-pageFv2.--entry_complete .s-pageFv2__text {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv2.--entry_complete .s-pageFv2__text {
    margin-top: 2.5rem;
  }
}

.kfu-corp-s-pageFv3 {
  padding-top: 3.75rem;
  padding-bottom: 13.125rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 {
    padding-top: 2rem;
    padding-bottom: 4.375rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__top {
  padding: 0 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__top {
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 5.125rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__logo {
  aspect-ratio: 8267/3200;
  width: 5.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__logo {
    width: 3.875rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-s-pageFv3 .s-pageFv3__title {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__title {
    width: calc(100% + 0.625rem);
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__main {
  position: relative;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__main {
    padding: 0 0.75rem;
    display: block;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__main .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-pageFv3 .s-pageFv3__text {
  max-width: 75rem;
  margin-inline: auto;
  font-size: 1rem;
  padding-right: 12.5rem;
  color: #fff;
  line-height: 2;
  text-align: left;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__text {
    padding: 0 0.75rem 0;
    margin-top: 2.25rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    text-align: left;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__text a {
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  -webkit-text-decoration-color: #fff;
  text-decoration-color: #fff;
}
@media (any-hover: hover) {
  .kfu-corp-s-pageFv3 .s-pageFv3__text a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__line {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 4.0625rem;
  left: -7.5rem;
  width: 35rem;
  aspect-ratio: 560/79;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__line {
    aspect-ratio: 300/63;
    width: 18.75rem;
    left: -5rem;
    top: 2.0625rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text {
  white-space: nowrap;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  position: absolute;
  left: 26.875rem;
  top: 50%;
  font-family: "Outfit", sans-serif;
  -webkit-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
  color: rgba(0, 255, 238, 0.4);
  -webkit-filter: blur(0.75rem);
  filter: blur(0.75rem);
  font-size: 15rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text {
    font-size: 7.5rem;
    left: 6.875rem;
    top: 30%;
    -webkit-filter: blur(0.25rem);
    filter: blur(0.25rem);
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char {
  -webkit-transform: skewX(-4deg);
  transform: skewX(-4deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char {
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(1) {
  font-size: 15rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(1) {
    font-size: 7.5rem;
    margin-top: 0.625rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(2) {
  font-size: 16.25rem;
  margin-top: 0rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(2) {
    font-size: 8.125rem;
    margin-top: 0.3125rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(3) {
  font-size: 17.5rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(3) {
    font-size: 8.75rem;
    margin-top: 0rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(4) {
  font-size: 18.75rem;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(4) {
    font-size: 9.375rem;
    margin-top: -0.3125rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(5) {
  font-size: 20rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(5) {
    font-size: 10rem;
    margin-top: -0.625rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(6) {
  font-size: 21.25rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(6) {
    font-size: 10.625rem;
    margin-top: -0.9375rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(7) {
  font-size: 22.5rem;
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(7) {
    font-size: 11.25rem;
    margin-top: -1.25rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(8) {
  font-size: 23.75rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(8) {
    font-size: 11.875rem;
    margin-top: -1.5625rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(9) {
  font-size: 25rem;
  margin-top: -4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(9) {
    font-size: 12.5rem;
    margin-top: -1.875rem;
  }
}
.kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(10) {
  font-size: 26.25rem;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .s-pageFv3__dec-text .char:nth-of-type(10) {
    font-size: 13.125rem;
    margin-top: -2.1875rem;
  }
}
.kfu-corp-s-pageFv3 .kfu-corp-c-button {
  margin-inline: unset;
  margin-top: 2.5rem;
  margin-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-pageFv3 .kfu-corp-c-button {
    margin-left: unset;
    width: calc(100% - 1.5rem);
    margin-inline: auto;
  }
}

body:has(.kfu-corp-s-documentList) .kfu-corp-s-pageFv3 {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  body:has(.kfu-corp-s-documentList) .kfu-corp-s-pageFv3 {
    padding-bottom: 5.3125rem;
  }
}

body:has(.kfu-corp-s-columnPick) .kfu-corp-s-pageFv3 {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  body:has(.kfu-corp-s-columnPick) .kfu-corp-s-pageFv3 {
    padding-bottom: 10.3125rem;
  }
}

.kfu-corp-s-detailFv4 {
  padding-top: 3.75rem;
  padding-bottom: 11.875rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 {
    padding-top: 3.125rem;
    padding-bottom: 8.125rem;
  }
}
.kfu-corp-s-detailFv4::after {
  top: calc(100% - 4.375rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4::after {
    top: calc(100% - 3.75rem);
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__top {
    display: block;
    margin-bottom: 1.5625rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__logo {
  aspect-ratio: 8267/3200;
  width: 5.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__logo {
    width: 3.875rem;
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-s-detailFv4 .s-detailFv4__title {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__title {
    font-size: 1.25rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__main {
  position: relative;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__main {
    padding: 0 0.75rem;
    display: block;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__main .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-detailFv4 .s-detailFv4__text {
  max-width: 75rem;
  margin-inline: auto;
  font-size: 1rem;
  padding-right: 12.5rem;
  color: #fff;
  line-height: 2;
  text-align: left;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__text {
    padding: 0 0.75rem 0;
    margin-top: 2.1875rem;
    font-size: 0.9375rem;
    text-align: left;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__text a {
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  -webkit-text-decoration-color: #fff;
  text-decoration-color: #fff;
}
@media (any-hover: hover) {
  .kfu-corp-s-detailFv4 .s-detailFv4__text a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__line {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 5rem;
  left: -7.5rem;
  width: 35rem;
  aspect-ratio: 560/79;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__line {
    aspect-ratio: 300/63;
    width: 18.75rem;
    left: -5rem;
    top: 2.5rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text {
  white-space: nowrap;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  position: absolute;
  left: 26.875rem;
  top: 50%;
  font-family: "Outfit", sans-serif;
  -webkit-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
  color: rgba(0, 255, 238, 0.4);
  -webkit-filter: blur(0.75rem);
  filter: blur(0.75rem);
  font-size: 15rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text {
    top: 200%;
    font-size: 7.5rem;
    left: 6.875rem;
    -webkit-filter: blur(0.25rem);
    filter: blur(0.25rem);
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char {
  -webkit-transform: skewX(-4deg);
  transform: skewX(-4deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char {
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(1) {
  font-size: 15rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(1) {
    font-size: 7.5rem;
    margin-top: 0.625rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(2) {
  font-size: 16.25rem;
  margin-top: 0rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(2) {
    font-size: 8.125rem;
    margin-top: 0.3125rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(3) {
  font-size: 17.5rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(3) {
    font-size: 8.75rem;
    margin-top: 0rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(4) {
  font-size: 18.75rem;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(4) {
    font-size: 9.375rem;
    margin-top: -0.3125rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(5) {
  font-size: 20rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(5) {
    font-size: 10rem;
    margin-top: -0.625rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(6) {
  font-size: 21.25rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(6) {
    font-size: 10.625rem;
    margin-top: -0.9375rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(7) {
  font-size: 22.5rem;
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(7) {
    font-size: 11.25rem;
    margin-top: -1.25rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(8) {
  font-size: 23.75rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(8) {
    font-size: 11.875rem;
    margin-top: -1.5625rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(9) {
  font-size: 25rem;
  margin-top: -4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(9) {
    font-size: 12.5rem;
    margin-top: -1.875rem;
  }
}
.kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(10) {
  font-size: 26.25rem;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .s-detailFv4__dec-text .char:nth-of-type(10) {
    font-size: 13.125rem;
    margin-top: -2.1875rem;
  }
}
.kfu-corp-s-detailFv4 .kfu-corp-c-button {
  margin-inline: unset;
  margin-top: 2.5rem;
  margin-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-detailFv4 .kfu-corp-c-button {
    margin-left: unset;
    width: calc(100% - 1.5rem);
    margin-inline: auto;
  }
}

.kfu-corp-s-contact {
  padding-bottom: 9.375rem;
  position: relative;
  background: #f2f2f2;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact {
    padding-bottom: 1.875rem;
  }
}
.kfu-corp-s-contact .s-contact__inner {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-contact .s-contact__contact {
  background: #fff;
  padding-bottom: 4.5rem;
  -webkit-transform: translateY(-4.375rem);
  transform: translateY(-4.375rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .s-contact__contact {
    padding: 2rem 1.5rem;
    margin-left: -1.5rem;
    width: calc(100% + 3rem);
    margin-top: unset;
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__row {
  padding: 3rem 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4rem;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  margin-top: unset;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__row {
    padding: unset;
    border-bottom: unset;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__row:first-of-type .leadgrid-form__label {
    margin-top: unset;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__label {
  margin-bottom: unset;
  margin-top: 1rem;
  line-height: 1;
  width: 17.1875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__label {
    margin-top: 2.125rem;
    width: unset;
    margin-bottom: 1rem;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__input,
.kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__select,
.kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__textarea {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__input,
  .kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__select,
  .kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__textarea {
    width: 100%;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__error {
  position: absolute;
  bottom: 1.25rem;
  left: 25.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__error {
    position: static;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__radio {
  width: 100%;
}
.kfu-corp-s-contact .kfu-corp-c-form .radio-wrapper,
.kfu-corp-s-contact .kfu-corp-c-form .checkbox-wrapper {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .radio-wrapper,
  .kfu-corp-s-contact .kfu-corp-c-form .checkbox-wrapper {
    width: 100% !important;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__agree) {
  border-bottom: unset;
  padding-top: 1.25rem;
  padding-bottom: unset;
  margin-bottom: 2rem;
  width: calc(100% - 21.25rem);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .leadgrid-form__row:has(.leadgrid-form__agree) {
    width: 100%;
    padding-top: unset;
    margin-bottom: 1.5rem;
    margin-left: unset;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .c-form__agreeText_not_scroll + div {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .c-form__agreeText_not_scroll + div {
    text-align: left !important;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .privacy {
  max-width: calc(100% - 25.75rem);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .privacy {
    width: 100%;
    text-align: left;
    margin-left: unset;
    max-width: unset;
  }
}
.kfu-corp-s-contact .kfu-corp-c-form .c-form__action {
  max-width: 23.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-contact .kfu-corp-c-form .c-form__action {
    width: 100%;
    max-width: unset;
    margin-top: 2rem;
  }
}
html:has(.kfu-corp-s-contact) .kfu-corp-c-footer {
  position: relative;
  padding-top: 19.375rem;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-contact) .kfu-corp-c-footer {
    padding-top: 12.5rem;
  }
}
html:has(.kfu-corp-s-contact) .kfu-corp-c-footer::before {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 160vw;
  aspect-ratio: 2400/480;
  border-radius: 50%;
  background: #f2f2f2;
  z-index: 1;
  bottom: calc(100% - 9.375rem);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-contact) .kfu-corp-c-footer::before {
    bottom: calc(100% - 5.625rem);
    width: 270vw;
    aspect-ratio: 1024/320;
  }
}

.kfu-corp-s-cta {
  position: relative;
  z-index: 2;
  padding-top: 15rem;
  padding-bottom: 7.5rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta {
    padding-top: 10rem;
    padding-bottom: 2.5rem;
  }
}
.kfu-corp-s-cta .kfu-corp-c-gif {
  mix-blend-mode: screen;
}
.kfu-corp-s-cta::before {
  bottom: calc(100% - 5.375rem);
}
.kfu-corp-s-cta .s-cta__inner {
  position: relative;
  z-index: 2;
}
.kfu-corp-s-cta .s-cta__catch {
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5625rem;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__catch {
    letter-spacing: 0.1em;
    margin-bottom: 1.875rem;
  }
}
.kfu-corp-s-cta .s-cta__catch .s-cta__jaTitle {
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  font-size: 3rem;
  margin-bottom: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__catch .s-cta__jaTitle {
    font-size: 1.625rem;
    margin-bottom: unset;
  }
}
.kfu-corp-s-cta .s-cta__catch .s-cta__enTitle {
  font-size: 6.25rem;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__catch .s-cta__enTitle {
    font-size: 3rem;
    margin-left: -0.625rem;
    width: calc(100% + 1.25rem);
  }
}
.kfu-corp-s-cta .s-cta__catch .text {
  position: relative;
  z-index: 2;
}
.kfu-corp-s-cta .s-cta__catch .s-cta__decline {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  width: 50rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__catch .s-cta__decline {
    width: 39rem;
    top: -3.75rem;
    left: 20%;
  }
}
.kfu-corp-s-cta .s-cta__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__buttons {
    grid-template-columns: 1fr;
    gap: 0.3125rem;
    margin-bottom: unset;
  }
}
.kfu-corp-s-cta .s-cta__button {
  position: relative;
  --after-x: -150%;
  border-radius: 0.25rem;
  overflow: hidden;
  clip-path: inset(0.25rem 0.25rem 0.25rem 0.25rem round 0.25rem);
}
.kfu-corp-s-cta .s-cta__button::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  -webkit-filter: blur(0.625rem);
  filter: blur(0.625rem);
  height: 100%;
  opacity: 0.2;
  background-image: url("/assets/kfu-corp/img/common/cta-button-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.kfu-corp-s-cta .s-cta__button::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 230%;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(var(--after-x));
  transform: translateX(var(--after-x));
  background-image: url("/assets/kfu-corp/img/common/cta-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
  clip-path: inset(0.25rem 0.25rem 0.25rem 0.25rem round 0.25rem);
}
.kfu-corp-s-cta .s-cta__buttonLink {
  color: #fff;
  display: block;
  position: relative;
  z-index: 2;
}
.kfu-corp-s-cta .s-cta__buttonLink .c-dottedLine__inner {
  padding: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__buttonLink .c-dottedLine__inner {
    padding: 2.875rem 1.375rem 1rem;
  }
}
.kfu-corp-s-cta .s-cta__buttonLink::before, .kfu-corp-s-cta .s-cta__buttonLink::after,
.kfu-corp-s-cta .s-cta__buttonLink .c-dottedLine__inner::before,
.kfu-corp-s-cta .s-cta__buttonLink .c-dottedLine__inner::after {
  background-image: radial-gradient(circle, #fff 1px, transparent 1px 4px);
}
.kfu-corp-s-cta .s-cta__buttonLabel {
  margin-bottom: 1.125rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__buttonLabel {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}
.kfu-corp-s-cta .s-cta__buttonLabel::before {
  background: #fff;
}
.kfu-corp-s-cta .s-cta__buttonEn {
  font-size: 4rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__buttonEn {
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
}
.kfu-corp-s-cta .s-cta__buttonArrow {
  position: absolute;
  right: 2.5rem;
  bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__buttonArrow {
    position: relative;
    right: unset;
    bottom: unset;
    margin-left: auto;
    width: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__buttonArrow::before {
    width: 1.25rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-s-cta .s-cta__buttonLink .c-dottedLine__inner {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-s-cta .s-cta__buttonLink .s-cta__buttonLabel {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-s-cta .s-cta__buttonLink .kfu-corp-c-h2-dec::before {
    -webkit-transition: 0.3s ease-in-out background;
    transition: 0.3s ease-in-out background;
  }
  .kfu-corp-s-cta .s-cta__buttonLink .s-cta__buttonEn {
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .kfu-corp-s-cta .s-cta__buttonLink:hover .s-cta__buttonLabel {
    color: #4650d7;
  }
  .kfu-corp-s-cta .s-cta__buttonLink:hover .kfu-corp-c-h2-dec::before {
    background: #4650d7;
  }
  .kfu-corp-s-cta .s-cta__buttonLink:hover .s-cta__buttonEn {
    color: #1e1e1e;
  }
  @-webkit-keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-s-cta .s-cta__buttonLink:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: 4s linear infinite arrow;
    animation: 4s linear infinite arrow;
  }
}
.kfu-corp-s-cta .s-cta__telBox {
  color: #fff;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__telBox {
    margin-bottom: 3.75rem;
  }
}
.kfu-corp-s-cta .s-cta__telBox .s-cta__telBoxBg {
  position: absolute;
  inset: 0;
  clip-path: inset(0.5rem 0.25rem 0.25rem 0.25rem round 0.25rem);
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-image: url("/assets/kfu-corp/img/common/cta-button-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.kfu-corp-s-cta .s-cta__telBox .c-dottedLine__inner {
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__telBox .c-dottedLine__inner {
    padding: 2.5rem 1.375rem 1.25rem;
  }
}
.kfu-corp-s-cta .s-cta__telBox::before, .kfu-corp-s-cta .s-cta__telBox::after,
.kfu-corp-s-cta .s-cta__telBox .c-dottedLine__inner::before,
.kfu-corp-s-cta .s-cta__telBox .c-dottedLine__inner::after {
  background-image: radial-gradient(circle, #fff 1px, transparent 1px 4px);
}
.kfu-corp-s-cta .s-cta__telLabel {
  margin-bottom: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__telLabel {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}
.kfu-corp-s-cta .s-cta__telLabel::before {
  background: #fff;
}
.kfu-corp-s-cta.leadgridCms-onlyInnerWorkspace .s-cta__tels {
  pointer-events: auto !important;
}
.kfu-corp-s-cta .s-cta__tels {
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  font-size: 3.25rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__tels {
    font-size: 1.75rem;
    pointer-events: auto;
    margin-bottom: 0.75rem;
  }
}
.kfu-corp-s-cta .s-cta__tels .number {
  position: relative;
  padding-bottom: 0.1875rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__tels .number {
    padding-bottom: 0.0625rem;
  }
}
.kfu-corp-s-cta .s-cta__tels .number::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.kfu-corp-s-cta .s-cta__time {
  margin-top: -3.125rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #1e1e1e;
  padding: 0.5625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  font-weight: 700;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta .s-cta__time {
    margin-top: unset;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
  }
}

.kfu-corp-s-news {
  padding: 12.5rem 0 5.625rem;
  background: #f2f2f2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-news {
    padding: 4.375rem 0 5rem;
  }
}
.kfu-corp-s-news .s-news__inner {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-news .s-news__main {
  margin-bottom: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-news .s-news__main {
    margin-bottom: 3.4375rem;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-news .s-news__title {
    margin-bottom: 2.1875rem;
  }
}
.kfu-corp-s-news .kfu-corp-c-h2-title .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-news .kfu-corp-c-h2-title .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-news .s-news__text {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-news .s-news__text {
    text-align: left;
    line-height: 1.8;
    margin-bottom: unset;
  }
}
.kfu-corp-s-news .s-news__items {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-news .s-news__items {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-news .kfu-corp-c-button {
  margin-left: auto;
  margin-inline: auto 0;
}

.kfu-corp-s-document:not(:has(.s-document__card)) {
  display: none;
}

.kfu-corp-s-document {
  background: #f2f2f2;
  position: relative;
}
.kfu-corp-s-document .kfu-corp-c-gif {
  background-size: 100% 100%;
}
.kfu-corp-s-document .s-document__wrap {
  background: #1e1e1e;
  margin: 0 1.5rem;
  padding: 10rem 0;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .s-document__wrap {
    margin: 0 0.5rem;
    padding: 5rem 0;
    border-radius: 0.25rem;
  }
}
.kfu-corp-s-document .s-document__inner {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .s-document__inner {
    padding: 0 1.5rem;
  }
}
.kfu-corp-s-document .s-document__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin-bottom: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .s-document__title {
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-document .s-document__title-dec {
  pointer-events: none;
  position: absolute;
  aspect-ratio: 700/250;
  width: 43.75rem;
  top: -3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .s-document__title-dec {
    width: 25rem;
    left: 30%;
    top: -2.5rem;
  }
}
.kfu-corp-s-document .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-document .s-document__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.875rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .s-document__main {
    display: block;
    margin-bottom: 3.4375rem;
  }
}
.kfu-corp-s-document .c-card3__title {
  color: #fff;
}
.kfu-corp-s-document .c-card3__text {
  color: #fff;
}
.kfu-corp-s-document .s-document__text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .s-document__text {
    line-height: 1.8;
  }
}
.kfu-corp-s-document .kfu-corp-c-button {
  margin-left: auto;
  margin-inline: unset;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .kfu-corp-c-button {
    margin-top: 1rem;
    width: 100%;
  }
}
.kfu-corp-s-document .kfu-corp-c-button.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .kfu-corp-c-button.sp {
    margin-top: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.kfu-corp-s-document .kfu-corp-c-button.pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .kfu-corp-c-button.pc {
    display: none;
  }
}
.kfu-corp-s-document .s-document__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-document .s-document__items {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
    border-bottom: 1px solid #fff;
    margin-bottom: 2.5rem;
  }
}

.kfu-corp-s-case:not(:has(.s-case__item)) {
  display: none;
}

.kfu-corp-s-case {
  background: #f2f2f2;
  padding: 4.375rem 0 13.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case {
    padding: 4.375rem 0 4.375rem;
  }
}
.kfu-corp-s-case .s-case__inner {
  position: relative;
  z-index: 4;
}
.kfu-corp-s-case .s-case__main {
  margin-bottom: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case .s-case__main {
    margin-bottom: 3.125rem;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case .s-case__title {
    margin-bottom: 2.25rem;
  }
}
.kfu-corp-s-case .kfu-corp-c-h2-title .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-case .kfu-corp-c-h2-title .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-case .s-case__text {
  max-width: 45rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case .s-case__text {
    max-width: unset;
    margin-bottom: unset;
    line-height: 1.8;
  }
}
.kfu-corp-s-case .s-case__items {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case .s-case__items {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-case .kfu-corp-c-button {
  margin-left: auto;
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case .kfu-corp-c-button {
    width: 100%;
  }
}

.kfu-corp-s-column:not(:has(.s-column__item)) {
  display: none;
}

.kfu-corp-s-column {
  background: #f2f2f2;
  padding: 0 0 12.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column {
    padding: 0 0 5rem;
    overflow: hidden;
  }
}
.kfu-corp-s-column .s-column__inner {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-column .s-column__title {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column .s-column__title {
    margin-bottom: 2.1875rem;
  }
}
.kfu-corp-s-column .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-column .c-h2-title__jp::before {
  background: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column .swiper {
    overflow: visible !important;
  }
}
.kfu-corp-s-column .s-column__text {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column .s-column__text {
    margin-bottom: 3.4375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-column .s-column__items-wrap {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column .s-column__items-wrap {
    margin-bottom: 2rem;
    width: 100%;
  }
}
.kfu-corp-s-column .s-column__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.kfu-corp-s-column .s-column__bottoms {
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column .s-column__bottoms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-column .kfu-corp-c-button {
  margin-inline: unset;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column .kfu-corp-c-button {
    width: 100%;
  }
}
.kfu-corp-s-column .swiper-pagination-bullet {
  width: 3.9375rem !important;
}

.kfu-corp-s-why {
  overflow: clip;
  position: relative;
  padding: 23.125rem 0 20rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why {
    padding: 8.125rem 0 7.5rem;
    background-size: 100% 50rem;
  }
}
.kfu-corp-s-why::after, .kfu-corp-s-why::before {
  content: "";
  position: absolute;
  width: 160vw;
  aspect-ratio: 2400/480;
  border-radius: 50%;
  background: #f2f2f2;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why::after, .kfu-corp-s-why::before {
    width: 270vw;
    aspect-ratio: 1024/320;
  }
}
.kfu-corp-s-why::after {
  bottom: calc(100% - 8.4375rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why::after {
    bottom: calc(100% - 3.125rem);
  }
}
.kfu-corp-s-why::before {
  top: calc(100% - 8.4375rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why::before {
    top: calc(100% - 3.125rem);
  }
}
.kfu-corp-s-why .s-why__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.4375rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__content {
    display: block;
    margin-bottom: 7.5rem;
  }
}
.kfu-corp-s-why .s-why__right {
  width: 35rem;
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: sticky;
  top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__right {
    width: 100%;
    position: static;
  }
}
.kfu-corp-s-why .s-why__title {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__title {
    margin-bottom: 1.875rem;
  }
}
.kfu-corp-s-why .kfu-corp-c-h2-title {
  color: #fff;
}
.kfu-corp-s-why .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-why .s-why__read {
  color: #fff;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  margin-bottom: 5rem;
  font-size: 2.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__read {
    text-align: center;
    line-height: 1.8;
    font-size: 1.5rem;
    margin-bottom: 3.4375rem;
  }
}
.kfu-corp-s-why .s-why__read span {
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  display: block;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__read span {
    margin-bottom: 0.0625rem;
  }
}
.kfu-corp-s-why .kfu-corp-c-button {
  margin-inline: unset;
}
.kfu-corp-s-why .kfu-corp-c-button.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .kfu-corp-c-button.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.kfu-corp-s-why .kfu-corp-c-button.pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .kfu-corp-c-button.pc {
    display: none;
  }
}
.kfu-corp-s-why .s-why__items {
  padding-top: 9.375rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  counter-reset: number 0;
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__items {
    padding-top: unset;
    margin-bottom: 3.5rem;
    gap: 3.125rem;
    width: 100%;
  }
}
.kfu-corp-s-why .s-why__item-number {
  aspect-ratio: 1;
  width: 4.5rem;
  display: grid;
  place-content: center;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__item-number {
    width: 3.125rem;
    margin-right: -0.8125rem;
    margin-top: -0.625rem;
  }
}
.kfu-corp-s-why .s-why__item-number::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-mask-image: url("/assets/kfu-corp/img/top/number-dec.png");
  mask-image: url("/assets/kfu-corp/img/top/number-dec.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.kfu-corp-s-why .s-why__item-number::after {
  counter-increment: number 1;
  content: "0" counter(number);
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__item-number::after {
    font-size: 1.25rem;
  }
}
.kfu-corp-s-why .s-why__item-img {
  margin-top: -4.5rem;
  max-width: 23.5rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__item-img {
    margin-top: -3rem;
    margin-bottom: 1.5625rem;
    max-width: 14.375rem;
  }
}
.kfu-corp-s-why .s-why__item-img video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  mix-blend-mode: screen;
  position: relative;
  z-index: 2;
}
.kfu-corp-s-why .s-why__dec-line {
  position: absolute;
  z-index: 1;
  aspect-ratio: 700/163;
  width: 43.75rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__dec-line {
    aspect-ratio: 420/98;
    width: 26.25rem;
    left: 60%;
  }
}
.kfu-corp-s-why .s-why__item-title {
  text-align: center;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #fff;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__item-title {
    max-width: 17.5rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.kfu-corp-s-why .s-why__item-text {
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__item-text {
    line-height: 1.8;
  }
}
.kfu-corp-s-why .s-why__bottom-read {
  text-align: center;
  font-size: 3.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__bottom-read {
    line-height: 1.1;
    font-size: 2.25rem;
    margin-bottom: 3.125rem;
  }
}
.kfu-corp-s-why .s-why__bottom-read span.text {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__bottom-read span.text {
    display: block;
  }
}
.kfu-corp-s-why .s-why__bottom-read span.cross {
  display: inline-block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__bottom-read span.cross {
    margin-top: -0.25rem;
    font-size: 1.5rem;
    display: inline-block;
    -webkit-transform: skewX(-16deg) translateY(-0.3125rem);
    transform: skewX(-16deg) translateY(-0.3125rem);
  }
}
.kfu-corp-s-why .s-why__bottom-read .small {
  display: block;
  font-size: 2.75rem;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__bottom-read .small {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}
.kfu-corp-s-why .s-why__bottom-read-dec {
  width: 56.25rem;
  position: absolute;
  top: -0.3125rem;
  left: -2.0625rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__bottom-read-dec {
    aspect-ratio: 315/244;
    width: 21.25rem;
    left: -6.5rem;
    top: -2.0625rem;
  }
}
.kfu-corp-s-why .s-why__numbers {
  margin-bottom: 8.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__numbers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
}
.kfu-corp-s-why .s-why__number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__number {
    width: 100%;
  }
}
.kfu-corp-s-why .s-why__number-num {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 300;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.kfu-corp-s-why .s-why__number-num span {
  line-height: 1;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__number-num span {
    font-size: 1.75rem;
  }
}
.kfu-corp-s-why .s-why__number-num .number {
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  font-size: 8.75rem;
  font-family: "Outfit", sans-serif;
  display: inline-block;
  font-weight: 300;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__number-num .number {
    font-size: 5.5rem;
  }
}
.kfu-corp-s-why .s-why__number-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  padding: 0.5rem 1.875rem 0.375rem;
  min-width: 10rem;
  line-height: 1;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 62.5rem;
  font-size: 1.125rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__number-label {
    margin-bottom: 1rem;
    font-size: 1rem;
    min-width: 9rem;
    padding: 0.375rem 1.5625rem 0.3125rem;
  }
}
.kfu-corp-s-why .s-why__number-text {
  color: #fff;
  max-width: 18.75rem;
  margin-inline: auto;
  line-height: 2;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__number-text {
    max-width: unset;
    line-height: 1.8;
  }
}
.kfu-corp-s-why .s-why__logo-slider {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__logo-slider {
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-s-why .swiper {
  overflow: visible !important;
}
.kfu-corp-s-why .swiper-why {
  overflow: visible !important;
}
.kfu-corp-s-why.leadgridCms-onlyInnerWorkspace .swiper-wrapper {
  -webkit-transform: unset !important;
  transform: unset !important;
}
.kfu-corp-s-why .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.kfu-corp-s-why .swiper-slide {
  width: 10rem;
  aspect-ratio: 160/80;
  border-radius: 0.25rem;
  background: #fff;
  display: grid;
  place-content: center;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .swiper-slide {
    width: 6rem;
    padding: 0.75rem;
    aspect-ratio: 96/48;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__logo-item-img {
    height: 1.5rem;
  }
}
.kfu-corp-s-why .swiper-slide img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .swiper-slide img {
    height: 100%;
  }
}
.kfu-corp-s-why .s-why__bottom-text {
  margin-top: 2rem;
  text-align: right;
  font-size: 0.875rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-why .s-why__bottom-text {
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
}

.kfu-corp-s-service {
  margin-top: -6.25rem;
  position: relative;
  z-index: 3;
  padding-top: 3rem;
  padding-bottom: 1.25rem;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service {
    margin-top: -5rem;
    padding-top: 3.75rem;
    padding-bottom: 2.1875rem;
  }
}
.kfu-corp-s-service::before {
  bottom: calc(100% - 17.8125rem);
}
.kfu-corp-s-service .s-service__inner {
  max-width: 79.375rem;
  padding: 0 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__inner {
    padding: 0 0.5rem;
  }
}
.kfu-corp-s-service .s-service__title {
  position: relative;
  z-index: 2;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__title {
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
  }
}
.kfu-corp-s-service .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-service .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-service .c-h2-title__en {
  color: #1e1e1e;
}
.kfu-corp-s-service .s-service__read {
  text-align: center;
  margin-bottom: 5.625rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__read {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-service .s-service__read span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 400;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__read span {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.kfu-corp-s-service .s-service__read-dec {
  position: absolute;
  aspect-ratio: 681/190;
  width: 42.5625rem;
  top: 0.5rem;
  left: -5rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__read-dec {
    aspect-ratio: unset;
    width: 18.3125rem;
    height: 100%;
    top: 0.125rem;
    left: -0.625rem;
  }
}
.kfu-corp-s-service .s-service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4.375rem;
  margin-left: -1.875rem;
  width: calc(100% + 3.75rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__content {
    width: 100%;
    display: block;
    margin-left: unset;
  }
}
.kfu-corp-s-service .s-service__imgs {
  margin-left: -0.625rem;
  position: relative;
  aspect-ratio: 640/676;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__imgs {
    width: 22.5rem;
    margin-bottom: 1.5625rem;
    margin-inline: auto;
  }
}
.kfu-corp-s-service .s-service__img1 {
  position: relative;
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
.kfu-corp-s-service .s-service__img2 {
  position: absolute;
  z-index: 3;
  width: 29rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: rotation 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) infinite;
  animation: rotation 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) infinite;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__img2 {
    width: calc(100% - 5.8125rem);
  }
}
.kfu-corp-s-service .s-service__items-wrap {
  position: absolute;
  top: 47.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 4;
  aspect-ratio: 555/543;
  width: 34.6875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__items-wrap {
    top: 52%;
    width: 21.375rem;
  }
}
.kfu-corp-s-service .s-service__item {
  aspect-ratio: 1;
  background: #fff;
  width: 7.25rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  position: relative;
  pointer-events: all;
  color: #1e1e1e;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__item {
    width: 4.0625rem;
    font-size: 0.625rem;
  }
}
.kfu-corp-s-service .s-service__item::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 50%;
  inset: 0;
  z-index: 1;
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-s-service .s-service__item .text {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  color: #1e1e1e;
  z-index: 4;
  position: relative;
}
.kfu-corp-s-service .s-service__item .arrow {
  position: absolute;
  bottom: 0.3125rem;
  right: 0.3125rem;
  aspect-ratio: 1;
  width: 1.5rem;
  border-radius: 50%;
  background: #1e1e1e;
  display: grid;
  place-content: center;
  border: 1px solid #1e1e1e;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__item .arrow {
    width: 0.875rem;
    bottom: 0.1875rem;
    right: 0.1875rem;
  }
}
.kfu-corp-s-service .s-service__item .arrow::after {
  content: "";
  display: block;
  aspect-ratio: 965/724;
  background: #fff;
  width: 0.625rem;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__item .arrow::after {
    width: 0.375rem;
  }
}
.kfu-corp-s-service .s-service__item--restart {
  border: 1px solid #d2d2d2;
}
@media (any-hover: hover) {
  .kfu-corp-s-service .s-service__item:hover::after {
    opacity: 1;
  }
  .kfu-corp-s-service .s-service__item:hover .text {
    color: #fff;
  }
}
.kfu-corp-s-service .s-service__item--1 {
  margin-inline: auto;
}
.kfu-corp-s-service .s-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  pointer-events: none;
  margin-inline: auto;
}
.kfu-corp-s-service .s-service__items--1 {
  margin-top: -1.75rem;
  max-width: 29.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__items--1 {
    margin-top: -1.0625rem;
    max-width: 16.4375rem;
  }
}
.kfu-corp-s-service .s-service__items--2 {
  margin-top: 4.375rem;
  max-width: 34.6875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__items--2 {
    margin-top: 2.5rem;
    max-width: 19.4375rem;
  }
}
.kfu-corp-s-service .s-service__items--3 {
  margin-top: 2.25rem;
  max-width: 19.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__items--3 {
    margin-top: 1.25rem;
    max-width: 10.9375rem;
  }
}
.kfu-corp-s-service .s-service__texts {
  width: 30%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__texts {
    width: 100%;
    margin-top: unset;
    padding: 0 0.75rem;
  }
}
.kfu-corp-s-service .s-service__text {
  margin-bottom: 2.5rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-service .s-service__text {
    margin-bottom: 3.4375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-service .kfu-corp-c-button {
  margin-inline: unset;
}

.kfu-corp-s-mv {
  height: calc(100vh + 18.75rem);
  min-height: 50rem;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv {
    height: 53.125rem;
    min-height: 50rem;
  }
}
@-webkit-keyframes viewmore {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes viewmore {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.kfu-corp-s-mv::after {
  top: calc(100% - 11.875rem);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv::after {
    top: calc(100% - 6.875rem);
  }
}
.kfu-corp-s-mv .s-mv__wrap {
  position: relative;
  z-index: 2;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__wrap {
    height: auto;
  }
}
.kfu-corp-s-mv .s-mv__wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 4;
  pointer-events: none;
}
.kfu-corp-s-mv .s-mv__top {
  position: absolute;
  top: 2.5rem;
  width: 100%;
  padding: 0 3.4375rem;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__top {
    top: unset;
    position: relative;
    padding: 2rem 1.25rem 0;
  }
}
.kfu-corp-s-mv .s-mv__logo-wrap {
  width: 6.5rem;
  aspect-ratio: 104/40;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__logo-wrap {
    width: 3.875rem;
  }
}
.kfu-corp-s-mv .s-mv__logo {
  aspect-ratio: 104/40;
  width: 5.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__logo {
    width: 3.875rem;
  }
}
.kfu-corp-s-mv .s-mv__texts {
  display: contents;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.kfu-corp-s-mv .s-mv__subcopy {
  margin-top: 0.6875rem;
  font-size: 1rem;
  line-height: 2;
  color: #fff;
  text-align: right;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__subcopy {
    margin-top: 1.875rem;
    font-size: 0.8125rem;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
}
.kfu-corp-s-mv .s-mv__subcopy span {
  display: block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
}
.kfu-corp-s-mv .s-mv__viewmore {
  position: absolute;
  width: 44vw;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, calc(-50% - 2.5rem)) rotate(-15deg) skewX(10deg);
  transform: translate(-50%, calc(-50% - 2.5rem)) rotate(-15deg) skewX(10deg);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__viewmore {
    width: 17.5rem;
    top: 2.5rem;
    -webkit-transform: translate(-50%, 1.25rem) rotate(-15deg) skewX(10deg);
    transform: translate(-50%, 1.25rem) rotate(-15deg) skewX(10deg);
    mix-blend-mode: difference;
  }
}
.kfu-corp-s-mv .s-mv__viewmore img {
  -webkit-animation: viewmore 24s linear infinite;
  animation: viewmore 24s linear infinite;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-s-mv.leadgridCms-onlyInnerWorkspace .swiper {
  -webkit-transform: unset !important;
  transform: unset !important;
  margin: unset !important;
}
.kfu-corp-s-mv .swiper {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  isolation: isolate;
  -webkit-transform: rotate(-15deg) translateY(-1.5625rem);
  transform: rotate(-15deg) translateY(-1.5625rem);
  margin-left: -5rem;
  mix-blend-mode: plus-lighter;
  overflow: visible !important;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .swiper {
    margin-top: -5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: unset;
    margin-inline: auto;
    height: 30.75rem;
    clip-path: inset(-100% -100vw -200% -100vw);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotate(-15deg) translateY(-0.9375rem);
    transform: rotate(-15deg) translateY(-0.9375rem);
  }
}
.kfu-corp-s-mv.leadgridCms-onlyInnerWorkspace .swiper-wrapper {
  -webkit-transform: unset !important;
  transform: unset !important;
}
.kfu-corp-s-mv .swiper-wrapper {
  -webkit-transition: 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) all;
  transition: 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) all;
}
.kfu-corp-s-mv .swiper-slide {
  pointer-events: none;
  -webkit-transition: 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) opacity, 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) -webkit-filter;
  transition: 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) opacity, 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) -webkit-filter;
  transition: 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) opacity, 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) filter;
  transition: 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) opacity, 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) filter, 3s cubic-bezier(0.9, 0.15, 0.1, 0.85) -webkit-filter;
  text-align: center;
  font-size: 13.75rem;
  letter-spacing: -0.06em;
  font-weight: 400;
  color: #0dd7ff;
  white-space: nowrap;
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
  display: block;
  line-height: 1;
  opacity: 0.35;
  text-shadow: 0.125rem 0.125rem 0 rgba(13, 215, 255, 0.3), 0.25rem 0.25rem 0 rgba(13, 215, 255, 0.2), 0.375rem 0.375rem 0 rgba(13, 215, 255, 0.1);
  -webkit-filter: blur(0.3125rem);
  filter: blur(0.3125rem);
  height: 1lh;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: transparent;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .swiper-slide {
    font-size: 4rem;
    -webkit-transform: translateX(-1.5625rem) skewX(-15deg);
    transform: translateX(-1.5625rem) skewX(-15deg);
  }
}
@media screen and (max-width: 380px) {
  .kfu-corp-s-mv .swiper-slide {
    -webkit-transform: translateX(-2.5rem) skewX(-15deg);
    transform: translateX(-2.5rem) skewX(-15deg);
  }
}
.kfu-corp-s-mv .swiper-slide::before {
  content: "#";
  margin-right: 1.25rem;
  margin-top: 0.625rem;
  display: inline-block;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .swiper-slide::before {
    margin-right: 0.5rem;
  }
}
.kfu-corp-s-mv .swiper-slide a {
  display: inline-block;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .swiper-slide a {
    padding: 0.625rem 0;
  }
}
.kfu-corp-s-mv .swiper-slide.swiper-slide-active,
.kfu-corp-s-mv .swiper-slide-duplicate-active {
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  pointer-events: auto;
  -webkit-transition: 0.3s cubic-bezier(0.9, 0.15, 0.1, 0.85) all;
  transition: 0.3s cubic-bezier(0.9, 0.15, 0.1, 0.85) all;
}
@media (any-hover: hover) {
  .kfu-corp-s-mv .swiper-slide.swiper-slide-active:hover,
  .kfu-corp-s-mv .swiper-slide-duplicate-active:hover {
    opacity: 1;
  }
  .kfu-corp-s-mv:has(.swiper-slide.swiper-slide-active:hover) .s-mv__viewmore img, .kfu-corp-s-mv:has(.swiper-slide-duplicate-active:hover) .s-mv__viewmore img {
    scale: 0.8;
  }
}
.kfu-corp-s-mv .s-mv__copy {
  pointer-events: none;
  position: absolute;
  aspect-ratio: 1338/170;
  width: 83.625rem;
  bottom: 7.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 4;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__copy {
    margin-top: -6.25rem;
    position: relative;
    bottom: unset;
    left: unset;
    margin-inline: auto;
    width: 22.1875rem;
    -webkit-transform: unset;
    transform: unset;
    aspect-ratio: 422/115;
    margin-bottom: 0.9375rem;
  }
}
.kfu-corp-s-mv .s-mv__copy img {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-mv .s-mv__copy img {
    top: 0.625rem;
    width: 26.375rem;
    right: 0;
    -webkit-transform: unset;
    transform: unset;
    left: unset;
  }
}

.kfu-corp-s-wysiwyg {
  background: #f2f2f2;
  margin-top: -0.625rem;
  padding-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-wysiwyg {
    padding-bottom: 0.0625rem;
  }
}
.kfu-corp-s-wysiwyg::after {
  bottom: 0;
}
.kfu-corp-s-wysiwyg .s-wysiwyg__inner {
  position: relative;
  z-index: 3;
  max-width: 65.3125rem;
  padding: 0 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-wysiwyg .s-wysiwyg__inner {
    max-width: 37.5rem;
    padding: 2.125rem 32px 0;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-wysiwyg .s-wysiwyg__main {
    margin-bottom: -1.875rem;
  }
}
.kfu-corp-s-wysiwyg .kfu-corp-c-wysiwyg h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-wysiwyg .kfu-corp-c-wysiwyg h2 {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-wysiwyg .kfu-corp-c-wysiwyg p {
  word-break: break-word;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-wysiwyg .kfu-corp-c-wysiwyg p {
    margin-bottom: 3.4375rem;
  }
}

html:has(.kfu-corp-s-wysiwyg) .kfu-corp-c-footer {
  position: relative;
  padding-top: 19.375rem;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-wysiwyg) .kfu-corp-c-footer {
    padding-top: 12.5rem;
  }
}
html:has(.kfu-corp-s-wysiwyg) .kfu-corp-c-footer::before {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 160vw;
  aspect-ratio: 2400/480;
  border-radius: 50%;
  background: #f2f2f2;
  z-index: 1;
  bottom: calc(100% - 9.375rem);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  html:has(.kfu-corp-s-wysiwyg) .kfu-corp-c-footer::before {
    bottom: calc(100% - 5.625rem);
    width: 270vw;
    aspect-ratio: 1024/320;
  }
}

.kfu-corp-s-message {
  padding: 4.0625rem 0 6.875rem;
  background: #f2f2f2;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-message {
    padding: 2.8125rem 0 0rem;
  }
}
.kfu-corp-s-message .s-message__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-message .s-message__container {
    display: block;
  }
}
.kfu-corp-s-message .s-message__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-message .s-message__title {
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-message .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-message .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-message .s-message__texts {
  max-width: 56.25rem;
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 6.25rem;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-message .s-message__texts {
    margin-top: unset;
    padding-right: unset;
    max-width: unset;
    width: 100%;
  }
}
.kfu-corp-s-message .s-message__lead {
  margin-bottom: 3.75rem;
  font-size: 3.5rem;
  font-weight: 400;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-message .s-message__lead {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}
.kfu-corp-s-message .s-message__lead span {
  display: block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-message .s-message__lead span {
    -webkit-text-stroke: 0.5px #1e1e1e;
  }
}
.kfu-corp-s-message .s-message__text {
  font-size: 1.375rem;
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-message .s-message__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }
}

.kfu-corp-s-member {
  padding: 21.875rem 0 21.875rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member {
    padding: 13rem 0 7rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member::before {
    bottom: calc(100% - 7.5rem);
  }
}
.kfu-corp-s-member .s-member__title {
  color: #fff;
  margin-bottom: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__title {
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-member .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-member .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .c-h2-title__en {
    font-size: 2.5rem;
  }
}
.kfu-corp-s-member .s-member__content {
  max-width: 55.75rem;
  margin-left: auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__content {
    max-width: unset;
    width: 100%;
  }
}
.kfu-corp-s-member .s-member__text {
  margin-bottom: 5.3125rem;
  line-height: 2;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__text {
    margin-bottom: 3.125rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-member .s-member__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__list {
    grid-template-columns: repeat(auto-fill, minmax(16.4375rem, 1fr));
    gap: 2rem;
    place-content: center;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__item {
    max-width: 16.4375rem;
    margin-inline: auto;
  }
}
.kfu-corp-s-member .s-member__img {
  aspect-ratio: 276/368;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__img {
    aspect-ratio: 160/190;
    margin-bottom: 0.5rem;
    max-width: 10rem;
    margin-inline: auto;
  }
}
.kfu-corp-s-member .s-member__role {
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__role {
    text-align: center;
    margin-bottom: 0.125rem;
  }
}
.kfu-corp-s-member .s-member__name {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__name {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-s-member .s-member__description {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-member .s-member__description {
    font-size: 0.8125rem;
  }
}

.kfu-corp-s-outline {
  padding: 3.125rem 0 11.875rem;
  background: #f2f2f2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline {
    padding: 3.125rem 0 7.5rem;
  }
}
.kfu-corp-s-outline .kfu-corp-c-gif {
  z-index: 1;
}
.kfu-corp-s-outline .kfu-corp-c-inner {
  position: relative;
  z-index: 2;
}
.kfu-corp-s-outline .s-outline__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline .s-outline__container {
    display: block;
  }
}
.kfu-corp-s-outline .s-outline__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline .s-outline__title {
    margin-bottom: 2.8125rem;
  }
}
.kfu-corp-s-outline .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-outline .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-outline .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline .c-h2-title__en {
    font-size: 2.5rem;
  }
}
.kfu-corp-s-outline .s-outline__list {
  margin-top: 2.1875rem;
  width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline .s-outline__list {
    width: 100%;
  }
}
.kfu-corp-s-outline .s-outline__item {
  padding: 0.75rem 0 2rem;
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline .s-outline__item {
    padding: 0.5rem 0 0.875rem;
  }
}
.kfu-corp-s-outline .s-outline__item-label {
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline .s-outline__item-label {
    font-size: 0.8125rem;
  }
}
.kfu-corp-s-outline .s-outline__item-text {
  padding-left: 5rem;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline .s-outline__item-text {
    padding-left: 1.5rem;
    font-size: 0.875rem;
  }
}

.kfu-corp-s-access {
  position: relative;
  z-index: 2;
  background: #f2f2f2;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access {
    z-index: 5;
    margin-bottom: -3.75rem;
  }
}
.kfu-corp-s-access .s-access__inner {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-access .s-access__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access .s-access__container {
    display: block;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access .s-outline__title {
    margin-bottom: 3.125rem;
  }
}
.kfu-corp-s-access .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-access .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-access .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access .c-h2-title__en {
    font-size: 2.5rem;
  }
}
.kfu-corp-s-access .s-access__text {
  text-align: right;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access .s-access__text {
    text-align: left;
    font-size: 0.9375rem;
  }
}
.kfu-corp-s-access .s-access__button-wrap {
  padding: 0.5rem;
  background: #f2f2f2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access .s-access__button-wrap {
    margin-right: -0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access .kfu-corp-c-button .text {
    font-size: 0.9375rem;
  }
}
.kfu-corp-s-access .s-access__map {
  -webkit-transform: translateY(-4rem);
  transform: translateY(-4rem);
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1440/510;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access .s-access__map {
    -webkit-transform: unset;
    transform: unset;
    margin-top: -4rem;
    aspect-ratio: 375/360;
  }
}
.kfu-corp-s-access .s-access__map::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  mix-blend-mode: saturation;
  z-index: 2;
  pointer-events: none;
}
.kfu-corp-s-access .s-access__map::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #04116b;
  mix-blend-mode: screen;
  z-index: 3;
  pointer-events: none;
}
.kfu-corp-s-access .s-access__map img {
  max-height: 31.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-access .s-access__map img {
    max-height: 22.5rem;
  }
}
.kfu-corp-s-access .s-access__map div {
  width: 100%;
  height: 100%;
}
.kfu-corp-s-access .s-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.kfu-corp-s-serviceList {
  background: #f2f2f2;
  padding: 5rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList {
    padding: 3.125rem 0 0rem;
  }
}
.kfu-corp-s-serviceList .s-serviceList__inner {
  position: relative;
  z-index: 2;
}
.kfu-corp-s-serviceList .s-serviceList__lead {
  margin-bottom: 7.5rem;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 400;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__lead {
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
.kfu-corp-s-serviceList .s-serviceList__lead span {
  display: block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__lead span {
    -webkit-text-stroke: 0.5px #1e1e1e;
    margin-bottom: unset;
  }
}
.kfu-corp-s-serviceList .s-serviceList__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__items {
    grid-template-columns: 1fr;
    gap: 1.0625rem;
  }
}
.kfu-corp-s-serviceList .s-serviceList__itemLink {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  padding: 3rem 3.5rem;
  position: relative;
  display: block;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__itemLink {
    padding: 1.25rem 0.5rem;
  }
}
.kfu-corp-s-serviceList.leadgridCms-onlyInnerWorkspace .kfu-corp-c-button {
  pointer-events: auto;
}
.kfu-corp-s-serviceList .kfu-corp-c-button {
  pointer-events: none;
}
@media (any-hover: hover) {
  .kfu-corp-s-serviceList .s-serviceList__itemLink:hover {
    background: #fff;
  }
  .kfu-corp-s-serviceList .s-serviceList__itemLink:hover .s-serviceList__icon video {
    background: #fff;
  }
  .kfu-corp-s-serviceList .s-serviceList__itemLink:hover .s-serviceList__icon span {
    display: block;
    width: 100%;
    height: 100%;
  }
  .kfu-corp-s-serviceList .s-serviceList__itemLink:hover .kfu-corp-c-button .text {
    color: #fff;
  }
  @-webkit-keyframes circle {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes circle {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-s-serviceList .s-serviceList__itemLink:hover .kfu-corp-c-button .kfu-corp-c-buttonArrow::before {
    -webkit-animation: circle 4s linear infinite;
    animation: circle 4s linear infinite;
  }
}
.kfu-corp-s-serviceList .s-serviceList__number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
  aspect-ratio: 1;
  width: 4.5rem;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__number {
    width: 3rem;
    top: 0.625rem;
    left: 0.625rem;
  }
}
.kfu-corp-s-serviceList .s-serviceList__number::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #6b74f3;
  -webkit-mask-image: url("/assets/kfu-corp/img/top/number-dec.png");
  mask-image: url("/assets/kfu-corp/img/top/number-dec.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.kfu-corp-s-serviceList .s-serviceList__number::after {
  counter-increment: number 1;
  content: "0" counter(number);
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #6b74f3;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__number::after {
    font-size: 1.25rem;
  }
}
.kfu-corp-s-serviceList .s-serviceList__icon {
  aspect-ratio: 1;
  max-width: 16.25rem;
  margin-inline: auto;
  margin-bottom: 0.3125rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__icon {
    max-width: 13.75rem;
    margin-bottom: 1.25rem;
  }
}
.kfu-corp-s-serviceList .s-serviceList__icon span {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
}
.kfu-corp-s-serviceList .s-serviceList__icon video {
  width: 100%;
  mix-blend-mode: multiply;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-s-serviceList .s-serviceList__title {
  text-align: center;
  font-size: 2rem;
  color: #4650d7;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__title {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }
}
.kfu-corp-s-serviceList .s-serviceList__text {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .s-serviceList__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-serviceList .kfu-corp-c-button {
  width: 100%;
}
.kfu-corp-s-serviceList .kfu-corp-c-button .text {
  margin-left: -2.8125rem;
  padding: 0 2.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-serviceList .kfu-corp-c-button .text {
    text-align: center;
  }
}

.kfu-corp-s-jobs {
  padding: 3.125rem 0 8.75rem;
  background: #f2f2f2;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs {
    padding: 2.8125rem 0 3.125rem;
  }
}
.kfu-corp-s-jobs::before {
  top: -11.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs::before {
    bottom: unset;
    top: -2.5rem;
  }
}
.kfu-corp-s-jobs .s-jobs__container {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-jobs .s-jobs__contents {
  width: 49.375rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__contents {
    width: 100%;
  }
}
.kfu-corp-s-jobs .s-jobs__title {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__title {
    margin-bottom: 3.125rem;
  }
}
.kfu-corp-s-jobs .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-jobs .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-jobs .c-h2-title__en {
  color: #1e1e1e;
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .c-h2-title__en {
    font-size: 2.5rem;
  }
}
.kfu-corp-s-jobs .s-jobs__button-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__button-list {
    margin-bottom: 2.5rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.kfu-corp-s-jobs .s-jobs__button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.9375rem;
  padding: 0.9375rem 1.5rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  border-radius: 1.875rem;
  border: 1px solid #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__button-link {
    padding: 0.625rem 1.125rem;
  }
}
.kfu-corp-s-jobs .s-jobs__button-link .text {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  font-size: 1rem;
  line-height: 1;
  color: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__button-link .text {
    font-size: 0.9375rem;
  }
}
.kfu-corp-s-jobs .s-jobs__button-link .arrow {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  aspect-ratio: 8/6;
  width: 0.5rem;
  background: #1e1e1e;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__button-link .arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.kfu-corp-s-jobs .s-jobs__button.is-active .s-jobs__button-link {
  background: #1e1e1e;
}
.kfu-corp-s-jobs .s-jobs__button.is-active .s-jobs__button-link .text {
  color: #fff;
}
.kfu-corp-s-jobs .s-jobs__button.is-active .s-jobs__button-link .arrow {
  display: none;
}
@media (any-hover: hover) {
  .kfu-corp-s-jobs .s-jobs__button-link:hover {
    background: #1e1e1e;
  }
  .kfu-corp-s-jobs .s-jobs__button-link:hover .text {
    color: #fff;
  }
  .kfu-corp-s-jobs .s-jobs__button-link:hover .arrow {
    background: #fff;
  }
}
.kfu-corp-s-jobs .s-jobs__content-list {
  position: relative;
}
.kfu-corp-s-jobs.leadgridCms-onlyInnerWorkspace .s-jobs__content {
  display: block !important;
}
.kfu-corp-s-jobs .s-jobs__content {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.kfu-corp-s-jobs .s-jobs__content.is-active {
  display: block;
  opacity: 1;
}
.kfu-corp-s-jobs.leadgridCms-onlyInnerWorkspace .s-jobs__content {
  display: block !important;
  opacity: 1 !important;
}
.kfu-corp-s-jobs .s-jobs__content-title {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.6;
  color: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__content-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-s-jobs .s-jobs__catch {
  margin-bottom: 1.4375rem;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__catch {
    font-size: 0.9375rem;
    margin-bottom: 1.3125rem;
  }
}
.kfu-corp-s-jobs .s-jobs__detail-item {
  padding: 0.75rem 0 1.6875rem;
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__detail-item {
    padding: 0.5rem 0 1.125rem;
  }
}
.kfu-corp-s-jobs .s-jobs__detail-heading {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__detail-heading {
    font-size: 0.8125rem;
    margin-bottom: 0.625rem;
  }
}
.kfu-corp-s-jobs .s-jobs__detail-desc {
  padding-left: 5rem;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .s-jobs__detail-desc {
    font-size: 0.875rem;
    padding-left: 1.5rem;
  }
}
.kfu-corp-s-jobs .kfu-corp-c-button {
  margin-top: 3rem;
  width: 100%;
  background: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .kfu-corp-c-button {
    margin-top: 2rem;
  }
}
.kfu-corp-s-jobs .kfu-corp-c-button::after {
  -webkit-filter: brightness(1000);
  filter: brightness(1000);
}
.kfu-corp-s-jobs .kfu-corp-c-button .text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-jobs .kfu-corp-c-button .text {
    text-align: center;
    margin-left: -3.125rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-s-jobs .kfu-corp-c-button:hover .text {
    color: #1e1e1e;
  }
  @-webkit-keyframes rotate {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes rotate {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-s-jobs .kfu-corp-c-button:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
  }
}

.kfu-corp-s-merits {
  margin-top: -3.75rem;
  padding: 22.5rem 0 2.9375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits {
    padding: 10.625rem 0 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits::before {
    bottom: calc(100% - 5.875rem);
  }
}
.kfu-corp-s-merits .s-merits__contents {
  width: 49.375rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__contents {
    width: 100%;
  }
}
.kfu-corp-s-merits .s-merits__title {
  color: #fff;
  margin-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__title {
    margin-bottom: 3.125rem;
  }
}
.kfu-corp-s-merits .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-merits .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .c-h2-title__en {
    font-size: 2.5rem;
  }
}
.kfu-corp-s-merits .s-merits__item {
  padding: 3.5rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item {
    padding: 2rem 0;
  }
}
.kfu-corp-s-merits .s-merits__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: unset;
  background: #fff;
  -webkit-mask-image: url("../img/common/categoryList/category-line.png");
  mask-image: url("../img/common/categoryList/category-line.png");
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: 3.75rem;
  mask-size: 3.75rem;
}
.kfu-corp-s-merits .s-merits__item:first-of-type::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/common/categoryList/category-line.png");
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
  background-size: 3.75rem;
  top: 0;
  left: 0;
}
.kfu-corp-s-merits .s-merits__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
.kfu-corp-s-merits .s-merits__item-texts {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item-texts {
    width: 100%;
  }
}
.kfu-corp-s-merits .s-merits__item-number {
  font-weight: 400;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item-number {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}
.kfu-corp-s-merits .s-merits__item-number::before {
  background: #fff;
  top: 62%;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item-number::before {
    top: 65%;
  }
}
.kfu-corp-s-merits .s-merits__item-heading {
  font-size: 1.75rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item-heading {
    font-size: 1.25rem;
  }
}
.kfu-corp-s-merits .s-merits__item-img {
  aspect-ratio: 1;
  width: 17.5rem;
  padding: 2.5rem;
  height: 17.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item-img {
    padding: 1.875rem;
  }
}
.kfu-corp-s-merits .s-merits__item-img::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url("/assets/kfu-corp/img/recruit/dotted-circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item-img {
    width: 15rem;
    height: 15rem;
    margin-inline: auto;
  }
}
.kfu-corp-s-merits .s-merits__item-img video {
  width: 100%;
  height: 100%;
}
.kfu-corp-s-merits .s-merits__item-text {
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-merits .s-merits__item-text {
    font-size: 0.9375rem;
  }
}

.kfu-corp-s-benefits {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.kfu-corp-s-benefits .s-benefits__contents {
  width: 49.375rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits .s-benefits__contents {
    width: 100%;
  }
}
.kfu-corp-s-benefits .s-benefits__title {
  margin-bottom: 2.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits .s-benefits__title {
    margin-bottom: 3.125rem;
  }
}
.kfu-corp-s-benefits .c-h2-title__jp {
  color: #fff;
}
.kfu-corp-s-benefits .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-benefits .c-h2-title__en {
  color: #fff;
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits .c-h2-title__en {
    font-size: 2.5rem;
  }
}
.kfu-corp-s-benefits .s-benefits__text {
  color: #fff;
  font-size: 1.125rem;
  line-height: 2.4;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits .s-benefits__text {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 2;
  }
}
.kfu-corp-s-benefits .s-benefits__items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits .s-benefits__items-list {
    gap: 0.25rem;
  }
}
.kfu-corp-s-benefits .s-benefits__item {
  border-radius: 0.25rem;
  background: #f2f2f2;
  position: relative;
  min-height: 12.5rem;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits .s-benefits__item {
    min-height: 6rem;
    padding: 1.25rem 1.5rem 1rem;
  }
}
.kfu-corp-s-benefits .s-benefits__item-number {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits .s-benefits__item-number {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.875rem;
  }
}
.kfu-corp-s-benefits .s-benefits__item-text {
  font-size: 1.375rem;
  line-height: 1.6;
  color: #1e1e1e;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-benefits .s-benefits__item-text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.kfu-corp-s-read {
  padding-bottom: 21.875rem;
  margin-top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read {
    margin-top: unset;
    padding-top: 1.25rem;
    padding-bottom: 5.75rem;
  }
}
.kfu-corp-s-read .s-read__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__container {
    display: block;
  }
}
.kfu-corp-s-read.leadgridCms-onlyInnerWorkspace .s-read__tab-list {
  height: auto !important;
  min-height: -webkit-fit-content !important;
  min-height: -moz-fit-content !important;
  min-height: fit-content !important;
}
.kfu-corp-s-read.leadgridCms-onlyInnerWorkspace .pin-spacer {
  height: auto !important;
  min-height: -webkit-fit-content !important;
  min-height: -moz-fit-content !important;
  min-height: fit-content !important;
}
.kfu-corp-s-read .s-read__tab-list {
  width: 17.25rem;
  background: #fff;
  border-radius: 0.25rem;
  padding: 1.75rem 2rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__tab-list {
    padding: 0.625rem 0.875rem 0.5rem;
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
    position: fixed;
    bottom: 5.25rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    left: 0;
    right: 0;
    z-index: 50;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    width: calc(100% - 2.5rem);
    margin: 0 1.25rem;
  }
}
.kfu-corp-s-read .s-read__tab-list.hidden {
  opacity: 0;
  visibility: hidden;
}
.kfu-corp-s-read .s-read__tab-itemLink {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  display: block;
  padding: 1.25rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__tab-itemLink {
    padding: unset;
    gap: 0.25rem;
  }
}
.kfu-corp-s-read .s-read__tab-itemLink::after {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__tab-itemLink::after {
    display: none;
  }
}
@media (any-hover: hover) {
  .kfu-corp-s-read .s-read__tab-itemLink:hover {
    border-bottom: 1px solid #4650d7;
  }
  .kfu-corp-s-read .s-read__tab-itemLink:hover::after {
    opacity: 0;
  }
  .kfu-corp-s-read .s-read__tab-itemLink:hover .s-read__tab-item-arrow {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    margin-top: -0.125rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .kfu-corp-s-read .s-read__tab-itemLink:hover .s-read__tab-item-arrow {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
.kfu-corp-s-read .s-read__tab-itemLink.is-active {
  border-bottom: 1px solid #4650d7;
}
.kfu-corp-s-read .s-read__tab-itemLink.is-active::after {
  opacity: 0;
}
.kfu-corp-s-read .s-read__tab-itemLink.is-active .s-read__tab-item-arrow {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  margin-top: -0.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__tab-itemLink.is-active .s-read__tab-item-arrow {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
.kfu-corp-s-read .s-read__tab-item-text {
  color: #4650d7;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__tab-item-text {
    font-size: 0.875rem;
    white-space: nowrap;
  }
}
.kfu-corp-s-read .s-read__tab-item-arrow {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  aspect-ratio: 8/6;
  width: 0.5rem;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background: #4650d7;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.kfu-corp-s-read .s-read__content {
  width: 49.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__content {
    width: 100%;
  }
}
.kfu-corp-s-read .s-read__lead {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__lead {
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-read .s-read__lead span {
  font-size: 3.5rem;
  line-height: 1;
  display: block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  margin-bottom: 2rem;
  color: #fff;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  letter-spacing: 0.08em;
  font-weight: 400;
  -webkit-text-stroke: 0.5px #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__lead span {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.kfu-corp-s-read .s-read__text {
  color: #fff;
  font-size: 1.375rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-read .s-read__text {
    line-height: 1.8;
    font-size: 0.9375rem;
    width: calc(100% + 0.375rem);
  }
}

html:has(.kfu-corp-s-read) .kfu-corp-s-pageFv::after {
  display: none;
}

.kfu-corp-s-cta2 {
  padding-top: 6.25rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta2 {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}
.kfu-corp-s-cta2 .s-cta2__link {
  position: relative;
  display: block;
  border-radius: 0.25rem;
  --after-x: -150%;
  overflow: hidden;
}
.kfu-corp-s-cta2 .s-cta2__link::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 210%;
  top: 0;
  left: 50%;
  opacity: 0.5;
  -webkit-transform: translateX(var(--after-x));
  transform: translateX(var(--after-x));
  background-image: url("/assets/kfu-corp/img/common/cta-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}
.kfu-corp-s-cta2.leadgridCms-onlyInnerWorkspace .s-cta2__content {
  margin: 0.9375rem;
}
.kfu-corp-s-cta2 .s-cta2__content {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-cta2 .s-cta2__content::after, .kfu-corp-s-cta2 .s-cta2__content::before {
  background-image: radial-gradient(circle, #fff 1px, transparent 1px 4px);
  z-index: 5;
}
.kfu-corp-s-cta2 .s-cta2__content::before {
  top: -0.25rem;
}
.kfu-corp-s-cta2 .s-cta2__content::after {
  bottom: -0.25rem;
}
.kfu-corp-s-cta2 .s-cta2__content .s-cta2__wrap {
  padding: 5.1875rem 2.5rem 6rem;
  position: relative;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta2 .s-cta2__content .s-cta2__wrap {
    padding: 2.5rem 1rem 1rem;
  }
}
.kfu-corp-s-cta2 .s-cta2__content .s-cta2__wrap::after, .kfu-corp-s-cta2 .s-cta2__content .s-cta2__wrap::before {
  background-image: radial-gradient(circle, #fff 1px, transparent 1px 4px);
  z-index: 5;
}
.kfu-corp-s-cta2 .s-cta2__content .s-cta2__wrap::before {
  left: -0.25rem;
}
.kfu-corp-s-cta2 .s-cta2__content .s-cta2__wrap::after {
  right: -0.25rem;
}
.kfu-corp-s-cta2 .s-cta2__title {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta2 .s-cta2__title {
    margin-bottom: unset;
  }
}
.kfu-corp-s-cta2 .c-h2-title__jp {
  color: #4650d7;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta2 .c-h2-title__jp {
    margin-bottom: 0.75rem;
  }
}
.kfu-corp-s-cta2 .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-cta2 .c-h2-title__en {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta2 .c-h2-title__en {
    font-size: 2.5rem;
    font-weight: 300;
  }
}
.kfu-corp-s-cta2 .s-cta2__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 0.25rem;
  overflow: hidden;
}
.kfu-corp-s-cta2 .s-cta2__image::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.1;
  z-index: 1;
}
.kfu-corp-s-cta2 .s-cta2__image img {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-s-cta2 .kfu-corp-c-buttonArrow {
  position: relative;
  margin-left: auto;
  margin-top: -1.5625rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta2 .kfu-corp-c-buttonArrow {
    margin-top: unset;
    width: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-cta2 .kfu-corp-c-buttonArrow::before {
    width: 1.25rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-s-cta2 .s-cta2__link:hover .s-cta2__image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  @-webkit-keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0);
      transform: translate(-50%, -50%) rotate(0);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-s-cta2 .s-cta2__link:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: 4s linear infinite arrow;
    animation: 4s linear infinite arrow;
  }
}

.kfu-corp-s-meoMv {
  padding: 3.75rem 0 4.6875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv {
    padding: 2rem 0 2.5rem;
  }
}
.kfu-corp-s-meoMv .kfu-corp-c-inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .kfu-corp-c-inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-meoMv .s-meoMv__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4.0625rem;
  }
}
.kfu-corp-s-meoMv .s-meoMv__logo {
  opacity: 0;
  aspect-ratio: 8267/3200;
  width: 5.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__logo {
    width: 3.875rem;
  }
}
.kfu-corp-s-meoMv .s-meoMv__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-s-meoMv .s-meoMv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__content {
    display: block;
  }
}
.kfu-corp-s-meoMv .s-meoMv__main {
  margin-top: 4.875rem;
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__main {
    padding-left: unset;
    margin-top: unset;
    width: 100%;
    margin-bottom: 2.5rem;
    padding: 0 0.1875rem;
  }
}
.kfu-corp-s-meoMv .s-meoMv__line {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 3.4375rem;
  left: 4.375rem;
  width: 41.5rem;
  aspect-ratio: 664/155;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__line {
    width: 18.75rem;
    left: -1.25rem;
    top: 3.125rem;
  }
}
.kfu-corp-s-meoMv .s-meoMv__title {
  margin-bottom: -0.3125rem;
  margin-top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__title {
    margin-bottom: 1.5rem;
    margin-top: unset;
  }
}
.kfu-corp-s-meoMv .c-h2-title__jp {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .c-h2-title__jp {
    font-size: 1rem;
  }
}
.kfu-corp-s-meoMv .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-meoMv .c-h2-title__en {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .c-h2-title__en {
    font-size: 1.5rem;
  }
}
.kfu-corp-s-meoMv .c-h2-title__subjp {
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  -webkit-text-stroke: 0.5px #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .c-h2-title__subjp {
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-meoMv .c-h2-title__subjp span {
  display: block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .c-h2-title__subjp span {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.kfu-corp-s-meoMv .s-meoMv__text {
  color: #fff;
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-meoMv .s-meoMv__right {
  width: 25.625rem;
  border-radius: 0.25rem;
  background: #fff;
  padding: 1.5rem 1.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__right {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}
.kfu-corp-s-meoMv .s-meoMv__right-read {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .s-meoMv__right-read {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-s-meoMv .kfu-corp-c-form .leadgrid-form__label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.kfu-corp-s-meoMv .leadgrid-form__input,
.kfu-corp-s-meoMv .kfu-corp-c-form .leadgrid-form__select > select,
.kfu-corp-s-meoMv .kfu-corp-c-form .leadgrid-form__textarea {
  padding: 0.5625rem 0.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-meoMv .leadgrid-form__input,
  .kfu-corp-s-meoMv .kfu-corp-c-form .leadgrid-form__select > select,
  .kfu-corp-s-meoMv .kfu-corp-c-form .leadgrid-form__textarea {
    padding: 0.6875rem 0.875rem 0.75rem;
  }
}
.kfu-corp-s-meoMv .beoYNV + div {
  margin-top: 0.875rem;
}
.kfu-corp-s-meoMv .leadgrid-form__label.-required:before {
  padding: 0.25rem 0.4375rem;
}
.kfu-corp-s-meoMv .leadgrid-form__label::before {
  padding: 0.25rem 0.4375rem;
}
.kfu-corp-s-meoMv .privacy {
  margin-top: 1.0625rem !important;
  font-size: 0.75rem !important;
}
.kfu-corp-s-meoMv .c-form__action {
  margin-top: 0.625rem;
}

.kfu-corp-s-assignment {
  padding-top: 5.3125rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment {
    padding-top: 2.5rem;
    padding-bottom: 2.25rem;
  }
}
.kfu-corp-s-assignment .s-assignment__inner {
  max-width: 78.125rem;
  padding: 0 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}
.kfu-corp-s-assignment .s-assignment__problem {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__problem {
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-s-assignment .s-assignment__lead {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__lead {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }
}
.kfu-corp-s-assignment .s-assignment__lead::before {
  background: #fff;
}
.kfu-corp-s-assignment .s-assignment__problem-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__problem-items {
    grid-template-columns: 1fr;
  }
}
.kfu-corp-s-assignment .s-assignment__problem-item:first-of-type::after {
  background-image: url("/assets/kfu-corp/img/meo/bg1.png");
}
.kfu-corp-s-assignment .s-assignment__problem-item:nth-of-type(2)::after {
  background-image: url("/assets/kfu-corp/img/meo/bg.png");
}
.kfu-corp-s-assignment .s-assignment__problem-item {
  padding: 2.5rem 1.375rem;
  border-radius: 0.25rem;
  position: relative;
  overflow: hidden;
}
.kfu-corp-s-assignment .s-assignment__problem-item::after {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  -webkit-filter: blur(1.25rem);
  filter: blur(1.25rem);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__problem-item {
    padding: 1.25rem 0.75rem;
  }
}
.kfu-corp-s-assignment .s-assignment__problem-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 2.0625rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__problem-title {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
  }
}
.kfu-corp-s-assignment .s-assignment__problem-title::before {
  content: "";
  display: inline-block;
  position: absolute;
  aspect-ratio: 1;
  left: 0;
  top: 0.5lh;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
  width: 1rem;
  border: 4px solid #fff;
  border-radius: 0.0625rem;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__problem-title::before {
    width: 0.75rem;
    left: 0.5rem;
    border: 3px solid #fff;
  }
}
.kfu-corp-s-assignment .s-assignment__problem-text {
  font-size: 1.125rem;
  color: #fff !important;
  line-height: 2;
  padding-left: 1.75rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__problem-text {
    margin-top: 0.3125rem;
    padding: 0 0.625rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}
.kfu-corp-s-assignment .s-assignment__arrow {
  margin-inline: auto;
  margin-bottom: 2rem;
  aspect-ratio: 12/48;
  width: 0.75rem;
  background-image: url("/assets/kfu-corp/img/common/down-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__arrow {
    margin-bottom: 1rem;
    aspect-ratio: 12/48;
    clip-path: inset(0.75rem 0 0 0);
    width: 0.75rem;
  }
}
.kfu-corp-s-assignment .s-assignment__main {
  background: #f2f2f2;
  border-radius: 0.25rem;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__main {
    padding: 2.5rem 1.25rem;
  }
}
.kfu-corp-s-assignment .s-assignment__sectionLabel {
  text-align: center;
  margin-bottom: 1.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #4650d7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__sectionLabel {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-assignment .s-assignment__sectionLabel::before {
  background: #4650d7;
}
.kfu-corp-s-assignment .s-assignment__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1.125rem;
  padding-bottom: 0.625rem;
  position: relative;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
}
.kfu-corp-s-assignment .s-assignment__title .sentence {
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__title .sentence {
    margin-bottom: 0.75rem;
  }
}
.kfu-corp-s-assignment .s-assignment__title-dec {
  pointer-events: none;
  position: absolute;
  aspect-ratio: 690/130;
  width: 43.125rem;
  bottom: 0;
  left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__title-dec {
    aspect-ratio: 9/2;
    bottom: 1rem;
    width: 22.0625rem;
    left: -2.8125rem;
  }
}
.kfu-corp-s-assignment .s-assignment__description {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__description {
    font-size: 0.9375rem;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-assignment .s-assignment__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-assignment .s-assignment__point {
  width: calc(25% - 1.875rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__point {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
  }
}
.kfu-corp-s-assignment .s-assignment__point-icon {
  max-width: 11.25rem;
  margin-bottom: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__point-icon {
    width: 6rem;
    margin-bottom: unset;
  }
}
.kfu-corp-s-assignment .s-assignment__point-text {
  text-align: center;
  font-size: 1.125rem;
  color: #4650d7;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__point-text {
    font-size: 0.9375rem;
    width: 50%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: left;
  }
}
.kfu-corp-s-assignment .s-assignment__note {
  text-align: center;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-assignment .s-assignment__note {
    text-align: left;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.kfu-corp-s-slider {
  padding-top: 4.0625rem;
  padding-bottom: 17.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-slider {
    padding-bottom: 5.625rem;
    padding-top: 2rem;
  }
}
.kfu-corp-s-slider .s-slider__title {
  margin-bottom: 2.875rem;
  text-align: center;
  font-size: 1.75rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-slider .s-slider__title {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-slider .s-slider__title span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  color: #fff;
  line-height: 1;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-slider .s-slider__title span {
    font-size: 2.5rem;
  }
}
.kfu-corp-s-slider .s-slider__logo-slider {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-slider .s-slider__logo-slider {
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-s-slider .swiper {
  overflow: visible !important;
}
.kfu-corp-s-slider .swiper-why {
  overflow: visible !important;
}
.kfu-corp-s-slider.leadgridCms-onlyInnerWorkspace .swiper-wrapper {
  -webkit-transform: unset !important;
  transform: unset !important;
}
.kfu-corp-s-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.kfu-corp-s-slider .swiper-slide {
  width: 10rem;
  aspect-ratio: 160/80;
  border-radius: 0.25rem;
  background: #fff;
  display: grid;
  place-content: center;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-slider .swiper-slide {
    width: 6rem;
    padding: 0.75rem;
    aspect-ratio: 96/48;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-slider .s-slider__logo-item-img {
    height: 1.5rem;
  }
}
.kfu-corp-s-slider .swiper-slide img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-slider .swiper-slide img {
    height: 100%;
  }
}
.kfu-corp-s-slider .s-slider__bottom-text {
  text-align: right;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-slider .s-slider__bottom-text {
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
}

.kfu-corp-s-case2 {
  background: #f2f2f2;
  padding-top: 2.9375rem;
  padding-bottom: 3.75rem;
  --color: #4650d7;
}
.kfu-corp-s-case2.--restart {
  --color: #1537e8;
}
.kfu-corp-s-case2.--restart .s-case2__title {
  margin-bottom: 6.6875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2.--restart .s-case2__title {
    margin-bottom: 3.125rem;
  }
}
.kfu-corp-s-case2.--restart .c-h2-title__jp {
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2.--restart .c-h2-title__jp {
    margin-bottom: unset;
  }
}
.kfu-corp-s-case2.--restart .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2.--restart .c-h2-title__en {
    font-size: 3rem;
  }
}
.kfu-corp-s-case2.--restart .s-case2__read {
  color: var(--color);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 {
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
  }
}
.kfu-corp-s-case2 .s-case2__inner {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-case2 .s-case2__title {
  margin-bottom: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__title {
    margin-bottom: 2.8125rem;
  }
}
.kfu-corp-s-case2 .c-h2-title__jp {
  color: var(--color);
}
.kfu-corp-s-case2 .c-h2-title__jp::before {
  background: var(--color);
}
.kfu-corp-s-case2 .s-case2__read {
  margin-bottom: 2rem;
  font-size: 1.75rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__read {
    font-size: 1.25rem;
    margin-bottom: 1.1875rem;
  }
}
.kfu-corp-s-case2 .s-case2__text {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-case2 .s-case2__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
.kfu-corp-s-case2 .s-case2__content-texts {
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__content-texts {
    width: 100%;
    padding: 1rem;
    background: #fff;
  }
}
.kfu-corp-s-case2 .s-case2__infos {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__infos {
    margin-top: unset;
    gap: 1.5rem;
  }
}
.kfu-corp-s-case2 .s-case2__info-label {
  padding: 0.4375rem 0.9375rem 0.3125rem;
  background: #1e1e1e;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__info-label {
    padding: 0.4375rem 0.8125rem 0.1875rem;
    font-size: 0.8125rem;
  }
}
.kfu-corp-s-case2 .s-case2__info-text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__info-text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-case2 .s-case2__content-right {
  width: 36.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__content-right {
    width: 100%;
  }
}
.kfu-corp-s-case2 .s-case2__figure {
  aspect-ratio: 584/329;
  margin-bottom: 1.5rem;
}
.kfu-corp-s-case2 .s-case2__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__company {
    gap: 0.75rem;
  }
}
.kfu-corp-s-case2 .s-case2__company-img {
  aspect-ratio: 160/80;
  width: 10rem;
  background: #fff;
  border-radius: 0.25rem;
  border: 1px solid #d2d2d2;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__company-img {
    padding: 0.75rem;
    width: 6rem;
    height: 3rem;
  }
}
.kfu-corp-s-case2 .s-case2__company-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.kfu-corp-s-case2 .s-case2__company-info {
  font-size: 1.125rem;
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case2 .s-case2__company-info {
    font-size: 0.8125rem;
  }
}

.kfu-corp-s-case3 {
  background: #f2f2f2;
  padding: 3.75rem 0 6.25rem;
  --color2: #6b74f3;
  --color: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case3 {
    padding: 1.875rem 0 2.5rem;
  }
}
.kfu-corp-s-case3.--restart {
  --color: #1537e8;
}
.kfu-corp-s-case3.--restart .c-card2__logo {
  border: unset;
}
.kfu-corp-s-case3 .s-case3__jp {
  color: var(--color);
}
.kfu-corp-s-case3 .s-case3__jp::before {
  background: var(--color2);
}
.kfu-corp-s-case3 .s-case3__main {
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case3 .s-case3__main {
    margin-bottom: 2.25rem;
  }
}
.kfu-corp-s-case3 .s-case3__items {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case3 .s-case3__items {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-case3 .kfu-corp-c-button {
  margin-left: auto;
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-case3 .kfu-corp-c-button {
    width: 100%;
  }
}

.kfu-corp-s-column2:not(:has(.s-column2__item)) {
  display: none;
}

.kfu-corp-s-column2 {
  background: #f2f2f2;
  padding: 6.25rem 0 0rem;
  --color: #4650d7;
}
.kfu-corp-s-column2.--restart {
  --color: #1537e8;
}
.kfu-corp-s-column2.--restart .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2.--restart .c-h2-title__en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 {
    padding: 2.5rem 0 0rem;
    overflow: hidden;
  }
}
.kfu-corp-s-column2 .s-column2__title {
  margin-bottom: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 .s-column2__title {
    margin-bottom: 2.8125rem;
  }
}
.kfu-corp-s-column2 .c-h2-title__jp {
  color: var(--color);
}
.kfu-corp-s-column2 .c-h2-title__jp::before {
  background: var(--color);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 .swiper {
    overflow: visible !important;
  }
}
.kfu-corp-s-column2 .s-column2__text {
  line-height: 2;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 .s-column2__text {
    margin-bottom: 3.4375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-column2 .s-column2__items-wrap {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 .s-column2__items-wrap {
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-column2 .s-column2__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 .s-column2__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 .s-column2__item {
    width: 19.4375rem;
  }
}
.kfu-corp-s-column2 .s-column2__bottoms {
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 .s-column2__bottoms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-column2 .kfu-corp-c-button {
  margin-inline: unset;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-column2 .kfu-corp-c-button {
    width: 100%;
  }
}
.kfu-corp-s-column2 .swiper-pagination-bullet {
  width: 3.9375rem !important;
}

.kfu-corp-s-plan {
  background: #f2f2f2;
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
  --color: #4650d7;
}
.kfu-corp-s-plan.--restart {
  --color: #1537e8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-plan.--restart {
    padding-bottom: 3rem;
  }
}
.kfu-corp-s-plan.--restart .c-h2-title__en {
  font-size: 5.5rem;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-plan.--restart .c-h2-title__en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-plan {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.kfu-corp-s-plan .s-plan__inner {
  position: relative;
  z-index: 3;
}
.kfu-corp-s-plan .s-plan__title {
  width: 22.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-plan .s-plan__title {
    width: 100%;
    margin-bottom: 2.8125rem;
  }
}
.kfu-corp-s-plan .c-h2-title__jp {
  color: var(--color);
}
.kfu-corp-s-plan .c-h2-title__jp::before {
  background: var(--color);
}
.kfu-corp-s-plan .s-plan__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.9375rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-plan .s-plan__content {
    display: block;
  }
}
.kfu-corp-s-plan .s-plan__items {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-plan .s-plan__items {
    width: 100%;
  }
}
.kfu-corp-s-plan .s-plan__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.kfu-corp-s-plan .s-plan__item {
  background: #fff;
  border-radius: 0.25rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-plan .s-plan__item {
    padding: 1.5rem 1rem;
  }
}
.kfu-corp-s-plan .s-plan__item-label {
  margin-bottom: 0.625rem;
  color: var(--color);
}
.kfu-corp-s-plan .s-plan__item-label::before {
  background: var(--color);
}
.kfu-corp-s-plan .s-plan__item-text {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-plan .s-plan__item-text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.kfu-corp-s-banner1 {
  background: #f2f2f2;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 {
    padding-bottom: 2.5rem;
  }
}
.kfu-corp-s-banner1 .s-banner1__inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 .s-banner1__inner {
    max-width: 37.5rem;
    padding: 0 0.5rem;
  }
}
.kfu-corp-s-banner1 .s-banner1__content {
  background-image: url("/assets/kfu-corp/img/meo/banner1-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.75rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 .s-banner1__content {
    padding: 2.5rem 1.5rem;
  }
}
.kfu-corp-s-banner1 .s-banner1__title {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 .s-banner1__title {
    margin-bottom: 1.25rem;
  }
}
.kfu-corp-s-banner1 .c-h2-title__jp {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 .c-h2-title__jp {
    font-size: 1rem;
  }
}
.kfu-corp-s-banner1 .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-banner1 .s-banner1__read {
  color: #fff;
  font-size: 2.5rem;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  line-height: 1.4;
  font-weight: 400;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  margin-bottom: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 .s-banner1__read {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-banner1 .s-banner1__read span {
  display: contents;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 .s-banner1__read span {
    display: block;
    -webkit-transform: skewX(-16deg);
    transform: skewX(-16deg);
    margin-bottom: 0.75rem;
  }
}
.kfu-corp-s-banner1 .s-banner1__text {
  color: #fff;
  font-size: 1rem;
  line-height: 2;
  width: 56.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 .s-banner1__text {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.kfu-corp-s-banner1 .kfu-corp-c-button {
  margin-inline: initial;
  margin-left: auto;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner1 .kfu-corp-c-button {
    margin-top: unset;
    width: 100%;
  }
}
.kfu-corp-s-banner1 .kfu-corp-c-button .text {
  max-width: 12.5rem;
}

.kfu-corp-s-banner2 {
  background: #f2f2f2;
}
.kfu-corp-s-banner2 .s-banner2__inner {
  max-width: 85.625rem;
  padding: 0 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner2__inner {
    max-width: 37.5rem;
    padding: 0 0.5rem;
  }
}
.kfu-corp-s-banner2 .s-banner2__content {
  background: #fff;
  padding: 3.75rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner2__content {
    padding: 2.5rem 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 1.5rem;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}
.kfu-corp-s-banner2 .s-banner2__content + .s-banner2__content {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner2__content + .s-banner2__content {
    margin-top: 1.5625rem;
  }
}
.kfu-corp-s-banner2 .s-banner2__texts {
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner2__texts {
    width: 100%;
  }
}
.kfu-corp-s-banner2 .s-banner1__title {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner1__title {
    margin-bottom: 1.25rem;
  }
}
.kfu-corp-s-banner2 .c-h2-title__jp {
  color: #4650d7;
}
.kfu-corp-s-banner2 .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-banner2 .s-banner2__read {
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  font-size: 2.5rem;
  font-weight: 400;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner2__read {
    -webkit-transform: unset;
    transform: unset;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.kfu-corp-s-banner2 .s-banner2__read span {
  display: contents;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner2__read span {
    margin-bottom: 0.25rem;
    display: block;
    -webkit-transform: skew(-16deg);
    transform: skew(-16deg);
  }
}
.kfu-corp-s-banner2 .s-banner2__text {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner2__text {
    font-size: 0.9375rem;
  }
}
.kfu-corp-s-banner2 .s-banner2__image {
  aspect-ratio: 1;
  width: 23.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-banner2 .s-banner2__image {
    max-width: 15rem;
    margin-inline: auto;
  }
}

.kfu-corp-s-flow {
  background: #f2f2f2;
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
  --color: #4650d7;
}
.kfu-corp-s-flow.--restart {
  padding-top: 1.875rem;
  --color: #1537e8;
  padding-bottom: unset;
}
.kfu-corp-s-flow.--restart .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow.--restart .c-h2-title__en {
    font-size: 3rem;
  }
}
.kfu-corp-s-flow.--restart .s-flow__stepTitle {
  color: var(--color);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.kfu-corp-s-flow .s-flow__title {
  margin-bottom: 6.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__title {
    margin-bottom: 2.8125rem;
  }
}
.kfu-corp-s-flow .c-h2-title__jp {
  color: var(--color);
}
.kfu-corp-s-flow .c-h2-title__jp::before {
  background: var(--color);
}
.kfu-corp-s-flow .s-flow__steps {
  overflow: hidden;
  position: relative;
}
.kfu-corp-s-flow .s-flow__steps::after {
  clip-path: inset(3.125rem 0% 3.125rem 0%);
  content: "";
  display: block;
  position: absolute;
  background-image: radial-gradient(circle, #4650d7 1px, transparent 1px);
  background-position: left top 6px;
  background-repeat: repeat-y;
  background-size: 2px 6px;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  left: 2.1875rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__steps::after {
    left: 1.5rem;
    clip-path: inset(3.125rem 0% 11.25rem 0%);
  }
}
.kfu-corp-s-flow .s-flow__stepItems {
  counter-reset: number 0;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  position: relative;
  z-index: 4;
}
.kfu-corp-s-flow .s-flow__stepItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.9375rem 0 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepItem {
    display: block;
    padding: 1.5rem 0 1rem;
    margin-top: -0.4375rem;
  }
}
.kfu-corp-s-flow .s-flow__stepItem::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 6.5625rem);
  height: 1px;
  background: #d2d2d2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepItem::after {
    width: calc(100% - 4rem);
  }
}
.kfu-corp-s-flow .s-flow__stepItem::before {
  content: "";
  display: block;
  position: absolute;
  left: 2.1875rem;
  top: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  aspect-ratio: 16/12;
  width: 1rem;
  -webkit-mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  mask-image: url("/assets/kfu-corp/img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background: var(--color);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepItem::before {
    top: 50%;
    -webkit-transform: translate(-50%, calc(-50% + 2.8125rem)) rotate(90deg);
    transform: translate(-50%, calc(-50% + 2.8125rem)) rotate(90deg);
    left: 1.5rem;
  }
}
.kfu-corp-s-flow .s-flow__stepItem:last-of-type::after {
  display: none;
}
.kfu-corp-s-flow .s-flow__stepItem:last-of-type::before {
  display: none;
}
.kfu-corp-s-flow .s-flow__stepHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  width: 34rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepHead {
    gap: 1rem;
    width: 100%;
    margin-bottom: unset;
  }
}
.kfu-corp-s-flow .s-flow__stepIcon {
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  width: 4.5rem;
  border-radius: 50%;
  border: 2px solid var(--color);
  background: #f2f2f2;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepIcon {
    border: 1px solid var(--color);
    width: 3rem;
  }
}
.kfu-corp-s-flow .s-flow__stepIcon .step {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepIcon .step {
    font-size: 0.75rem;
  }
}
.kfu-corp-s-flow .s-flow__stepIcon .number {
  margin-top: -0.1875rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepIcon .number {
    margin-top: -0.375rem;
  }
}
.kfu-corp-s-flow .s-flow__stepIcon .number::after {
  counter-increment: number 1;
  content: "0" counter(number);
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  display: block;
  letter-spacing: 0.04em;
  color: var(--color);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepIcon .number::after {
    font-size: 1rem;
  }
}
.kfu-corp-s-flow .s-flow__stepTitle {
  font-size: 1.75rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepTitle {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
.kfu-corp-s-flow .s-flow__stepText {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-flow .s-flow__stepText {
    width: 100%;
    padding-left: 4rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.kfu-corp-s-list {
  background: #f2f2f2;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-list {
    padding-bottom: 1.875rem;
  }
}
.kfu-corp-s-list .s-list__content {
  border-top: 2px solid #1e1e1e;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-list .s-list__content {
    padding-top: 3.4375rem;
    margin-left: -0.75rem;
    width: calc(100% + 1.5rem);
    padding: 3.4375rem 0.75rem 0;
  }
}
.kfu-corp-s-list .s-list__label {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-list .s-list__label {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-s-list .c-h2-title__jp {
  color: #4650d7;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-list .c-h2-title__jp {
    font-size: 1.125rem;
  }
}
.kfu-corp-s-list .c-h2-title__jp::before {
  background: #4650d7;
}
.kfu-corp-s-list .s-list__items-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-list .s-list__items-wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.kfu-corp-s-list .s-list__link {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-list .s-list__link {
    padding-bottom: 1.25rem;
  }
}
.kfu-corp-s-list .s-list__link .text {
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-list .s-list__link .text {
    font-size: 1.25rem;
  }
}
.kfu-corp-s-list .s-list__link .kfu-corp-c-buttonArrow {
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-list .s-list__link .kfu-corp-c-buttonArrow::before {
    width: 1.25rem;
  }
}
@media (any-hover: hover) {
  .kfu-corp-s-list .s-list__link:hover {
    color: #4650d7;
  }
  @-webkit-keyframes circle {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes circle {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .kfu-corp-s-list .s-list__link:hover .kfu-corp-c-buttonArrow::before {
    -webkit-animation: circle 4s linear infinite;
    animation: circle 4s linear infinite;
  }
}

.kfu-corp-s-faq {
  background: #f2f2f2;
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq {
    padding-top: 5rem;
    padding-bottom: 4.6875rem;
  }
}
.kfu-corp-s-faq .s-faq__container {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .s-faq__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}
.kfu-corp-s-faq .s-faq__texts {
  width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .s-faq__texts {
    width: 100%;
  }
}
.kfu-corp-s-faq .s-faq__title {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .s-faq__title {
    margin-bottom: 3rem;
  }
}
.kfu-corp-s-faq .c-h2-title__jp {
  color: #1537e8;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .c-h2-title__jp {
    margin-bottom: 0.25rem;
  }
}
.kfu-corp-s-faq .c-h2-title__jp::before {
  background: #1537e8;
}
.kfu-corp-s-faq .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .c-h2-title__en {
    font-size: 3rem;
  }
}
.kfu-corp-s-faq .s-faq__text {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .s-faq__text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-faq .s-faq__listItems {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .s-faq__listItems {
    width: 100%;
  }
}
.kfu-corp-s-faq .s-faq__item {
  border-top: 1px solid #d2d2d2;
}
.kfu-corp-s-faq .s-faq__item:not(:first-of-type) {
  border-bottom: 1px solid #d2d2d2;
}
.kfu-corp-s-faq .s-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 2.5rem;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .s-faq__question {
    text-align: left;
    padding: 1rem 0.75rem;
    gap: 1.25rem;
  }
}
.kfu-corp-s-faq .s-faq__question .text {
  font-size: 1.125rem;
  line-height: 2;
  width: 60%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
  color: #1e1e1e;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .s-faq__question .text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.kfu-corp-s-faq .s-faq__question .toggle {
  aspect-ratio: 1;
  width: 1rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.kfu-corp-s-faq .s-faq__question .toggle.is-active {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.kfu-corp-s-faq.leadgridCms-onlyInnerWorkspace .s-faq__answer {
  display: block !important;
}
.kfu-corp-s-faq .s-faq__answer {
  padding: 1.625rem 2rem;
  background: #fff;
  font-size: 1rem;
  line-height: 2;
  display: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-faq .s-faq__answer {
    padding: 1rem 0.75rem;
    line-height: 1.8;
    font-size: 0.875rem;
  }
}
.kfu-corp-s-outline2 {
  overflow: clip;
  padding: 7.5rem 0 7.5rem;
  background: #f2f2f2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 {
    padding: 5rem 0 3.125rem;
  }
}
.kfu-corp-s-outline2::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background: linear-gradient(90deg, #fff 0% calc(100% - 7.125rem), transparent calc(100% - 7.125rem) 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2::after {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(transparent));
    background: linear-gradient(#fff 0% calc(100% - 7.125rem), transparent calc(100% - 7.125rem) 100%);
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__inner {
    padding: 0;
    max-width: unset;
  }
}
.kfu-corp-s-outline2 .s-outline2__container {
  position: relative;
  z-index: 2;
}
.kfu-corp-s-outline2 .s-outline2__title {
  margin-bottom: 7.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__title {
    margin-bottom: 2.5rem;
    padding: 0 32px;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}
.kfu-corp-s-outline2 .c-h2-title__jp {
  color: #1537e8;
}
.kfu-corp-s-outline2 .c-h2-title__jp::before {
  background: #1537e8;
}
.kfu-corp-s-outline2 .c-h2-title__en {
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .c-h2-title__en {
    font-size: 2.5rem;
  }
}
.kfu-corp-s-outline2 .s-outline2__content {
  display: grid;
  grid-template-columns: 33.75rem 49vw;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__content {
    display: grid;
    grid-template-columns: 100%;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__table {
    padding: 0 32px;
  }
}
.kfu-corp-s-outline2 .s-outline2__listItems {
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__listItems {
    margin-top: unset;
  }
}
.kfu-corp-s-outline2 .s-outline2__item {
  padding: 0.75rem 0 1.4375rem;
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__item {
    padding: 0.5rem 0 0.875rem;
  }
}
.kfu-corp-s-outline2 .s-outline2__label {
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 0.625rem;
  color: #1537e8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__label {
    font-size: 0.8125rem;
    margin-bottom: 0.9375rem;
  }
}
.kfu-corp-s-outline2 .s-outline2__text {
  padding-left: 4.25rem;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__text {
    padding-left: 1.5rem;
    font-size: 0.875rem;
  }
}
.kfu-corp-s-outline2 .s-outline2__map {
  aspect-ratio: 713/654;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__map {
    aspect-ratio: 375/360;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.kfu-corp-s-outline2 .s-outline2__map::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  mix-blend-mode: saturation;
  z-index: 2;
  pointer-events: none;
}
.kfu-corp-s-outline2 .s-outline2__map::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #04116b;
  mix-blend-mode: screen;
  z-index: 3;
  pointer-events: none;
}
.kfu-corp-s-outline2 .s-outline2__map > div {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__map > div {
    margin-top: -4.125rem;
  }
}
.kfu-corp-s-outline2 .s-outline2__button-inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__button-inner {
    display: block;
    max-width: 37.5rem;
    padding: 0 32px;
    margin-inline: auto;
    width: 100%;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}
.kfu-corp-s-outline2 .s-outline2__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.kfu-corp-s-outline2 .s-outline2__button-wrap {
  position: relative;
  z-index: 3;
  margin-top: -4rem;
  padding: 0.5rem;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: -0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .s-outline2__button-wrap {
    margin-top: unset;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-outline2 .kfu-corp-c-button .text {
    font-size: 0.9375rem;
  }
}

.kfu-corp-s-restartWhy {
  padding: 7.5rem 0 21.6875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy {
    padding-top: 5rem;
    padding-bottom: 6.0625rem;
  }
}
.kfu-corp-s-restartWhy .s-restartWhy__head {
  margin-bottom: 6.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__head {
    margin-bottom: 3.4375rem;
  }
}
.kfu-corp-s-restartWhy .c-h2-title__jp {
  color: #fff;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .c-h2-title__jp {
    margin-bottom: 0.625rem;
  }
}
.kfu-corp-s-restartWhy .c-h2-title__jp::before {
  background: #fff;
}
.kfu-corp-s-restartWhy .c-h2-title__en {
  color: #fff;
  text-transform: unset;
  font-size: 5.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .c-h2-title__en {
    font-size: 3rem;
  }
}
.kfu-corp-s-restartWhy .black {
  color: #fff;
}
.kfu-corp-s-restartWhy .s-restartWhy__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7.5rem;
  counter-reset: number 0;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__list {
    gap: 2.5rem;
    padding-left: unset;
  }
}
.kfu-corp-s-restartWhy .s-restartWhy__number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
  width: 4.5rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__number {
    width: 3rem;
    margin-right: -0.75rem;
  }
}
.kfu-corp-s-restartWhy .s-restartWhy__number::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-mask-image: url("/assets/kfu-corp/img/top/number-dec.png");
  mask-image: url("/assets/kfu-corp/img/top/number-dec.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.kfu-corp-s-restartWhy .s-restartWhy__number::after {
  counter-increment: number 1;
  content: "0" counter(number);
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__number::after {
    font-size: 1.25rem;
  }
}
.kfu-corp-s-restartWhy .s-restartWhy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__content {
    display: block;
    margin-top: -1.875rem;
  }
}
.kfu-corp-s-restartWhy .s-restartWhy__image {
  width: 21.25rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__image {
    width: 12.8125rem;
    margin-inline: auto;
    margin-bottom: 1.75rem;
  }
}
.kfu-corp-s-restartWhy .s-restartWhy__texts {
  width: 50%;
  padding-right: 3.75rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__texts {
    padding-right: unset;
    width: 100%;
  }
}
.kfu-corp-s-restartWhy .s-restartWhy__subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.kfu-corp-s-restartWhy .s-restartWhy__text {
  color: #fff;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartWhy .s-restartWhy__text {
    line-height: 1.8;
    font-size: 0.9375rem;
    width: calc(100% + 0.625rem);
  }
}

.kfu-corp-s-restartReason {
  position: relative;
  z-index: 4;
  padding-top: 2.5rem;
  background: #f2f2f2;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason {
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__head {
  margin-bottom: 5.9375rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__head {
    margin-bottom: 1.25rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__head::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 843/228;
  width: 52.6875rem;
  background-image: url("/assets/kfu-corp/img/restart/reason-dec.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__head::after {
    width: 27.25rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__lead {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 400;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  color: #1537e8;
  line-height: 1;
  position: relative;
  z-index: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__lead {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__lead span {
  display: contents;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__lead span {
    display: block;
    -webkit-transform: skewX(-16deg);
    transform: skewX(-16deg);
    margin-bottom: 0.625rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__title {
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  color: #1537e8;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  position: relative;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  z-index: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__title {
    font-size: 1.5rem;
    -webkit-transform: unset;
    transform: unset;
  }
}
.kfu-corp-s-restartReason .s-restartReason__title span {
  display: contents;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__title span {
    display: block;
    -webkit-transform: skewX(-16deg);
    transform: skewX(-16deg);
    margin-bottom: 0.875rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5625rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__content {
    display: block;
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__images {
  aspect-ratio: 1;
  width: 37.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__images {
    margin-left: -0.75rem;
    width: calc(100% + 1.5rem);
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__items {
  position: absolute;
  left: 50%;
  top: 4.8125rem;
  bottom: 3.5rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__items {
    top: 2.6875rem;
    bottom: 1.125rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 31.25rem;
  margin-inline: auto;
  margin-bottom: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__item-wrap {
    width: 18.4375rem;
    margin-bottom: 2rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__item {
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 12.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(0.25rem);
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__item {
    width: 7.5rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__item--inline {
  margin-inline: auto;
}
.kfu-corp-s-restartReason .s-restartReason__item-icon {
  aspect-ratio: 138/101;
  height: 6.25rem;
  margin-inline: auto;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__item-icon {
    height: 3.75rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__item-icon img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  -o-object-position: center;
  object-position: center;
}
.kfu-corp-s-restartReason .s-restartReason__item-title {
  text-align: center;
  font-size: 1rem;
  line-height: 1.2;
  color: #1537e8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__item-title {
    font-size: 0.625rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__image {
  height: 100%;
}
.kfu-corp-s-restartReason .s-restartReason__image img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-s-restartReason .s-restartReason__texts {
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: 5.625rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__texts {
    width: 100%;
    margin-top: unset;
    gap: 0.9375rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__item-text {
  padding-bottom: 1.5rem;
  position: relative;
  background-image: radial-gradient(circle, #d2d2d2 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 6px 2px;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__item-text {
    padding-bottom: 1rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__subtitle {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: #1537e8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }
}
.kfu-corp-s-restartReason .s-restartReason__text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__text {
    font-size: 0.9375rem;
    width: calc(100% + 0.625rem);
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__text::after {
    background-size: cover;
  }
}
.kfu-corp-s-restartReason .s-restartReason__point {
  background-image: radial-gradient(circle, #d2d2d2 1px, transparent 1px), radial-gradient(circle, #d2d2d2 1px, transparent 1px), radial-gradient(circle, #d2d2d2 1px, transparent 1px), radial-gradient(circle, #d2d2d2 1px, transparent 1px);
  background-position: left top, right top 8px, left bottom, left top 6px;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 6px 2px, 2px 6px, 6px 2px, 2px 6px;
}
.kfu-corp-s-restartReason .s-restartReason__point-wrap {
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__point-wrap {
    padding: 1.5rem 1rem;
    display: block;
  }
}
.kfu-corp-s-restartReason .s-restartReason__point-label {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  width: 28%;
  font-size: 1.5rem;
  font-family: "Outfit", sans-serif;
  color: #1537e8;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__point-label {
    padding-bottom: 0.875rem;
    font-size: 1rem;
    width: 100%;
    background-image: radial-gradient(circle, #d2d2d2 1px, transparent 1px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 6px 2px;
  }
}
.kfu-corp-s-restartReason .s-restartReason__point-text {
  margin-left: 3.75rem;
  width: 50rem;
  padding-left: 2rem;
  font-size: 1.25rem;
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__point-text {
    width: 100%;
    padding-top: 0.875rem;
    padding-left: unset;
    font-size: 1rem;
    margin-left: unset;
    line-height: 1.8;
  }
}
.kfu-corp-s-restartReason .s-restartReason__point-text::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 2px;
  background-image: url("/assets/kfu-corp/img/restart/line.svg");
  background-repeat: repeat-y;
  background-size: cover;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartReason .s-restartReason__point-text::after {
    width: 100%;
    top: 0;
    left: 0;
    height: 3px;
    right: 0;
    background-image: url("/assets/kfu-corp/img/restart/line-sp.svg");
    background-repeat: repeat-x;
    background-size: cover;
  }
}

.kfu-corp-s-restartPro {
  padding-top: 21.875rem;
  padding-bottom: 21.875rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro {
    padding-top: 6.875rem;
    padding-bottom: 6.875rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__head {
  text-align: center;
  margin-bottom: 2.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__head {
    margin-bottom: 1.5rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__head::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 560/240;
  width: 40rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url("/assets/kfu-corp/img/restart/restart_decoration_1.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__head::after {
    width: 21.875rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__title {
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__title {
    font-size: 1.5rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__title span {
  display: block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__title span {
    margin-bottom: 0.625rem;
  }
}
.kfu-corp-s-restartPro .swiper-pro {
  overflow: visible;
}
.kfu-corp-s-restartPro .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .swiper-wrapper {
    gap: 0.5rem;
  }
}
.kfu-corp-s-restartPro .swiper-initialized .swiper-wrapper {
  gap: unset !important;
}
.kfu-corp-s-restartPro .swiper-slide {
  height: auto;
  width: 23.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .swiper-slide {
    width: 19.4375rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__card {
  height: 100%;
  background: #fff;
  border-radius: 0.25rem;
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__card {
    padding: 1.25rem 1.5rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__card-title {
  margin-left: -0.9375rem;
  position: relative;
  color: #1537e8;
  padding-left: 2.75rem;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__card-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    padding-left: 2rem;
    margin-left: -0.75rem;
    width: calc(100% + 1.5rem);
  }
}
.kfu-corp-s-restartPro .s-restartPro__card-title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  margin-left: 0.625rem;
  top: 0.625rem;
  aspect-ratio: 1;
  width: 1rem;
  border-radius: 0.0625rem;
  border: 4px solid #1537e8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__card-title::before {
    width: 0.75rem;
    margin-left: 0.5rem;
    top: 0.5rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__card-text {
  font-size: 1rem;
  line-height: 1.8;
  padding-bottom: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__card-text {
    width: calc(100% + 0.375rem);
    font-size: 0.9375rem;
    padding-bottom: 1.5rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__card-text::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-image: url("/assets/kfu-corp/img/restart/item-line.svg");
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  pointer-events: none;
  left: 0;
}
.kfu-corp-s-restartPro .s-restartPro__fit-label {
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2;
  color: #1537e8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__fit-label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
}
.kfu-corp-s-restartPro .s-restartPro__fit-text {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .s-restartPro__fit-text {
    font-size: 0.9375rem;
  }
}
.kfu-corp-s-restartPro .swiper-progress {
  margin-top: 3rem;
  position: relative;
  width: 100%;
  height: 0.125rem;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartPro .swiper-progress {
    margin-top: 2rem;
  }
}
.kfu-corp-s-restartPro .swiper-progress .swiper-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

@media screen and (min-width: 1799px) {
  .kfu-corp-s-restartMv .kfu-corp-c-inner {
    max-width: 120rem;
    padding: 0 8rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.kfu-corp-s-restartMv .s-restartMv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 11.25rem 0 6.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  min-height: 100svh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__container {
    padding: 7.5rem 0 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.kfu-corp-s-restartMv .s-restartMv__texts {
  width: 45rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__texts {
    display: contents;
  }
}
.kfu-corp-s-restartMv .s-restartMv__texts-title {
  color: #fff;
  font-size: 4.3125rem;
  font-weight: 400;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__texts-title {
    font-size: 1.8125rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% + 1.25rem);
    gap: 0.625rem;
    margin-bottom: 2.8125rem;
    margin-left: 1.25rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__texts-title .regular {
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__texts-title .regular {
    font-size: 1.6875rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__texts-title .skew {
  display: inline-block;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
}
.kfu-corp-s-restartMv .s-restartMv__texts-title .small {
  display: inline-block;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__texts-title .small {
    font-size: 0.875rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__texts-title .normal {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__texts-title .normal {
    font-size: 1.1875rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__texts-text {
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__texts-text {
    font-size: 1rem;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
.kfu-corp-s-restartMv .s-restartMv__images {
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  -webkit-transform: translateX(1.25rem);
  transform: translateX(1.25rem);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__images {
    width: 100%;
    height: 20.625rem;
    -webkit-box-flex: unset;
    -ms-flex-positive: unset;
    flex-grow: unset;
    -webkit-transform: unset;
    transform: unset;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 4.375rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__content {
  aspect-ratio: 599/588;
  width: 37.4375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__content {
    aspect-ratio: 1;
    width: 22.5rem;
    top: 48%;
  }
}
.kfu-corp-s-restartMv .s-restartMv__title {
  font-size: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 100/20;
  width: 6.25rem;
  z-index: 10;
  background-image: url("/assets/kfu-corp/img/restart/restart-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__title {
    width: 3.875rem;
    top: 52%;
    left: 50.3%;
  }
}
.kfu-corp-s-restartMv .s-restartMv__items {
  width: 100%;
  height: 100%;
}
.kfu-corp-s-restartMv .s-restartMv__item-wrap {
  aspect-ratio: 1;
  width: 9.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__item-wrap {
    width: 5.875rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__item-wrap--1 {
  margin-inline: auto;
}
.kfu-corp-s-restartMv .s-restartMv__item {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  border-radius: 50%;
  border: 1px solid #fff;
  pointer-events: auto;
  position: relative;
  gap: 0.25rem;
}
.kfu-corp-s-restartMv .s-restartMv__item::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("/assets/kfu-corp/img/restart/item-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.9;
}
.kfu-corp-s-restartMv .s-restartMv__item-icon {
  width: 4.8125rem;
  position: relative;
  margin-inline: auto;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__item-icon {
    width: 2.9375rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__item-icon img {
  -o-object-fit: contain;
  object-fit: contain;
}
.kfu-corp-s-restartMv .s-restartMv__item-title {
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  line-height: 1.2;
  min-height: 2.8125rem;
  display: grid;
  place-content: center;
  z-index: 3;
  margin-bottom: -0.625rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__item-title {
    font-size: 0.5875rem;
    min-height: 1.5625rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__items-container {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__items-container {
    gap: 0.625rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__items-container--1 {
  margin-top: -5rem;
  max-width: 31.75rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__items-container--1 {
    max-width: 19.4375rem;
    margin-bottom: 1.5625rem;
    margin-top: -2.625rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__items-container--2 {
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__items-container--2 {
    max-width: 22.875rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__items-container--3 {
  max-width: 22.3125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__items-container--3 {
    max-width: 13.625rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__image {
  mix-blend-mode: plus-lighter;
  position: relative;
  pointer-events: none;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.kfu-corp-s-restartMv .s-restartMv__image canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__image canvas {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.kfu-corp-s-restartMv .s-restartMv__scroll {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  bottom: 2.5rem;
  right: -3.125rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__scroll {
    position: relative;
    bottom: unset;
    right: unset;
    margin-left: auto;
    margin-right: -0.625rem;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 3.125rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__scroll-text {
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  font-size: 1rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__scroll-text {
    font-size: 0.75rem;
  }
}
.kfu-corp-s-restartMv .s-restartMv__scroll-arrow {
  aspect-ratio: 16/12;
  width: 1rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .kfu-corp-s-restartMv .s-restartMv__scroll-arrow {
    width: 0.6875rem;
  }
}

.kfu-corp-c-restartCta {
  padding-top: 18.125rem;
  overflow: clip;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta {
    padding-top: 9.375rem;
    padding-bottom: 2.5rem;
  }
}
.kfu-corp-c-restartCta .c-restartCta__content {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.8125rem;
  padding: 3.75rem 4.125rem 3.125rem;
  border-radius: 0.375rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 4rem 1rem;
    gap: unset;
    margin-left: -0.75rem;
    width: calc(100% + 1.5rem);
    margin-bottom: 1.875rem;
  }
}
.kfu-corp-c-restartCta .c-restartCta__content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__content-left {
    display: contents;
  }
}
.kfu-corp-c-restartCta .c-restartCta__content-label {
  color: #1537e8;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__content-label {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 0.875rem;
  }
}
.kfu-corp-c-restartCta .c-restartCta__content-label::before {
  background: #1537e8;
}
.kfu-corp-c-restartCta .c-restartCta__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}
.kfu-corp-c-restartCta .c-restartCta__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__buttons {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 2rem;
    grid-template-columns: 1fr;
  }
}
.kfu-corp-c-restartCta .c-restartCta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid #d2d2d2;
  border-radius: 0.375rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
  cursor: pointer;
  background: transparent;
}
.kfu-corp-c-restartCta .c-restartCta__button .circle {
  border: 1px solid #131313;
  width: 1.5rem;
  background: transparent;
  height: 1.5rem;
  min-width: unset;
  border-radius: 50%;
  position: relative;
}
.kfu-corp-c-restartCta .c-restartCta__button .circle::after {
  content: "";
  position: absolute;
  background-color: unset;
  background: radial-gradient(#fff 0 0.25rem, #131313 0.25rem 100%);
  width: 1.5rem;
  height: 1.5rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
  opacity: 0;
}
.kfu-corp-c-restartCta .c-restartCta__button .text {
  color: #1e1e1e;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: 0.3s ease-out all;
  transition: 0.3s ease-out all;
}
.kfu-corp-c-restartCta .c-restartCta__button.active {
  border: 1px solid #131313;
}
.kfu-corp-c-restartCta .c-restartCta__button.active .circle::after {
  opacity: 1;
}
.kfu-corp-c-restartCta .c-restartCta__button.active .text {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__tels-wrap {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
}
.kfu-corp-c-restartCta .c-restartCta__telBox .c-dottedLine__inner {
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__telBox .c-dottedLine__inner {
    padding: 1.5rem 1rem;
  }
}
.kfu-corp-c-restartCta .c-restartCta__telLabel {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__telLabel {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.kfu-corp-c-restartCta .c-restartCta__tels {
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__tels {
    pointer-events: auto;
    margin-bottom: 1.5625rem;
    font-size: 1.75rem;
    margin-inline: auto;
  }
}
.kfu-corp-c-restartCta .c-restartCta__tels .number {
  position: relative;
  padding-bottom: 0.1875rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__tels .number {
    padding-bottom: 0.0625rem;
  }
}
.kfu-corp-c-restartCta .c-restartCta__tels .number::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1e1e1e;
}
.kfu-corp-c-restartCta .c-restartCta__time {
  padding: 0.4375rem 0.75rem 0.3125rem;
  background: #1e1e1e;
  border-radius: 0.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: -1.5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__time {
    margin-top: unset;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__forms {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-bottom: 2rem;
  }
}
.kfu-corp-c-restartCta .c-restartCta__form {
  display: none;
}
.kfu-corp-c-restartCta .c-restartCta__form.active {
  display: block;
}
.kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__input,
.kfu-corp-c-restartCta .c-restartCta__form .kfu-corp-c-form .leadgrid-form__select > select,
.kfu-corp-c-restartCta .c-restartCta__form .kfu-corp-c-form .leadgrid-form__textarea,
.kfu-corp-c-restartCta .c-restartCta__form select,
.kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__radio label,
.kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__checkbox label {
  padding: 0.5625rem 0.875rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__input,
  .kfu-corp-c-restartCta .c-restartCta__form .kfu-corp-c-form .leadgrid-form__select > select,
  .kfu-corp-c-restartCta .c-restartCta__form .kfu-corp-c-form .leadgrid-form__textarea,
  .kfu-corp-c-restartCta .c-restartCta__form select,
  .kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__radio label,
  .kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__checkbox label {
    padding: 0.6875rem 0.875rem 0.75rem;
  }
}
.kfu-corp-c-restartCta .c-restartCta__form .beoYNV + div {
  margin-top: 0.875rem;
}
.kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__label.-required:before {
  padding: 0.25rem 0.4375rem;
}
.kfu-corp-c-restartCta .c-restartCta__form .leadgrid-form__label::before {
  padding: 0.25rem 0.4375rem;
}
.kfu-corp-c-restartCta .c-restartCta__form .privacy {
  margin-top: 1.0625rem !important;
  font-size: 0.75rem !important;
}
.kfu-corp-c-restartCta .c-restartCta__form .c-form__action {
  margin-top: 0.625rem;
  background: #1537e8 !important;
}
.kfu-corp-c-restartCta .c-restartCta__form .leadgrid-c-button {
  border: unset !important;
}
.kfu-corp-c-restartCta .c-restartCta__recruit {
  overflow: hidden;
  border-radius: 0.25rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .kfu-corp-c-restartCta .c-restartCta__recruit {
    margin-bottom: 2.5rem;
  }
}
.kfu-corp-c-restartCta.leadgridCms-onlyInnerWorkspace .c-restartCta__form {
  background-color: #ccc;
  height: 6.25rem;
  width: 100%;
  display: block !important;
  margin-top: 3.125rem !important;
}