@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --text-color: #000000;
  --bg-color: #222222;
  --bg-color-light: #f5f5f5;
  --dark-gray: #333333;
  --gray: #555555;
  --light-gray: #888888;
  --very-light-gray: #cccccc;
  --white: #ffffff;
  --red: #f00;
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-ja-min: 'Shippori Antique', sans-serif;
  --font-en: 'Special Gothic Expanded One', sans-serif;
  --line-height-base: 1.8;
  --hover-transition: 0.3s;
  --half-leading: calc((1lh - 1em) / 2);
}

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  block-size: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  background: var(--text-color);
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 400;
  line-break: strict;
  line-height: var(--line-height-base);
  max-inline-size: 100vw;
  min-block-size: 100vh;
  min-block-size: 100svb;
  min-inline-size: 0px;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  overflow-x: clip;
  word-break: normal; /* 単語の分割はデフォルトに依存 */
}
body.no-scroll {
  overflow: hidden;
}
body.is-career-support {
  background: var(--white);
  color: var(--text-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--hover-transition);
}
a:focus-visible {
  cursor: pointer;
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
    text-decoration: none;
  }
}

:where(:-moz-any-link) {
  text-decoration-color: color-mix(in srgb, currentcolor, transparent 40%);
  text-underline-offset: 0.25em;
}

:where(:any-link) {
  text-decoration-color: color-mix(in srgb, currentcolor, transparent 40%);
  text-underline-offset: 0.25em;
}

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

img,
svg {
  block-size: 100%;
  inline-size: 100%;
  vertical-align: middle;
}

img {
  block-size: 100%;
  font-style: italic; /* altテキストを斜体に設定 */
  inline-size: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

img[src*=".gif"] {
  transition: none;
  will-change: auto;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  color: inherit;
  font: inherit;
  padding: 0;
}

button {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  padding: 0;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

*:focus-visible {
  outline: auto solid oklch(60% 0.4 240deg);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media (pointer: coarse) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:where(ul, ol) {
  list-style-type: "";
  padding: unset;
}

:where(:-moz-any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(dialog) {
  background-color: unset;
  block-size: unset;
  border: unset;
  color: unset;
  inline-size: unset;
  max-block-size: unset;
  max-inline-size: unset;
  overflow: unset;
  padding: unset;
}

:where([popover]) {
  background-color: unset;
  block-size: unset;
  border: unset;
  color: unset;
  inline-size: unset;
  overflow: unset;
  padding: unset;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after,
  ::backdrop {
    animation-delay: 0s !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: scroll !important;
    scroll-behavior: auto !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
  }
  img[src*=".gif"] {
    animation-duration: unset !important;
    animation-iteration-count: unset !important;
  }
}
.scroller {
  overflow: auto;
  overscroll-behavior-block: contain;
}

/* モーダル開時に背景のスクロールを防ぐ */
html:has(dialog[open]) {
  overflow: hidden;
}

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
}
summary::-webkit-details-marker {
  display: none;
}

@media (scripting: none) {
  .c-loading {
    display: none;
  }
}
.c-loading {
  z-index: calc(infinity);
}

[id],
:focus {
  scroll-margin-block-start: 100px;
}

/* --------------------------------------------
  基本のルート設定（全体に影響するテキストの折り返しや空白処理）
--------------------------------------------- */
:where(:root) {
  text-spacing-trim: trim-start;
  line-break: strict;
  overflow-wrap: anywhere;
  text-autospace: normal;
}
:where(:root):lang(ja) {
  font-kerning: none;
}
:where(:root):lang(en) {
  font-kerning: normal;
  text-wrap: pretty;
}

.l-drawer__icon {
  isolation: isolate;
  mix-blend-mode: exclusion;
  position: fixed;
  right: 24px;
  top: 12px;
  z-index: 40;
}
@media screen and (min-width: 1024px) {
  .l-drawer__icon {
    display: none;
  }
}
.l-drawer__icon.-active .l-drawer__icon--bar:nth-of-type(1) {
  top: 22px;
  transform: rotate(-30deg);
}
.l-drawer__icon.-active .l-drawer__icon--bar:nth-of-type(2) {
  top: 22px;
  transform: rotate(30deg);
}
.l-drawer__icon--bars {
  block-size: 40px;
  display: block;
  inline-size: 56px;
  position: relative;
  z-index: 41;
}
.l-drawer__icon--bar {
  background: var(--white);
  block-size: 1px;
  inline-size: 56px;
  left: 50%;
  position: absolute;
  top: 17px;
  transition: transform var(--hover-transition) linear, top var(--hover-transition) linear;
  translate: -50%;
}
.l-drawer__icon--bar:nth-of-type(2) {
  top: 27px;
}

.l-drawer__content {
  background: var(--text-color);
  block-size: 100vh;
  block-size: 100dvh;
  inline-size: 100%;
  padding-block-start: 40px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 600ms cubic-bezier(0.8, 0, 0.4, 1), visibility 600ms cubic-bezier(0.8, 0, 0.4, 1);
  visibility: hidden;
  z-index: 39;
}
.l-drawer__content.-active {
  transform: translateX(0);
  visibility: visible;
}

.l-drawer__inner {
  block-size: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow: scroll;
  padding-block-end: 80px;
  padding-block-start: 90px;
  padding-inline: 8.2051282051vw;
}

.l-drawer__logo {
  display: block;
  margin-inline: auto;
}
.l-drawer__logo svg {
  fill: var(--white);
}

.l-drawer__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  row-gap: 32px;
  -moz-column-gap: 22px;
       column-gap: 22px;
}

.l-drawer__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block-end: 16px;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
.l-drawer__link:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-drawer__link:hover {
    opacity: 0.6;
  }
}

.l-drawer__list--en {
  font-family: var(--font-en);
  font-size: 2.8rem;
  line-height: 120%;
  white-space: nowrap;
}

.l-drawer__list--ja {
  font-family: var(--font-ja-min);
  font-size: 1.6rem;
  line-height: 120%;
}

.l-footer {
  background: var(--bg-color);
  margin-inline: auto;
  padding-block: clamp(8.2rem, 6.789rem + 3.619vw, 12rem) clamp(5.6rem, 4.709rem + 2.286vw, 8rem);
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.l-footer__contents {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (min-width: 768px) {
  .l-footer__contents {
    flex-direction: row;
    justify-content: space-between;
  }
}

.l-footer__headWrap {
  display: flex;
  flex-direction: column;
  gap: 61px;
}
@media screen and (min-width: 768px) {
  .l-footer__headWrap {
    gap: 63px;
  }
}

.l-footer__menuWrap {
  display: flex;
  flex-direction: column;
  gap: clamp(5.6rem, 5.303rem + 0.762vw, 6.4rem);
}
@media screen and (max-width: 767px) {
  .l-footer__menuWrap {
    margin-inline: 8px;
  }
}

.l-footer__logo a {
  aspect-ratio: 205/46;
  display: block;
  inline-size: clamp(20.5rem, 14.334rem + 15.81vw, 37.1rem);
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.l-footer__logo a:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-footer__logo a:hover {
    opacity: 0.6;
  }
}

.l-footer__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 23px;
  -moz-column-gap: clamp(2.6rem, 1.226rem + 3.524vw, 6.3rem);
       column-gap: clamp(2.6rem, 1.226rem + 3.524vw, 6.3rem);
}
@media screen and (min-width: 1024px) {
  .l-footer__lists {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__lists {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__linkWrap {
    margin-block-start: 24px;
  }
}

.l-menu__banner {
  aspect-ratio: 342/83;
  border-radius: 6px;
  box-shadow: 2.863px 2.863px 7.157px 0 rgba(0, 0, 0, 0.25);
  display: block;
  inline-size: min(342px, 100%);
  overflow: hidden;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
@media screen and (min-width: 768px) {
  .l-menu__banner {
    aspect-ratio: 362/83;
    inline-size: min(362px, 100%);
  }
}
.l-menu__banner:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-menu__banner:hover {
    opacity: 0.6;
  }
}
.l-menu__banner picture {
  block-size: 100%;
  inline-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-footer__privacy {
  font-size: 1.4rem !important;
}
@media screen and (min-width: 768px) {
  .l-footer__privacy {
    font-size: 1.2rem !important;
  }
}

.l-footer-recruit {
  background: var(--bg-color);
  margin-inline: auto;
  padding-block: clamp(5.6rem, 4.709rem + 2.286vw, 8rem) 56px;
}

.l-footer-recruit__contents {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(5.6rem, 4.709rem + 2.286vw, 8rem);
}

.l-footer-recruit__logo a {
  aspect-ratio: 256/58;
  display: block;
  inline-size: clamp(25.6rem, 21.329rem + 10.952vw, 37.1rem);
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.l-footer-recruit__logo a:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-footer-recruit__logo a:hover {
    opacity: 0.6;
  }
}

.l-footer-recruit__copyright {
  color: var(--light-gray);
  font-family: var(--font-ja-min);
  font-size: 12px;
  line-height: normal;
  text-align: center;
}

.l-footer-recruit.--career .l-footer-recruit__logo {
  color: var(--white);
}

/*----------------------------------
    通常ヘッダー
-----------------------------------*/
.l-header {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header {
    background: var(--text-color);
    block-size: 90px;
    display: block;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    isolation: isolate;
    mix-blend-mode: exclusion;
    padding-inline: 20px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
  }
}

.l-header__wrap {
  block-size: inherit;
  position: fixed;
  right: clamp(2rem, -0.971rem + 7.619vw, 10rem);
  top: 0;
}
@media screen and (min-width: 1920px) {
  .l-header__wrap {
    right: 8.3vw;
  }
}

.l-header__logo {
  aspect-ratio: 172/40;
  display: block;
  inline-size: clamp(11.2rem, 8.971rem + 5.714vw, 17.2rem);
  isolation: isolate;
  left: 24px;
  mix-blend-mode: exclusion;
  position: fixed;
  top: 18px;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
  z-index: 999999;
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    left: clamp(2rem, -0.971rem + 7.619vw, 10rem);
    top: 40px;
  }
}
@media screen and (min-width: 1920px) {
  .l-header__logo {
    left: 8.3vw;
  }
}
.l-header__logo:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.6;
  }
}
.l-header__logo {
  /* careerページ用：白背景でもmix-blend-mode: exclusionを適用 */
}
.l-header__logo.--career {
  color: var(--white);
  mix-blend-mode: exclusion;
}

.l-header__menu {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__menu {
    align-items: center;
    display: flex;
    -moz-column-gap: 24px;
    block-size: inherit;
         column-gap: 24px;
  }
}

.l-header__nav {
  align-items: center;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.l-header__lists {
  align-items: center;
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.l-header__lists li a {
  display: inline-block;
  line-height: 90px;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .l-header__lists li a {
    line-height: 100px;
    line-height: revert;
    margin-block-start: 20px;
    padding-block: 16px;
  }
}

/*----------------------------------
    recruitment-consultingページ用
-----------------------------------*/
.l-header.--recruit-page {
  block-size: 90px;
  left: 0;
  mix-blend-mode: normal;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .l-header.--recruit-page {
    align-items: center;
    display: flex;
    -moz-column-gap: 24px;
    block-size: inherit;
         column-gap: 24px;
  }
}
.l-header.--recruit-page .l-header__menu {
  display: block;
}

.l-header__recruitLists {
  align-items: center;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-block-start: 32px;
}

.l-header-nav__recruitBtn {
  align-items: center;
  background: var(--bg-color);
  border-radius: 4px;
  color: var(--white);
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
  gap: 20px;
  justify-content: space-between;
  line-height: 1;
  padding: 12px 16px 14px 20px;
}
.l-header-nav__recruitBtn:focus-visible .l-header__recruitLine {
  background: var(--light-gray);
}
.l-header-nav__recruitBtn:focus-visible .c-btn__arrow::before {
  animation: arrowSlideOut var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
}
.l-header-nav__recruitBtn:focus-visible .c-btn__arrow::after {
  animation: arrowSlideIn var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
}
@media (any-hover: hover) {
  .l-header-nav__recruitBtn:hover .l-header__recruitLine {
    background: var(--light-gray);
  }
  .l-header-nav__recruitBtn:hover .c-btn__arrow::before {
    animation: arrowSlideOut var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
  }
  .l-header-nav__recruitBtn:hover .c-btn__arrow::after {
    animation: arrowSlideIn var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
  }
}

.l-header__recruitLine {
  background: var(--gray);
  block-size: 28px;
  inline-size: 1px;
  transition: background-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}

.l-inner {
  block-size: inherit;
  inline-size: 100%;
  margin-inline: auto;
  max-inline-size: 640px;
  padding-inline: 6.2vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-inline-size: 1200px;
    padding-inline: 40px;
  }
}

.l-inner__narrow {
  block-size: inherit;
  inline-size: 100%;
  margin-inline: auto;
  max-inline-size: 640px;
  padding: 0 5.1vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-inner__narrow {
    max-inline-size: 1200px;
    padding-inline: 40px;
  }
}

.l-main {
  overflow: clip;
}

.l-section {
  margin-block-start: clamp(6.4rem, 4.32rem + 5.333vw, 12rem);
}

.l-section-pb {
  padding-block: 80px;
}
@media screen and (min-width: 768px) {
  .l-section-pb {
    padding-block: 120px;
  }
}

.l-breadcrumb {
  display: block;
  inline-size: 100%;
}

.l-breadcrumb__inner.js-reveal {
  display: inline-block;
}

.l-breadcrumb__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  vertical-align: middle;
}

.l-breadcrumb__list {
  font-size: 1.2rem;
  position: relative;
}
.l-breadcrumb__list:not(:last-child)::after {
  content: "＞";
  font-size: 0.9rem;
  padding: 0 0 0 1.2em;
  vertical-align: middle;
}
.l-breadcrumb__list a {
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
.l-breadcrumb__list a:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-breadcrumb__list a:hover {
    opacity: 0.6;
  }
}
.l-breadcrumb__list > span:nth-child(n):not(:last-child) {
  color: #ccc;
}

.l-lower-page {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-block-start: clamp(13rem, 9.286rem + 9.524vw, 23rem);
  padding-block-end: 52px;
  position: relative;
}
.l-lower-page::after {
  background: var(--dark-gray);
  block-size: 1px;
  bottom: 0;
  content: "";
  inline-size: 100vw;
  left: 0;
  margin-inline: calc(50% - 50vw);
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.4, 1) 0.4s;
}
.l-lower-page.is-line-visible::after {
  transform: scaleX(1);
}

.l-lower-page__contents {
  margin-block-start: clamp(6.2rem, 4.491rem + 4.381vw, 10.8rem);
}

.l-lower-page__contents--wide {
  margin-block-start: clamp(6.2rem, 2.411rem + 9.714vw, 16.4rem);
}

.js-reveal {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  opacity: 0;
  overflow: hidden;
  transition: clip-path 0.5s cubic-bezier(0.8, 0, 0.4, 1), opacity 0.5s cubic-bezier(0.8, 0, 0.4, 1);
  vertical-align: bottom;
}

.js-reveal.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.js-fade-in {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-fade-in.is-visible {
  opacity: 1;
}

.l-recruit-page {
  margin-block-start: clamp(9.8rem, 8.054rem + 4.476vw, 14.5rem);
  position: relative;
}

.c-service-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .c-service-items {
    gap: 21px;
  }
}

.c-service-item__link {
  align-items: center;
  background: var(--bg-color);
  border: 1px solid transparent;
  border-radius: 8px;
  display: block;
  display: flex;
  justify-content: space-between;
  padding: 30px 16px 36px 20px;
  transition: border-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.c-service-item__link.--black {
  background: var(--text-color);
}
@media screen and (min-width: 768px) {
  .c-service-item__link {
    min-inline-size: 360px;
    padding: 26px 30px 36px 32px;
  }
}
.c-service-item__link:focus-visible {
  border-color: var(--white);
}
@media (any-hover: hover) {
  .c-service-item__link:hover {
    border-color: var(--white);
  }
}

.c-service-item__textWrap {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 14px;
}

.c-service-item__about {
  border-block-end: 1px solid;
  display: block;
  font-family: var(--font-ja-min);
  font-size: 1.6rem;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  line-height: 120%;
  padding-block-end: 8px;
}
@media screen and (min-width: 768px) {
  .c-service-item__about {
    font-size: 1.2rem;
  }
}

.c-service-item__title {
  font-family: var(--font-ja-min);
  font-size: 24px;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .c-service-item__title {
    font-size: 2rem;
  }
}

.c-service-item__icon {
  aspect-ratio: 18/14;
  inline-size: 20px;
}

.c-link__footer {
  border-block-start: 1px solid var(--dark-gray);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block-start: 24px;
}
@media screen and (min-width: 768px) {
  .c-link__footer {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.c-link__privacy {
  color: var(--light-gray);
  display: block;
  font-size: 1.4rem;
  line-height: normal;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.c-link__privacy:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .c-link__privacy:hover {
    opacity: 0.6;
  }
}

.c-link__copyright {
  color: var(--light-gray);
  font-family: var(--font-ja-min);
  font-size: 1.2rem;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .c-link__copyright {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1920px) {
  .c-link__copyright {
    font-size: 1.2rem;
  }
}

.c-menu {
  /* グレーと白が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, var(--light-gray) 50%, var(--white) 50%) 100%;
  color: transparent;
  font-family: var(--font-en);
  font-style: normal;
  line-height: 120%;
  white-space: nowrap;
  /* 背景をテキストで切り抜く */
  -webkit-background-clip: text;
          background-clip: text;
  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;
  transition: background-position var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.c-menu:focus-visible {
  background-position: 0 40%;
}
@media (any-hover: hover) {
  .c-menu:hover {
    background-position: 0 40%;
  }
}
.c-menu.c-menu--header {
  font-size: 1.6rem;
}
.c-menu.c-menu--footer {
  font-size: 2rem;
}

.c-btn {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-style: normal;
  gap: 32px;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  line-height: 120%;
  overflow: hidden;
  padding-block-end: 1rem;
  position: relative;
  transition-duration: var(--hover-transition);
  transition-property: color, background-color, border;
  transition-timing-function: cubic-bezier(0.8, 0, 0.4, 1);
  white-space: nowrap;
}
.c-btn.--white {
  color: var(--white);
}
.c-btn.--black::before, .c-btn.--black::after {
  background: var(--text-color);
}
.c-btn.--black .c-btn__arrow::before, .c-btn.--black .c-btn__arrow::after {
  background: var(--text-color);
}
.c-btn::before {
  background: var(--white);
  block-size: 1px;
  bottom: 0;
  content: "";
  inline-size: 0;
  left: 0;
  position: absolute;
  transition: inline-size var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition);
}
.c-btn::after {
  background: var(--white);
  block-size: 1px;
  bottom: 1px;
  content: "";
  inline-size: 100%;
  left: 0;
  position: absolute;
  transition: translate var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.c-btn:focus-visible::before {
  inline-size: 100%;
}
.c-btn:focus-visible::after {
  translate: 100%;
}
.c-btn:focus-visible .c-btn__arrow::before {
  animation: arrowSlideOut var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
}
.c-btn:focus-visible .c-btn__arrow::after {
  animation: arrowSlideIn var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
}
@media (any-hover: hover) {
  .c-btn:hover::before {
    inline-size: 100%;
  }
  .c-btn:hover::after {
    translate: 100%;
  }
  .c-btn:hover .c-btn__arrow::before {
    animation: arrowSlideOut var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
  }
  .c-btn:hover .c-btn__arrow::after {
    animation: arrowSlideIn var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
  }
}

.c-btn__arrow {
  block-size: 22px;
  flex-shrink: 0;
  inline-size: 22px;
  overflow: hidden;
  position: relative;
}
.c-btn__arrow::before {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--white);
  block-size: 12px;
  inline-size: 22px;
  left: 50%;
          mask-size: contain;
  top: 50%;
  transform-origin: center;
  translate: -50% -50%;
}
.c-btn__arrow::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--white);
  block-size: 12px;
  inline-size: 22px;
  left: 50%;
          mask-size: contain;
  opacity: 0;
  top: 50%;
  transform-origin: center;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
  translate: -50% -50%;
}

.c-btn-coming {
  align-items: center;
  border-block-end: 1px solid;
  color: var(--gray);
  display: inline-flex;
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-style: normal;
  gap: 32px;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  line-height: 120%;
  padding-block-end: 10px;
  position: relative;
  text-transform: capitalize;
  white-space: nowrap;
}

.c-btn-circle {
  block-size: 56px;
  border: 1px solid var(--white);
  border-radius: calc(infinity * 1px);
  flex-shrink: 0;
  flex-shrink: 0;
  inline-size: 56px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn-circle {
    block-size: clamp(4.8rem, 4.503rem + 0.762vw, 5.6rem);
    inline-size: clamp(4.8rem, 4.503rem + 0.762vw, 5.6rem);
  }
}
.c-btn-circle::before, .c-btn-circle::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--white);
  block-size: 12px;
  inline-size: 22px;
  left: 50%;
          mask-size: contain;
  top: 50%;
  transform-origin: center;
  transition: translate var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
  translate: -50% -50%;
}
.c-btn-circle::after {
  opacity: 0;
}

@keyframes arrowSlideOut {
  0% {
    opacity: 1;
    translate: -50% -50%;
  }
  100% {
    opacity: 0;
    translate: calc(-50% + 20px) -50%;
  }
}
@keyframes arrowSlideIn {
  0% {
    opacity: 0;
    translate: calc(-50% - 20px) -50%;
  }
  100% {
    opacity: 1;
    translate: -50% -50%;
  }
}
@keyframes arrowSlideOutReverse {
  0% {
    opacity: 1;
    translate: -50% -50%;
  }
  100% {
    opacity: 0;
    translate: calc(-50% - 20px) -50%;
  }
}
@keyframes arrowSlideInReverse {
  0% {
    opacity: 0;
    translate: calc(-50% + 20px) -50%;
  }
  100% {
    opacity: 1;
    translate: -50% -50%;
  }
}
.c-card__link {
  aspect-ratio: 1;
  block-size: 100%;
  border: 1px solid var(--white);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  inline-size: 100%;
  padding: 38px 24px;
  transition: background-color var(--hover-transition);
}
.c-card__link:focus-visible {
  background-color: var(--white);
  color: var(--text-color);
}
@media (any-hover: hover) {
  .c-card__link:hover {
    background-color: var(--white);
    color: var(--text-color);
  }
  .c-card__link:hover .c-card__category {
    border-color: var(--text-color);
    color: var(--text-color);
  }
}

.c-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-family: var(--font-ja-min);
  font-size: 2rem;
  line-height: 1.5;
  margin-block-start: 32px;
  order: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    -webkit-line-clamp: 5;
  }
}

.c-card__publish {
  color: var(--light-gray);
  font-family: var(--font-ja-min);
  font-size: 1.4rem;
  line-height: 1.2;
  order: 1;
}

.c-card__categories {
  margin-block-start: auto;
  order: 3;
}

.c-card__category {
  border: 1px solid var(--white);
  border-radius: calc(infinity * 1px);
  color: var(--white);
  display: inline-block;
  font-family: var(--font-ja-min);
  font-size: 1.3rem;
  line-height: 120%;
  padding: 4px 16px 5px 16px;
  text-align: center;
  white-space: nowrap;
}

.c-card__noPost {
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
}

.c-section-titleWrap {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 0.206rem + 1.524vw, 2.4rem);
}
@media screen and (min-width: 768px) {
  .c-section-titleWrap {
    align-items: self-end;
    flex-direction: row;
  }
}
.c-section-titleWrap.--center {
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-section-titleWrap.--center {
    flex-direction: column;
  }
}

.c-section-title--en {
  font-family: var(--font-en);
  font-size: clamp(5.6rem, 3.817rem + 4.571vw, 10.4rem);
  font-style: normal;
  line-height: 1.2;
  text-transform: capitalize;
}
.c-section-title--en.--small {
  font-size: clamp(5rem, 2.994rem + 5.143vw, 10.4rem);
}

.c-section-title,
.c-lower-title {
  font-family: var(--font-ja-min);
  font-size: 2.4rem;
  line-height: 1.2;
}
.c-section-title.--lh-1_5,
.c-lower-title.--lh-1_5 {
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .c-section-title {
    display: block;
    margin-block-end: clamp(0.1rem, -1.051rem + 2.952vw, 3.2rem);
  }
}
.c-section-title.--no-mbe {
  margin-block-end: 0;
}

.c-lower-titleWrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .c-lower-titleWrap {
    gap: 10px;
  }
}

.c-lower-title--en {
  font-family: var(--font-en);
  font-size: clamp(6.2rem, 3.749rem + 6.286vw, 12.8rem);
  font-style: normal;
  line-height: 1;
  text-transform: capitalize;
}
.c-lower-title--en.--no-transform {
  text-transform: none;
}

.c-sub-section-titleWrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.c-sub-section-title__en {
  font-family: var(--font-en);
  font-size: clamp(4rem, 3.109rem + 2.286vw, 6.4rem);
  font-style: normal;
  line-height: 1;
  text-transform: capitalize;
  white-space: nowrap;
}

.c-sub-section-title {
  font-family: var(--font-ja-min);
  font-size: 2rem;
  line-height: 1.2;
}

.c-recruit__titleWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-recruit__titleWrap.--center {
  align-items: center;
}

.c-recruit-title--en {
  color: var(--very-light-gray);
  font-family: var(--font-en);
  font-size: clamp(2rem, 1.851rem + 0.381vw, 2.4rem);
  line-height: 1.4;
  text-transform: uppercase;
}
.c-recruit-title--en.--career {
  color: var(--gray);
}

.c-recruit__title {
  color: var(--text-color);
  font-family: var(--font-ja-min);
  font-size: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  line-height: 1;
}
.c-recruit__title.--white {
  color: var(--white);
}

.c-lists {
  inline-size: 100%;
}

@media screen and (min-width: 768px) {
  .c-list:first-child .c-list__link {
    padding-block-start: 0;
  }
}

.c-list__link {
  border-block-end: 1px solid var(--dark-gray);
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.303rem + 0.762vw, 2.4rem);
  overflow: hidden;
  padding: 32px 8px 40px;
  position: relative;
  transition: background-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
.c-list__link::after {
  background-color: #aaa;
  block-size: 1px;
  bottom: 0;
  content: "";
  inline-size: 0;
  left: 0;
  position: absolute;
  transition: inline-size var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
@media screen and (min-width: 768px) {
  .c-list__link {
    padding: 31px 24px 47px;
  }
}
.c-list__link:focus-visible::after {
  inline-size: 100%;
}
@media (any-hover: hover) {
  .c-list__link:hover::after {
    inline-size: 100%;
  }
}

.c-list__title {
  display: -webkit-box;
  order: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
  line-height: 1.5;
}

.c-list__meta {
  align-items: center;
  display: flex;
  gap: 24px;
  order: 1;
}

.c-list__publish {
  color: var(--light-gray);
  flex-shrink: 0;
  font-family: var(--font-ja-min);
  font-size: 1.4rem;
  line-height: 1.2;
  order: 1;
  position: relative;
}

.c-list__categories {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  order: 2;
}

.c-list__category {
  background: var(--text-color);
  border: 1px solid;
  border-radius: calc(infinity * 1px);
  color: var(--white);
  display: inline-block;
  font-family: var(--font-ja-min);
  font-size: 1.3rem;
  line-height: 1.2;
  padding: 3px 16px 5px;
  text-align: center;
}
.c-list__category--white {
  background: var(--white);
  border-color: var(--text-color);
  color: var(--text-color);
  transition-duration: var(--hover-transition);
  transition-property: color, background-color;
  transition-timing-function: cubic-bezier(0.8, 0, 0.4, 1);
}
.c-list__category--white:focus-visible {
  background: var(--text-color);
  color: var(--white);
}
@media (any-hover: hover) {
  .c-list__category--white:hover {
    background: var(--text-color);
    color: var(--white);
  }
}

.c-pagination {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-block-start: clamp(8rem, 7.109rem + 2.286vw, 10.4rem);
}

.c-pagination__list {
  align-items: center;
  display: flex;
  gap: clamp(1.2rem, 0.754rem + 1.143vw, 2.4rem);
  justify-content: center;
}

.c-pagination__item a {
  display: block;
  padding: 0 8px 7px 8px;
}
.c-pagination__item a:not(.c-pagination__item--prev):not(.c-pagination__item--next) {
  border-block-end: 1px solid transparent;
  color: var(--gray);
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  line-height: 1.2;
  transition-duration: var(--hover-transition);
  transition-property: color, border-color;
  transition-timing-function: cubic-bezier(0.8, 0, 0.4, 1);
  white-space: nowrap;
}
.c-pagination__item a:not(.c-pagination__item--prev):not(.c-pagination__item--next):focus-visible {
  border-color: var(--white);
  color: var(--white);
}
@media (any-hover: hover) {
  .c-pagination__item a:not(.c-pagination__item--prev):not(.c-pagination__item--next):hover {
    border-color: var(--white);
    color: var(--white);
  }
}
.c-pagination__item.is-current {
  border-block-end: 1px solid;
  color: var(--white);
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  line-height: 1.2;
  min-inline-size: 32px;
  padding: 0 8px 7px 8px;
  pointer-events: none; /* クリックを無効にする */
}

.p-single__content .c-link-card {
  block-size: auto;
  inline-size: 100%;
  margin-block: clamp(2.4rem, 2.103rem + 0.762vw, 3.2rem);
}
.p-single__content .c-link-card__link {
  background: var(--bg-color-light);
  border: none;
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 2.103rem + 0.762vw, 3.2rem);
  margin: 0;
  padding: 0;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
@media screen and (min-width: 768px) {
  .p-single__content .c-link-card__link {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.p-single__content .c-link-card__link:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-single__content .c-link-card__link:hover {
    opacity: 0.6;
  }
}
.p-single__content .c-link-card__img {
  aspect-ratio: 342/180;
  background-color: #d9d9d9;
  block-size: auto;
  flex-shrink: 0;
  inline-size: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-single__content .c-link-card__img {
    aspect-ratio: 245/185;
    inline-size: min(245px, 100%);
  }
}
.p-single__content .c-link-card__img:empty {
  display: none;
}
.p-single__content .c-link-card__img img {
  block-size: 100%;
  inline-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single__content .c-link-card__textWrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 24px 24px;
}
@media screen and (min-width: 768px) {
  .p-single__content .c-link-card__textWrap {
    gap: 8px;
    inline-size: 100%;
    margin: 32px 0 32px 40px;
    max-inline-size: 643px;
  }
}
.p-single__content .c-link-card__title {
  display: -webkit-box;
  font-size: 1.6rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--gray);
  margin: 0;
  padding: 0;
}
.p-single__content .c-link-card__excerpt {
  color: var(--light-gray);
  display: -webkit-box;
  font-size: 1.2rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  padding: 0;
}
.p-single__content .c-link-card__urlWrapper {
  align-items: center;
  display: flex;
  gap: 8px;
}
.p-single__content .c-link-card__url {
  color: var(--light-gray);
  display: -webkit-box;
  font-size: 1.2rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 0;
  margin: 0;
  padding: 0;
}
.p-single__content .c-link-card__favicon {
  aspect-ratio: 1;
  display: block;
  flex-shrink: 0;
  inline-size: 25px;
}

.c-accordion {
  border: 1px solid var(--white);
  border-radius: 8px;
  inline-size: 100%;
}
.c-accordion.--career {
  border: 1px solid var(--text-color);
}
.c-accordion.--career .c-accordion__summary::before, .c-accordion.--career .c-accordion__summary::after {
  background-color: var(--text-color);
}
.c-accordion.--career .c-accordion__q {
  color: var(--gray);
}
.c-accordion.--career .c-accordion__question {
  color: var(--text-color);
}
.c-accordion.--career .c-accordion__content > p {
  color: var(--dark-gray);
}

.c-accordion__summary {
  padding: 24px clamp(5rem, 3.143rem + 4.762vw, 10rem) 24px clamp(2rem, 0.96rem + 2.667vw, 4.8rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-accordion__summary {
    padding: 34px clamp(5rem, 3.143rem + 4.762vw, 10rem) 34px clamp(2rem, 0.96rem + 2.667vw, 4.8rem);
  }
}
.c-accordion__summary::before, .c-accordion__summary::after {
  background-color: var(--white);
  block-size: 2px;
  content: "";
  display: block;
  inline-size: 14px;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
}
.c-accordion__summary::before {
  translate: 0 -50%;
}
.c-accordion__summary::after {
  rotate: -90deg;
  transition: translate 0.5s, rotate 0.5s;
  translate: 0 -50%;
}
.c-accordion[open]:not([data-accordion-before-close]) .c-accordion__summary::after {
  rotate: 0deg;
  translate: 0 -50%;
}

.c-accordion__summaryWrap {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  inline-size: min(636px, 100%);
}
@media screen and (min-width: 768px) {
  .c-accordion__summaryWrap {
    gap: 24px;
    inline-size: min(916px, 100%);
  }
}

.c-accordion__q {
  color: var(--light-gray);
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-style: normal;
  line-height: 1.2;
  text-transform: capitalize;
}

.c-accordion__question {
  color: var(--white);
  font-family: var(--font-ja-min);
  font-size: clamp(1.8rem, 1.726rem + 0.19vw, 2rem);
  line-height: 1.5;
}

.c-accordion__content {
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  inline-size: 100%;
  overflow: hidden;
  padding-inline: clamp(2rem, 0.96rem + 2.667vw, 4.8rem) clamp(1.8rem, 0.686rem + 2.857vw, 4.8rem);
}
.c-accordion__content > p {
  color: var(--very-light-gray);
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
  line-height: 1.5;
  padding-block-end: 24px;
}
@media screen and (min-width: 768px) {
  .c-accordion__content > p {
    padding-block-end: 40px;
  }
}

.c-fixed__btnContent {
  inset-block-end: calc(24px + env(safe-area-inset-bottom));
  inset-inline-start: 0;
  margin-block-start: 0;
  max-block-size: 0;
  opacity: 0;
  overflow: hidden;
  position: sticky;
  transition-duration: 0.8s;
  transition-property: opacity, visibility, max-block-size, margin-block-start;
  transition-timing-function: cubic-bezier(0.8, 0, 0.4, 1);
  visibility: hidden;
  z-index: 41;
}
.c-fixed__btnContent.js-show {
  margin-block-start: 0;
  max-block-size: 263px;
  opacity: 1;
  visibility: visible;
}

.c-fixed__btnWrap {
  align-items: center;
  display: flex;
  gap: 2.1vw;
  justify-content: space-between;
  margin-inline: 3.1vw;
}
@media screen and (min-width: 768px) {
  .c-fixed__btnWrap {
    display: none;
  }
}

.c-fixed__btn {
  aspect-ratio: 179/55;
  background: var(--bg-color);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  font-size: clamp(1.5rem, 1.166rem + 0.857vw, 2.4rem);
  font-weight: 600;
  inline-size: 45.9vw;
  line-height: 1;
  padding: 20px 16px;
  place-content: center;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.c-fixed__btn:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .c-fixed__btn:hover {
    opacity: 0.6;
  }
}

.c-fixed__mivoo {
  display: block;
  inset-block-end: calc(0vw + env(safe-area-inset-bottom));
  margin-block-end: 8px;
  margin-inline: 3.1vw;
  opacity: 0;
  position: sticky;
  transition: opacity 0.6s cubic-bezier(0.8, 0, 0.4, 1), visibility 0.6s cubic-bezier(0.8, 0, 0.4, 1), transform 0.6s cubic-bezier(0.8, 0, 0.4, 1);
  visibility: hidden;
  z-index: 41;
}
.c-fixed__btnContent.js-show .c-fixed__mivoo {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .c-fixed__mivoo {
    bottom: 80px;
    inline-size: 361px;
    margin-block-end: 0;
    margin-inline: 0;
    max-inline-size: 400px;
    opacity: 0;
    position: fixed;
    right: 64px;
    transition: opacity 0.6s cubic-bezier(0.8, 0, 0.4, 1), visibility 0.6s cubic-bezier(0.8, 0, 0.4, 1);
    visibility: hidden;
    z-index: 41;
  }
  .c-fixed__mivoo.js-show-pc {
    opacity: 1;
    visibility: visible;
  }
}
.c-fixed__mivoo.js-hidden {
  display: none !important;
}

.c-fixed__mivoo--link {
  align-items: center;
  background: url(../img/common/mivoo_bg_fixed-sp.jpg) no-repeat center center/cover;
  block-size: 97px;
  border-radius: 6px;
  box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 28px;
  inline-size: 100%;
  justify-content: center;
  overflow: hidden;
  padding: 28px 44px 28px 24px;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
@media screen and (min-width: 768px) {
  .c-fixed__mivoo--link {
    aspect-ratio: 361/204;
    background: url(../img/common/mivoo_bg_fixed.jpg) no-repeat center center/cover;
    block-size: revert;
    border-radius: 8px;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
    flex-direction: column;
    inline-size: 361px;
    padding: 46px 24px;
  }
}
.c-fixed__mivoo--link:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .c-fixed__mivoo--link:hover {
    opacity: 0.6;
  }
}

.c-fixed__mivoo--logo {
  aspect-ratio: 129/37;
  inline-size: clamp(12.9rem, 9.223rem + 9.429vw, 22.8rem);
}
.c-fixed__mivoo--logo img {
  block-size: 100%;
  inline-size: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-fixed__mivoo--text {
  color: var(--white);
  display: block;
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-fixed__mivoo--text {
    text-align: center;
  }
}

.c-fixed__mivoo--close {
  align-items: center;
  block-size: 32px;
  cursor: pointer;
  display: flex;
  inline-size: 32px;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 8px;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-fixed__mivoo--close {
    background: var(--text-color);
    block-size: 24px;
    border-radius: calc(infinity * 1px);
    inline-size: 24px;
    right: 0;
    top: -32px;
  }
}
.c-fixed__mivoo--close:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .c-fixed__mivoo--close:hover {
    opacity: 0.6;
  }
}

.c-fixed__mivoo--closeIcon {
  block-size: 16px;
  inline-size: 16px;
  position: relative;
}
.c-fixed__mivoo--closeIcon::before, .c-fixed__mivoo--closeIcon::after {
  background: var(--white);
  block-size: 12px;
  border-radius: 1px;
  content: "";
  inline-size: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
}
.c-fixed__mivoo--closeIcon::before {
  rotate: 45deg;
}
.c-fixed__mivoo--closeIcon::after {
  rotate: -45deg;
}

.p-about-mv {
  padding-block: clamp(12rem, 9.029rem + 7.619vw, 20rem) clamp(11.2rem, 7.931rem + 8.381vw, 20rem);
}

.p-about-mv__items {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.p-about-mv__item {
  border-block-end: 1px solid var(--dark-gray);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-block-end: 40px;
}
@media screen and (min-width: 768px) {
  .p-about-mv__item {
    display: grid;
    grid-template-areas: "entitle text" "title text";
    grid-template-columns: minmax(0, 320px) minmax(0, 310px);
    grid-template-rows: auto auto;
    -moz-column-gap: 32px;
         column-gap: 32px;
    justify-content: center;
    row-gap: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about-mv__item {
    display: grid;
    grid-template-areas: "entitle title text";
    grid-template-columns: 280px 320px 352px;
    grid-template-rows: auto;
    -moz-column-gap: clamp(3.2rem, 1.231rem + 5.048vw, 8.5rem);
         column-gap: clamp(3.2rem, 1.231rem + 5.048vw, 8.5rem);
  }
}

.p-about-mv__title--en {
  font-family: var(--font-en);
  font-size: clamp(4.8rem, 4.503rem + 0.762vw, 5.6rem);
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-about-mv__title--en {
    grid-area: entitle;
  }
}

.p-about-mv__title {
  font-family: var(--font-ja-min);
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-about-mv__title {
    grid-area: title;
  }
}

.p-about-mv__text {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-about-mv__text {
    font-size: 1.4rem;
    grid-area: text;
  }
}
@media screen and (min-width: 1920px) {
  .p-about-mv__text {
    font-size: 1.6rem;
  }
}
.p-about-mv__text p + p {
  margin-block-start: 1.8em;
}

.p-about-why {
  padding-block-end: clamp(8rem, 7.257rem + 1.905vw, 10rem);
  position: relative;
}
.p-about-why::before, .p-about-why::after {
  content: "";
  position: absolute;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
  background: var(--white);
          mask-size: cover;
}
.p-about-why::before {
  -webkit-mask-image: url(../img/about-line-head-sp.svg);
  aspect-ratio: 541/100;
  inline-size: 138.7vw;
  left: -32.8vw;
          mask-image: url(../img/about-line-head-sp.svg);
  top: -10.3vw;
}
@media screen and (min-width: 768px) {
  .p-about-why::before {
    aspect-ratio: 1528/100;
    inline-size: 165.7vw;
    -webkit-mask-image: url(../img/about-line-head.svg);
    left: -4.3vw;
            mask-image: url(../img/about-line-head.svg);
    top: -3.5vw;
  }
}
.p-about-why::after {
  -webkit-mask-image: url(../img/about-line-foot-sp.svg);
  aspect-ratio: 549/126;
  bottom: 0;
  inline-size: 140.8vw;
  left: -12.8vw;
          mask-image: url(../img/about-line-foot-sp.svg);
}
@media screen and (min-width: 768px) {
  .p-about-why::after {
    aspect-ratio: 1542/130;
    inline-size: 104.6vw;
    -webkit-mask-image: url(../img/about-line-foot.svg);
    bottom: 5%;
    left: -4.2vw;
            mask-image: url(../img/about-line-foot.svg);
  }
}
@media screen and (min-width: 1024px) {
  .p-about-why::after {
    bottom: 1.7vw;
  }
}
@media screen and (min-width: 1920px) {
  .p-about-why::after {
    bottom: -4%;
  }
}

.p-about-why__bg {
  background: var(--white);
  padding-block: clamp(8.5rem, 5.826rem + 6.857vw, 15.7rem) clamp(3.8rem, 0.011rem + 9.714vw, 14rem);
}

.p-about-why__inner {
  color: var(--text-color);
}

.p-about-why__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-about-why__contents {
    flex-direction: row;
    gap: clamp(2.4rem, 1.806rem + 1.524vw, 4rem);
    justify-content: space-between;
  }
}
.p-about-why__contents::after {
  aspect-ratio: 879/156;
  background: url(../img/gif/moveon_gray.gif) no-repeat center center/cover;
  content: "";
  inline-size: 84.6vw;
  left: 50%;
  max-inline-size: 879px;
  position: absolute;
  top: calc(50% - 10px);
  translate: -50% -50%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-about-why__contents::after {
    inline-size: 61vw;
    max-inline-size: 879px;
  }
}

.p-about-why__titleWrap {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 40px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-about-why__titleWrap {
    gap: 38px;
  }
}

.p-about-why__title--en {
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  line-height: 1;
}

.p-about-why__title {
  font-family: var(--font-ja-min);
  font-size: clamp(4.8rem, 3.611rem + 3.048vw, 8rem);
  line-height: 120%;
}

.p-about-why__text {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  max-inline-size: 434px;
  z-index: 2;
}

.p-about-cta__bg {
  margin-block-start: 19px;
}
@media screen and (min-width: 768px) {
  .p-about-cta__bg {
    margin-block-start: 5px;
  }
}

.p-contact {
  padding-block-end: clamp(5.6rem, 4.486rem + 2.857vw, 8.6rem);
}

.p-contact__lead {
  font-family: var(--font-ja-min);
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
  inline-size: 100%;
  max-inline-size: 424px;
}

.p-tabPost__tabContents {
  margin-block-start: clamp(6.6rem, 6.08rem + 1.333vw, 8rem);
}

.hidden-tab {
  display: none !important;
}

.p-tabPost__tabList {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
  inline-size: 100%;
}
@media screen and (min-width: 768px) {
  .p-tabPost__tabList {
    gap: 8px;
  }
}

.p-tabPost__tab {
  background: var(--gray);
  block-size: auto;
  border: 1px solid var(--gray);
  border-radius: 4px;
  color: var(--white);
  display: block;
  font-size: clamp(1.5rem, 1.314rem + 0.476vw, 2rem);
  inline-size: 100%;
  line-height: 180%;
  padding-block: 1rem;
  text-align: center;
  transition-duration: var(--hover-transition);
  transition-property: background-color, border-color;
  transition-timing-function: cubic-bezier(0.8, 0, 0.4, 1);
}
@media screen and (min-width: 768px) {
  .p-tabPost__tab {
    border-radius: 8px;
    padding: 24px 32px;
  }
}
.p-tabPost__tab[role=tab][aria-selected=true] {
  background: var(--white);
  border-color: var(--white);
  color: var(--text-color);
}
.p-tabPost__tab:focus-visible {
  background: var(--text-color);
  border-color: var(--white);
}
@media (any-hover: hover) {
  .p-tabPost__tab:not([aria-selected=true]):hover {
    /* 非選択のタブのホバースタイル */
    background: var(--text-color);
    border-color: var(--white);
  }
}

.p-tabPost__tabpanelWrapper {
  margin-block-start: 4px;
}
@media screen and (min-width: 768px) {
  .p-tabPost__tabpanelWrapper {
    margin-block-start: 8px;
  }
}

.p-tabPost__tabpanel {
  background: var(--white);
  border-radius: 8px;
  display: block;
  padding: clamp(5rem, 2.4rem + 6.667vw, 12rem) clamp(2rem, 1.257rem + 1.905vw, 4rem);
}
.p-tabPost__tabpanel:target {
  display: revert;
}

.p-tabPost__content {
  color: var(--text-color);
}

.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  inline-size: 100%;
  margin-inline: auto;
  max-inline-size: 730px;
}

.p-contact__formWrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-contact__formWrap {
    gap: 24px;
  }
}

.p-contact__footerWrap {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
@media screen and (min-width: 768px) {
  .p-contact__footerWrap {
    gap: 32px;
  }
}

.p-contact__row {
  display: grid;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-contact__row {
    align-items: center;
    gap: 0;
    grid-template-columns: 180px 1fr;
  }
}
.p-contact__row.--aifs {
  align-items: flex-start;
}

.p-contact__data span {
  inline-size: 100%;
}

.p-contact__head {
  font-family: var(--font-ja-min);
  font-size: 1.6rem;
  padding-block-start: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__head {
    padding-block: 8px;
  }
}
.p-contact__head span.--must {
  display: inline-block;
  padding-inline-start: 12px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__head span.--must {
    padding-inline-start: 16px;
  }
}
.p-contact__head span.--must::after {
  color: var(--red);
  content: "*";
  display: inline-block;
  font-size: 1.6rem;
  left: 0;
  position: absolute;
  top: calc(50% - 2px);
  translate: 0 -50%;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-contact__head span.--must::after {
    top: 50%;
    translate: 0 -50%;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  background: var(--bg-color-light);
  border: none;
  border: 1px solid transparent;
  border-radius: 0;
  border-radius: 4px;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  inline-size: 100%;
  line-height: var(--line-height-base);
  outline: 0;
  padding: 9px 12px;
}
@media screen and (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  select,
  textarea {
    padding: 9px 24px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--very-light-gray);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--very-light-gray);
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=tel]:focus-visible,
input[type=number]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border: 1px solid var(--text-color);
}
@media (any-hover: hover) {
  input[type=text]:hover,
  input[type=email]:hover,
  input[type=tel]:hover,
  input[type=number]:hover,
  select:hover,
  textarea:hover {
    border: 1px solid var(--text-color);
  }
}

textarea {
  --_min-rows: 5; /* デフォルトの行数 */
  --_max-rows: 20; /* 最大行数 */
  --_padding: 12px;
  inline-size: 100%;
  max-block-size: calc(var(--_max-rows) * 1lh + var(--_padding) * 2);
  min-block-size: calc(var(--_min-rows) * 1lh + var(--_padding) * 2);
  padding: var(--_padding);
  field-sizing: content;
}
@supports (field-sizing: content) {
  textarea {
    resize: none; /* field-sizing有効時にはリサイズ機能を無効にする */
  }
}

input[type=checkbox] {
  display: inline flow-root; /* 幅と高さの指定を効くようにするため`inline-block`などの値を指定する */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=checkbox]:focus + span::before {
  outline: auto oklch(60% 0.4 240deg);
  outline-offset: 2px;
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.p-contact__data-checkbox {
  display: grid;
  gap: 13px 10px;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
.p-contact__data-checkbox span.wpcf7-list-item-label {
  color: var(--gray);
  display: inline-block;
  font-size: 1.3rem;
  letter-spacing: 0.65px;
  line-height: 25px;
  padding-left: 30px;
  position: relative;
}
.p-contact__data-checkbox span.wpcf7-list-item-label::before {
  block-size: 1.4rem;
  border: 1px solid var(--light-gray);
  content: "";
  inline-size: 1.4rem;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.p-contact__data-checkbox span.wpcf7-list-item-label::after {
  block-size: 12px;
  border-bottom: 1.5px solid var(--text-color);
  border-right: 1.5px solid var(--text-color);
  content: "";
  inline-size: 6px;
  left: 4px;
  opacity: 0;
  position: absolute;
  rotate: 45deg;
  top: calc(50% - 1px);
  transition: opacity var(--hover-transition) ease;
  translate: 0 -50%;
}

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

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

.row.jc-center {
  justify-content: center;
}

.p-contact__submit,
.p-contact__confirm,
.p-contact__back {
  cursor: pointer;
  display: inline-block;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  position: relative;
  text-align: center;
}
.p-contact__submit::after,
.p-contact__confirm::after,
.p-contact__back::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--white);
  height: 12px;
          mask-size: contain;
  top: 50%;
  transition: transform var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
  translate: 0 -50%;
  width: 22px;
}
.p-contact__submit:focus-visible::after,
.p-contact__confirm:focus-visible::after,
.p-contact__back:focus-visible::after {
  background: var(--text-color);
}
@media (any-hover: hover) {
  .p-contact__submit:hover::after,
  .p-contact__confirm:hover::after,
  .p-contact__back:hover::after {
    background: var(--text-color);
  }
}
.p-contact__submit input[type=submit],
.p-contact__submit input[type=button],
.p-contact__confirm input[type=submit],
.p-contact__confirm input[type=button],
.p-contact__back input[type=submit],
.p-contact__back input[type=button] {
  background: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
  font-weight: 400;
  inline-size: clamp(30.2rem, 28.64rem + 4vw, 34.4rem);
  line-height: var(--line-height-base);
  overflow: hidden;
  padding: 17px 103px 19px;
  position: relative;
  text-align: center;
  transition-duration: var(--hover-transition);
  transition-property: color, background-color, border-color;
}
@media screen and (min-width: 768px) {
  .p-contact__submit input[type=submit],
  .p-contact__submit input[type=button],
  .p-contact__confirm input[type=submit],
  .p-contact__confirm input[type=button],
  .p-contact__back input[type=submit],
  .p-contact__back input[type=button] {
    padding: 14px 103px 15px;
  }
}
.p-contact__submit input[type=submit]:focus-visible,
.p-contact__submit input[type=button]:focus-visible,
.p-contact__confirm input[type=submit]:focus-visible,
.p-contact__confirm input[type=button]:focus-visible,
.p-contact__back input[type=submit]:focus-visible,
.p-contact__back input[type=button]:focus-visible {
  background: var(--white);
  color: var(--text-color);
  outline: 2px solid oklch(60% 0.4 240deg);
}
@media (any-hover: hover) {
  .p-contact__submit input[type=submit]:hover,
  .p-contact__submit input[type=button]:hover,
  .p-contact__confirm input[type=submit]:hover,
  .p-contact__confirm input[type=button]:hover,
  .p-contact__back input[type=submit]:hover,
  .p-contact__back input[type=button]:hover {
    background: var(--white);
    color: var(--text-color);
  }
}

.p-contact__confirm::after,
.p-contact__submit::after {
  right: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm::after,
  .p-contact__submit::after {
    right: 36px;
  }
}

.p-contact__confirm:has(input[type=button]:focus-visible)::after {
  background: var(--text-color);
}
input[type=button]:focus-visible + .p-contact__confirm::after, input[type=button]:focus-visible ~ .p-contact__confirm::after {
  background: var(--text-color);
}
.p-contact__confirm.is-focused::after {
  background: var(--text-color);
}

.p-contact__submit:has(input[type=submit]:focus-visible)::after {
  background: var(--text-color);
}
input[type=submit]:focus-visible + .p-contact__submit::after, input[type=submit]:focus-visible ~ .p-contact__submit::after {
  background: var(--text-color);
}
.p-contact__submit.is-focused::after {
  background: var(--text-color);
}

@media screen and (max-width: 767px) {
  .p-contact__submit input[type=submit] {
    inline-size: 37.692vw;
    max-inline-size: 260px;
    padding: 17px 20.513vw 19px 8.205vw;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__back input[type=button] {
    inline-size: 37.692vw;
    max-inline-size: 260px;
    padding: 17px 8.205vw 19px 20.513vw;
  }
}
.p-contact__back::after {
  left: 20px;
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .p-contact__back::after {
    left: 36px;
  }
}
.p-contact__back input[type=button] {
  background: var(--gray);
  border-color: var(--gray);
  cursor: pointer;
}
.p-contact__back:has(input[type=button]:focus-visible)::after {
  background: var(--text-color);
}
input[type=button]:focus-visible + .p-contact__back::after, input[type=button]:focus-visible ~ .p-contact__back::after {
  background: var(--text-color);
}
.p-contact__back.is-focused::after {
  background: var(--text-color);
}

.p-contact__acceptance {
  color: var(--gray);
  font-size: 1.3rem;
  grid-template-columns: revert;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  letter-spacing: 0.05em;
  line-height: 25px;
  margin-inline: auto;
  place-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__acceptance {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__acceptance span.wpcf7-list-item {
    margin: 0 0 0 2em;
  }
}
.p-contact__acceptance::before {
  color: var(--red);
  content: "*";
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  left: 10px;
  letter-spacing: 2em;
  line-height: normal;
  position: absolute;
  top: calc(50% - 2px);
  translate: 0 -50%;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-contact__acceptance::before {
    left: 0;
  }
}

.p-contact__date--link {
  display: inline-block;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
.p-contact__date--link:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-contact__date--link:hover {
    opacity: 0.6;
    -webkit-text-decoration: revert;
            text-decoration: revert;
  }
}

.p-confirm-area {
  display: none; /*初期は隠しておく*/
  inline-size: 100%;
  margin-inline: auto;
  max-inline-size: 640px;
}
.p-confirm-area .p-contact__head {
  padding-block: 0;
}

.p-confirm-area__footerWrap {
  display: flex;
  gap: 8px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-confirm-area__footerWrap {
    gap: 24px;
    margin-block-start: 80px;
  }
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output.wpcf7-mail-sent-ok {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  color: var(--red);
  font-size: 1.4rem;
  letter-spacing: 0.7px;
}

.p-contact-thanks {
  margin-block-end: 120px;
  margin-block-start: 210px;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks {
    margin-block-start: 235px;
  }
}

.p-contact-thanks__titleWrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__titleWrap {
    gap: 24px;
  }
}

.p-contact-thanks__title--en {
  font-family: var(--font-en);
  font-size: clamp(5.4rem, 2.949rem + 6.286vw, 12rem);
  line-height: 100%;
}

.p-contact-thanks__title {
  font-family: var(--font-ja-min);
  font-size: clamp(2rem, 1.554rem + 1.143vw, 3.2rem);
  line-height: 90%;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__title {
    line-height: 140%;
  }
}

.p-contact-thanks__text {
  font-family: var(--font-ja-min);
  font-size: 1.5rem;
  margin-block-start: clamp(4.5rem, 4.091rem + 1.048vw, 5.6rem);
}
@media screen and (min-width: 576px) {
  .p-contact-thanks__text {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__text {
    font-size: 1.6rem;
  }
}

.p-contact-thanks__btn {
  margin-block-start: clamp(6.4rem, 4.32rem + 5.333vw, 12rem);
  margin-inline: auto;
  text-align: center;
}

.p-confirm-area .p-contact__formWrap {
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-confirm-area .p-contact__formWrap {
    gap: 32px;
  }
}
.p-confirm-area .p-confirm-area__footerWrap {
  margin-block-start: 40px;
}
.p-confirm-area .p-contact__row {
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-confirm-area .p-contact__row {
    gap: 0;
  }
}

.p-index-fv {
  margin-block-start: 136px;
}
@media screen and (min-width: 1024px) {
  .p-index-fv {
    margin-block-start: 9.6527777778vw;
  }
}

.p-index-fv__contents {
  margin-block-start: 42px;
  max-inline-size: 1800px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-index-fv__contents {
    margin-block-start: 0;
  }
}

.p-index-fv__textWrap {
  display: flex;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .p-index-fv__textWrap {
    justify-content: flex-end;
  }
}

.p-index-fv__text {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  display: inline-block;
  height: clamp(34rem, 33.071rem + 2.381vw, 36.5rem);
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: clamp(11.5rem, 9.829rem + 4.286vw, 16rem);
  z-index: 1;
}
.p-index-fv__text span {
  font-family: var(--font-ja-min);
  font-size: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  letter-spacing: 0.1em;
  line-height: 110%;
}
.p-index-fv__text .text-ruby {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 120%;
  padding-block-start: 1.538vw;
  padding-inline-start: 32px;
}
@media screen and (min-width: 768px) {
  .p-index-fv__text .text-ruby {
    padding-block-start: 22px;
    padding-inline-start: 46px;
  }
}

#text-01,
#text-02,
#text-03 {
  display: inline-block;
  inline-size: 0%;
  opacity: 0;
  overflow: hidden;
  vertical-align: top;
  white-space: nowrap;
}

#text-01 {
  animation: text-01 6s cubic-bezier(0.8, 0, 0.4, 1) forwards;
}

@keyframes text-01 {
  from {
    height: 0em;
    opacity: 0;
  }
  38% {
    height: 10em;
    opacity: 1;
  }
  to {
    height: 10em;
    opacity: 1;
  }
}
#text-02 {
  animation: text-02 6s cubic-bezier(0.8, 0, 0.4, 1) forwards;
}

@keyframes text-02 {
  0% {
    height: 0em;
    opacity: 0;
  }
  30% {
    height: 0em;
    opacity: 0;
  }
  55% {
    height: 8em;
    opacity: 1;
  }
  to {
    height: 8em;
    opacity: 1;
  }
}
#text-03 {
  animation: text-03 6s cubic-bezier(0.8, 0, 0.4, 1) forwards;
}

@keyframes text-03 {
  0% {
    height: 0em;
    opacity: 0;
  }
  30% {
    height: 0em;
    opacity: 0;
  }
  55% {
    height: 8em;
    opacity: 1;
  }
  to {
    height: 8em;
    opacity: 1;
  }
}
.p-index-fv__main-animation {
  aspect-ratio: 343/182;
  display: block;
  inline-size: 87.9487179487vw;
  margin-block-start: 50px;
  max-inline-size: 592px;
  opacity: 0;
  position: relative;
  transition: opacity 0.8s cubic-bezier(0.8, 0, 0.4, 1), visibility 0s cubic-bezier(0.8, 0, 0.4, 1);
  visibility: hidden;
  z-index: 1;
}
.p-index-fv__main-animation img {
  transition: none;
}
@media screen and (min-width: 768px) {
  .p-index-fv__main-animation {
    aspect-ratio: 878/465;
    inline-size: 60.9722222222vw;
    margin-block-start: -13.958vw;
    margin-inline-start: -1%;
    max-inline-size: 878px;
  }
}
@media screen and (min-width: 1920px) {
  .p-index-fv__main-animation {
    margin-block-start: -200px;
  }
}

.p-index-fv__arrow-animation {
  aspect-ratio: 510/741;
  inline-size: 102.5641025641vw;
  opacity: 0;
  position: absolute;
  right: -2.821vw;
  top: 4.103vw;
  transition: opacity 0.2s cubic-bezier(0.8, 0, 0.4, 1), visibility 0s cubic-bezier(0.8, 0, 0.4, 1);
  visibility: hidden;
  z-index: -1;
}
.p-index-fv__arrow-animation img {
  transition: none;
}
@media screen and (min-width: 768px) {
  .p-index-fv__arrow-animation {
    aspect-ratio: 1419/1161;
    inline-size: 97.744vw;
    left: -36.341vw;
    max-inline-size: 1176px;
    right: revert;
    top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-index-fv__arrow-animation {
    inline-size: 81.6666666667vw;
    left: -22%;
    top: 0;
  }
}

.p-index-about {
  overflow: hidden;
  padding-block: clamp(12.2rem, 5.774rem + 16.476vw, 29.5rem) clamp(0.1rem, -3.8rem + 10vw, 10.6rem);
  position: relative;
}
@media (min-width: 1600px) and (max-width: 1920px) {
  .p-index-about {
    padding-block: 18.438vw 6.625vw;
  }
}

.p-index-about__wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(6.4rem, 4.914rem + 3.81vw, 10.4rem);
  position: relative;
}

.p-index-about__text {
  color: var(--gray);
  font-family: var(--font-ja-min);
  font-size: clamp(2rem, 1.554rem + 1.143vw, 3.2rem);
  text-wrap: pretty;
  z-index: 2;
}
.p-index-about__text p + p {
  margin-block-start: 1.8em;
}
.p-index-about__text .char-fade {
  color: var(--gray);
  display: inline-block;
  opacity: 1;
}
.p-index-about__text .char-fade.is-active {
  color: var(--white);
}

.p-index-about__btn {
  z-index: 1;
}

.p-index-about__arrrow-animation {
  aspect-ratio: 660/847;
  display: block;
  inline-size: 79.4871794872vw;
  isolation: isolate;
  margin-block-start: -67.949vw;
  margin-inline-start: 27%;
  opacity: 0;
  position: relative;
  transition: opacity 0.8s ease-out, visibility 0s cubic-bezier(0.8, 0, 0.4, 1);
  visibility: hidden;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-index-about__arrrow-animation {
    block-size: auto;
    inline-size: 41.6666666667vw;
    margin-block-start: -46.806vw;
    margin-inline-start: 60%;
    max-inline-size: 800px;
  }
}
@media screen and (min-width: 1920px) {
  .p-index-about__arrrow-animation {
    inline-size: 41.6666666667vw;
    margin-block-start: -900px;
  }
}
.p-index-about__arrrow-animation img {
  transition: none;
}

.p-index-service {
  background: var(--white);
  color: var(--text-color);
  padding-block: clamp(6.4rem, 4.32rem + 5.333vw, 12rem);
}
@media screen and (min-width: 1920px) {
  .p-index-service {
    margin-block-start: 5.521vw;
    padding-block: 8.333vw;
  }
}

.p-index-service__title {
  position: relative;
}
.p-index-service__title::before {
  aspect-ratio: 424/44;
  background: url(../img/gif/arrow_service.gif) no-repeat center center/cover;
  content: "";
  inline-size: 108.7179487179vw;
  left: -16.41vw;
  max-inline-size: 670px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.8s ease-out;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-index-service__title::before {
    top: 57%;
    translate: 0 -50%;
  }
}
@media screen and (min-width: 768px) {
  .p-index-service__title::before {
    aspect-ratio: 1199/118;
    inline-size: 91.1458333333vw;
    left: -20%;
    max-inline-size: 1196px;
    top: 41%;
    translate: revert;
  }
}
@media screen and (min-width: 1024px) {
  .p-index-service__title::before {
    inline-size: 83.2638888889vw;
  }
}
.p-index-service__title.is-active::before {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .p-index-service__title::before {
    opacity: 1;
    transition: none;
  }
}
.p-index-service__title .c-section-title--en,
.p-index-service__title .c-section-title {
  z-index: 2;
}

.p-index-service__contents {
  display: grid;
  gap: 40px;
  grid-template-areas: "lead" "text" "btn";
  grid-template-columns: 1fr;
  justify-items: start;
  margin-block-start: 72px;
}
@media screen and (min-width: 1024px) {
  .p-index-service__contents {
    gap: 26px;
    grid-template-areas: "lead text" "btn text";
    grid-template-columns: minmax(494px, 1fr) auto;
    grid-template-rows: auto auto;
  }
}

.p-index-service__lead {
  font-family: var(--font-ja-min);
  font-size: clamp(2.8rem, 2.503rem + 0.762vw, 3.6rem);
  grid-area: lead;
}

.p-index-service__text {
  color: var(--text-color);
  grid-area: text;
  line-height: 1.8;
}

.p-index-service__btn {
  grid-area: btn;
}

.p-index-service__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-block-start: clamp(4rem, 2.811rem + 3.048vw, 7.2rem);
}

.p-index-service__item--link {
  background: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 8px;
  color: var(--white);
  display: block;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
  padding: 48px clamp(2rem, 0.366rem + 4.19vw, 6.4rem) 18px clamp(2rem, 0.366rem + 4.19vw, 6.4rem);
  position: relative;
  transition-duration: var(--hover-transition);
  transition-property: color, background-color;
  transition-timing-function: cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
@media screen and (min-width: 768px) {
  .p-index-service__item--link {
    gap: 29px;
    padding: 48px clamp(2rem, 0.366rem + 4.19vw, 6.4rem) 56px clamp(2rem, 0.366rem + 4.19vw, 6.4rem);
  }
}
.p-index-service__item--link::after {
  bottom: -12px;
  color: transparent;
  content: attr(data-label);
  font-family: var(--font-en);
  font-size: clamp(4.4rem, 2.766rem + 4.19vw, 8.8rem);
  font-weight: 400;
  left: -3px;
  line-height: 120%;
  position: absolute;
  text-stroke: 1px rgba(255, 255, 255, 0.3);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  transition: color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
@media screen and (min-width: 768px) {
  .p-index-service__item--link::after {
    bottom: -1.66015625vw;
    left: revert;
    right: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-index-service__item--link::after {
    bottom: -22px;
  }
}
.p-index-service__item--link:focus-visible {
  background: var(--white);
  color: var(--text-color);
}
.p-index-service__item--link:focus-visible::after {
  color: transparent;
  text-stroke: 1px rgba(0, 0, 0, 0.3);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}
.p-index-service__item--link:focus-visible .p-index-service__item--icon {
  border-color: var(--text-color);
}
.p-index-service__item--link:focus-visible .p-index-service__item--icon::after {
  background: var(--text-color);
}
@media (any-hover: hover) {
  .p-index-service__item--link:hover {
    background: var(--white);
    color: var(--text-color);
  }
  .p-index-service__item--link:hover::after {
    color: transparent;
    text-stroke: 1px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  }
  .p-index-service__item--link:hover .p-index-service__item--icon {
    border-color: var(--text-color);
  }
  .p-index-service__item--link:hover .p-index-service__item--icon::after {
    background: var(--text-color);
  }
}

.p-index-service__item--title {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  line-height: 120%;
  padding-block-end: 7px;
  transition: color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s, background-size var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}

.p-index-service__item--wrap {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media screen and (min-width: 768px) {
  .p-index-service__item--wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .p-index-service__item--wrap {
    gap: 40px;
  }
}

.p-index-service__item--textWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-index-service__item--textWrap {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .p-index-service__item--textWrap {
    gap: clamp(1.6rem, -0.109rem + 4.381vw, 6.2rem);
  }
}

.p-index-service__item--subTitle {
  flex-shrink: 0;
  font-family: var(--font-ja-min);
  font-size: clamp(2.8rem, 2.354rem + 1.143vw, 4rem);
  inline-size: clamp(22.4rem, 18.834rem + 9.143vw, 32rem);
  line-height: 1.5;
  transition: color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}

.p-index-service__item--text {
  transition: color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}

.p-index-service__item--icon {
  block-size: 5.6rem;
  border: 1px solid var(--white);
  border-radius: calc(infinity * 1px);
  flex-shrink: 0;
  inline-size: 5.6rem;
  margin-inline-start: auto;
  position: relative;
  transition: border-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
@media screen and (min-width: 768px) {
  .p-index-service__item--icon {
    margin-block-start: 5px;
  }
}
.p-index-service__item--icon::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/ico-link.svg);
          mask-image: url(../img/common/ico-link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  aspect-ratio: 18/14;
  background: var(--white);
  inline-size: 18px;
  left: 50%;
          mask-size: contain;
  top: 50%;
  transition: background-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
  translate: -50% -50%;
}

.p-index-news {
  background: var(--white);
  color: var(--text-color);
  overflow: hidden;
  padding-block: 65px 27px;
  transition: background-color 0.8s cubic-bezier(0.8, 0, 0.4, 1);
}
@media screen and (min-width: 768px) {
  .p-index-news {
    padding-block-end: 4px;
    padding-block-start: clamp(6.2rem, 4.046rem + 5.524vw, 12rem);
  }
}

.p-index-news__contents {
  display: grid;
  gap: 48px;
  grid-template-areas: "title" "swiper" "btn";
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-index-news__contents {
    grid-template-areas: "title btn" "swiper swiper";
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 46px;
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
}

.p-index-news__titleWrap {
  grid-area: title;
}

.p-index-news__btn {
  grid-area: btn;
  margin-block-start: 58px;
}
@media screen and (min-width: 768px) {
  .p-index-news__btn {
    align-self: end;
    margin-block: 48px 24px;
  }
}

/* ニュースがない場合の表示 */
.p-index-news__empty {
  align-items: center;
  display: flex;
  grid-area: swiper;
  justify-content: center;
  min-height: 200px;
  padding-block: 48px;
}
@media screen and (min-width: 768px) {
  .p-index-news__empty {
    padding-block: 80px;
  }
}

.p-index-news__empty-text {
  color: var(--white);
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
  line-height: 1.6;
  text-align: center;
}

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

.p-index-news__swiper-container {
  block-size: auto;
  grid-area: swiper;
  inline-size: 100vw;
  margin-inline-end: calc(50% - 50vw);
  overflow: visible;
}

.swiper.p-index-news__swiper {
  overflow: visible;
}

/* スライダー非活性時 */
.p-index-news__swiper:not(.swiper-initialized) {
  padding: 0;
}
.p-index-news__swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(299px, 329px));
}

.p-index-news__swiper-slide {
  block-size: auto;
  inline-size: clamp(29.9rem, 28.786rem + 2.857vw, 32.9rem);
}

.p-index-news__cardContents {
  block-size: 100%;
}

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

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

.p-index-news__swiperBtn {
  margin-block-start: clamp(3.1rem, 2.469rem + 1.619vw, 4.8rem);
  position: relative;
}

.p-index-news__prev,
.p-index-news__next {
  background: var(--text-color);
  block-size: 56px;
  border: 1px solid var(--white);
  border-radius: calc(infinity * 1px);
  inline-size: 56px;
  overflow: hidden;
  transition: background-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.p-index-news__prev::after,
.p-index-news__next::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--white);
  block-size: 12px;
  inline-size: 22px;
  left: 50%;
          mask-size: contain;
  top: 50%;
  transition: background-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
  translate: -50% -50%;
}
.p-index-news__prev:focus-visible,
.p-index-news__next:focus-visible {
  background: var(--white);
}
.p-index-news__prev:focus-visible::after,
.p-index-news__next:focus-visible::after {
  background: var(--text-color);
}
@media (any-hover: hover) {
  .p-index-news__prev:hover,
  .p-index-news__next:hover {
    background: var(--white);
  }
  .p-index-news__prev:hover::after,
  .p-index-news__next:hover::after {
    background: var(--text-color);
  }
}

.p-index-news__prev {
  left: 0;
  rotate: 180deg;
}

.p-index-news__next {
  left: 72px;
}

.p-index-news__loop {
  inline-size: 100%;
  margin-block-start: clamp(5.8rem, 3.423rem + 6.095vw, 12.2rem);
  overflow: hidden;
  position: relative;
}

.p-index-news__loopWrap {
  display: flex;
  gap: clamp(2.4rem, 1.806rem + 1.524vw, 4rem);
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  white-space: nowrap;
  will-change: transform;
  z-index: 1;
}
.p-index-news__loopWrap li {
  color: transparent;
  display: inline-block;
  font-family: var(--font-en);
  text-stroke: 1px rgba(255, 255, 255, 0.5);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  font-size: clamp(4.8rem, 3.611rem + 3.048vw, 8rem);
  line-height: 1.2;
  white-space: nowrap;
}

.p-index-company {
  padding-block: clamp(2.1rem, -0.091rem + 5.619vw, 8rem) clamp(9.5rem, 7.977rem + 3.905vw, 13.6rem);
}

.p-index-recruit {
  padding-block: 8px 68px;
  position: relative;
}
.p-index-recruit::before, .p-index-recruit::after {
  content: "";
  position: absolute;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
  background: var(--white);
  left: 50%;
          mask-size: cover;
  translate: -50%;
}
.p-index-recruit::before {
  -webkit-mask-image: url(../img/common/line-head-sp.svg);
  aspect-ratio: 697/70;
  inline-size: 178.7179487179vw;
          mask-image: url(../img/common/line-head-sp.svg);
  top: -4.6153846154vw;
}
@media screen and (min-width: 768px) {
  .p-index-recruit::before {
    aspect-ratio: 1530/54;
    inline-size: 106.25vw;
    -webkit-mask-image: url(../img/common/line-head.svg);
            mask-image: url(../img/common/line-head.svg);
    top: -3%;
  }
}
.p-index-recruit::after {
  -webkit-mask-image: url(../img/common/line-foot-sp.svg);
  aspect-ratio: 640/81;
  bottom: 5.1282051282vw;
  inline-size: 164.1025641026vw;
          mask-image: url(../img/common/line-foot-sp.svg);
}
@media screen and (min-width: 576px) {
  .p-index-recruit::after {
    bottom: -8px;
  }
}
@media screen and (min-width: 768px) {
  .p-index-recruit::after {
    aspect-ratio: 1567/90;
    inline-size: 108.8194444444vw;
    -webkit-mask-image: url(../img/common/line-foot.svg);
    bottom: 4%;
            mask-image: url(../img/common/line-foot.svg);
  }
}
@media screen and (min-width: 1280px) {
  .p-index-recruit::after {
    bottom: 2%;
  }
}

.p-index-recruit__bg {
  background: var(--white);
  padding-block: clamp(0.1rem, -2.537rem + 6.762vw, 7.2rem) clamp(7.2rem, 3.931rem + 8.381vw, 16rem);
}

.p-index-recruit__inner {
  color: var(--text-color);
  padding-block-start: 72px;
}

.p-index-recruit__contents {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-index-recruit__contents {
    flex-direction: row;
    gap: clamp(2.4rem, 1.806rem + 1.524vw, 4rem);
    justify-content: space-between;
  }
  .p-index-recruit__contents::after {
    aspect-ratio: 879/156;
    background: url(../img/gif/moveon_gray.gif) no-repeat center center/cover;
    content: "";
    inline-size: 61.0416666667vw;
    left: 50%;
    max-inline-size: 879px;
    position: absolute;
    top: 50%;
    translate: -50% -50%;
    z-index: 0;
  }
}

.p-index-recruit__titleWrap {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  z-index: 2;
}

.p-index-recruit__title {
  font-family: var(--font-ja-min);
  font-size: clamp(6.3rem, 4.814rem + 3.81vw, 10.3rem);
  line-height: 130%;
}

.p-index-recruit__text {
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__text {
    margin-block-start: 16px;
  }
}

.p-index-cta__bg {
  margin-block-start: -32px;
}
@media screen and (min-width: 1024px) {
  .p-index-cta__bg {
    margin-block-start: 32px;
  }
}

.p-cta {
  padding-block: clamp(8rem, 6.514rem + 3.81vw, 12rem) clamp(8.8rem, 6.72rem + 5.333vw, 14.4rem);
}

.p-cta__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(6.4rem, 5.917rem + 1.238vw, 7.7rem);
}

.p-cta__items {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-cta__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .p-cta__items {
    gap: 44px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-cta__link {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  overflow: hidden;
  padding-block-end: clamp(3.2rem, 2.606rem + 1.524vw, 4.8rem);
  position: relative;
}
.p-cta__link::before {
  background: var(--white);
  block-size: 1px;
  bottom: 0;
  content: "";
  inline-size: 0;
  left: 0;
  position: absolute;
  transition: inline-size var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition);
}
.p-cta__link::after {
  background: var(--white);
  block-size: 1px;
  bottom: 1px;
  content: "";
  inline-size: 100%;
  left: 0;
  position: absolute;
  transition: translate var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
.p-cta__link:focus-visible::before {
  inline-size: 100%;
}
.p-cta__link:focus-visible::after {
  translate: 100%;
}
.p-cta__link:focus-visible .c-btn-circle::before {
  animation: arrowSlideOut var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
}
.p-cta__link:focus-visible .c-btn-circle::after {
  animation: arrowSlideIn var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
}
@media (any-hover: hover) {
  .p-cta__link:hover::before {
    inline-size: 100%;
  }
  .p-cta__link:hover::after {
    translate: 100%;
  }
  .p-cta__link:hover .c-btn-circle::before {
    animation: arrowSlideOut var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
  }
  .p-cta__link:hover .c-btn-circle::after {
    animation: arrowSlideIn var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
  }
}

.p-cta__textWrap {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-family: var(--font-ja-min);
  gap: clamp(0.8rem, 0.503rem + 0.762vw, 1.6rem);
}

.p-cta__about {
  font-size: 1.6rem;
  line-height: 120%;
}

.p-cta__linkText {
  font-size: 2.4rem;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .p-cta__linkText {
    font-size: 2.6rem;
  }
}

.p-privacy {
  margin-block-end: clamp(5.6rem, 3.817rem + 4.571vw, 10.4rem);
}

.p-privacy__lead {
  font-family: var(--font-ja-min);
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
  inline-size: 100%;
  line-height: 180%;
  max-inline-size: 442px;
}

.p-privacy__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-block-start: clamp(6.4rem, 5.806rem + 1.524vw, 8rem);
}

.p-privacy__contentWrap {
  border-block-start: 1px solid var(--dark-gray);
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  gap: 24px;
  line-height: 180%;
  padding-block-start: 5.6rem;
}
@media screen and (min-width: 1024px) {
  .p-privacy__contentWrap {
    display: grid;
    gap: clamp(2.4rem, 1.063rem + 3.429vw, 6rem);
    grid-template-columns: 300px 1fr; /* h2の幅を200pxに固定 */
  }
}
@media screen and (min-width: 1280px) {
  .p-privacy__contentWrap {
    gap: clamp(2.4rem, -0.831rem + 8.286vw, 11.1rem);
  }
}
@media screen and (min-width: 1920px) {
  .p-privacy__contentWrap {
    font-size: 1.6rem;
  }
}
.p-privacy__contentWrap h2 {
  font-family: var(--font-ja-min);
  font-size: 2rem;
  line-height: 180%;
  white-space: nowrap;
}
.p-privacy__contentWrap .subtext {
  margin-inline-start: 1.56em;
}
.p-privacy__contentWrap ol {
  counter-reset: number;
}
.p-privacy__contentWrap ol .number {
  padding-left: 1.56em; /* 番号＋スペース分 */
  text-indent: -1.1em;
}
.p-privacy__contentWrap ol .number::before {
  content: counter(number) ". ";
  counter-increment: number;
  flex-shrink: 0;
  inline-size: 2em; /* 番号の幅。調整可能 */
}
.p-privacy__contentWrap ul {
  padding-inline-start: 1.6em; /* インデント */
}
.p-privacy__contentWrap ul li {
  line-height: 180%;
  padding-inline-start: 1.4em;
  position: relative;
}
.p-privacy__contentWrap ul li::before {
  aspect-ratio: 1;
  background: var(--white);
  block-size: 4px;
  border-radius: calc(infinity * 1px);
  content: "";
  inline-size: 4px;
  left: 6px;
  position: absolute;
  top: 0.8em;
}

.p-privacy__heading {
  margin-block-start: 1.8em;
}

.p-company-overview__contents {
  display: flex;
  flex-direction: column;
  gap: clamp(2.8rem, 2.354rem + 1.143vw, 4rem);
}
@media screen and (min-width: 768px) {
  .p-company-overview__contents {
    align-items: start;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-company-overview__head {
    align-self: flex-start;
    position: sticky;
    top: 120px;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-company-overview__lists .p-company-overview__list:first-child {
    padding: 0 clamp(0.8rem, -0.091rem + 2.286vw, 3.2rem) clamp(2.3rem, 1.966rem + 0.857vw, 3.2rem);
  }
}

.p-company-overview__list {
  border-block-end: 1px solid var(--dark-gray);
  display: grid;
  grid-template-columns: 122px auto;
  padding: clamp(2rem, 1.629rem + 0.952vw, 3rem) clamp(0.8rem, -0.091rem + 2.286vw, 3.2rem) clamp(2.3rem, 2.003rem + 0.762vw, 3.1rem);
}
@media screen and (min-width: 768px) {
  .p-company-overview__list {
    align-items: center;
    gap: 64px;
    inline-size: 100%;
    max-inline-size: 584px;
  }
}

.p-company-overview__name {
  font-family: var(--font-ja-min);
  font-size: 1.4rem;
  line-height: 150%;
}

.p-company-overview__detail {
  font-family: var(--font-ja-min);
  font-size: 1.4rem;
  line-height: 150%;
}

.p-company-access {
  margin-block-start: clamp(9.4rem, 6.949rem + 6.286vw, 16rem);
}

.p-company-access__contents {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .p-company-access__contents {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
  }
}

.p-company-access__map {
  aspect-ratio: 1;
  border-radius: 8px;
  display: block;
  inline-size: 87.6923076923vw;
  max-inline-size: 592px;
  overflow: hidden;
  position: relative;
  transition: filter var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
@media screen and (min-width: 768px) {
  .p-company-access__map {
    aspect-ratio: 742/426;
    inline-size: 51.5277777778vw;
    max-block-size: 426px;
    max-inline-size: 742px;
  }
}
.p-company-access__map::before {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  inset: 0;
  position: absolute;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-company-access__map::before {
    opacity: 0;
  }
}
.p-company-access__map::after {
  content: "View Map";
  position: absolute;
  -webkit-mask-image: url(../img/view-map.svg);
          mask-image: url(../img/view-map.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  aspect-ratio: 196/32;
  background: var(--white);
  inline-size: clamp(19.6rem, 18.634rem + 2.476vw, 22.2rem);
  left: 50%;
          mask-size: contain;
  top: 50%;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
  translate: -50% -50%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-company-access__map::after {
    opacity: 0;
  }
}
.p-company-access__map:focus-visible::before, .p-company-access__map:focus-visible::after {
  opacity: 1;
}
@media (any-hover: hover) {
  .p-company-access__map:hover::before {
    opacity: 1;
  }
  .p-company-access__map:hover::after {
    opacity: 1;
  }
}

.p-company-team {
  background: var(--white);
  color: var(--text-color);
  margin-block-start: clamp(5.6rem, 1.737rem + 9.905vw, 16rem);
  overflow: hidden;
  padding-block: clamp(8rem, 5.029rem + 7.619vw, 16rem);
  position: relative;
}
.p-company-team::before {
  aspect-ratio: 304/232;
  background: url(../img/gif/arrow_company.gif) no-repeat center center/cover;
  content: "";
  inline-size: 77.9487179487vw;
  opacity: 0;
  position: absolute;
  right: -20px;
  top: -2.051vw;
  transition: opacity 0.8s ease-out, visibility 0s cubic-bezier(0.8, 0, 0.4, 1);
  visibility: hidden;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-company-team::before {
    inline-size: 42.3611111111vw;
  }
}
.p-company-team.is-arrow-visible::before {
  opacity: 1;
  transition: opacity 0.8s ease-out, visibility 0s cubic-bezier(0.8, 0, 0.4, 1) 0.8s;
  visibility: visible;
}

.p-company-team__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(4.8rem, 3.611rem + 3.048vw, 8rem);
}

.p-company-team__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-company-team__contents {
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-company-team__img {
  aspect-ratio: 343/373;
  display: block;
  flex-shrink: 0;
  inline-size: 100%;
}
@media screen and (min-width: 768px) {
  .p-company-team__img {
    aspect-ratio: 462/505;
    inline-size: 32.0833333333vw;
    max-inline-size: 462px;
  }
}

.p-company-team__textWrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-inline-size: 573px;
  z-index: 1;
}

.p-company-team__nameWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-company-team__name {
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  line-height: 90%;
}

.p-company-team__name--ja {
  font-family: var(--font-ja-min);
  font-size: 1.6rem;
  line-height: 120%;
}

.p-company-team__text {
  font-size: 1.4rem;
  line-height: 180%;
}
@media screen and (min-width: 1920px) {
  .p-company-team__text {
    font-size: 1.6rem;
  }
}

.p-404 {
  margin-block-end: 120px;
  margin-block-start: 210px;
}
@media screen and (min-width: 768px) {
  .p-404 {
    margin-block-start: 235px;
  }
}

.p-404__titleWrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 576px) {
  .p-404__title {
    text-align: center;
  }
}

.p-404__text {
  font-family: var(--font-ja-min);
  font-size: 1.5rem;
}
@media screen and (min-width: 576px) {
  .p-404__text {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-404__text {
    font-size: 1.6rem;
  }
}

.p-404__btn {
  margin-block-start: clamp(6.4rem, 4.32rem + 5.333vw, 12rem);
  margin-inline: auto;
  text-align: center;
}

.p-head.--service {
  padding-block-end: clamp(8rem, 5.029rem + 7.619vw, 16rem);
}
.p-head.--recruit {
  padding-block-end: clamp(6.4rem, 2.834rem + 9.143vw, 16rem);
}

.p-head__contents {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  .p-head__contents {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .p-head__contents.--recruit {
    gap: clamp(0.1rem, -1.646rem + 4.476vw, 4.8rem);
  }
}

.p-head__title {
  font-family: var(--font-ja-min);
  font-size: clamp(2.8rem, 2.354rem + 1.143vw, 4rem);
}

.p-head__text {
  font-family: var(--font-ja-min);
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-head__text {
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .p-head__text {
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    max-inline-size: 432px;
  }
}
.p-head__text.--wide {
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
}
@media screen and (min-width: 1024px) {
  .p-head__text.--wide {
    max-inline-size: 540px;
  }
}
.p-head__text p + p {
  margin-block-start: 1.8em;
}

.p-service-card {
  background: var(--white);
  overflow: hidden;
}

.p-service-card__items {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-service-card__items {
    align-items: stretch;
    flex-direction: row;
  }
}

.p-service-card__item {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service-card__item {
    flex: 1;
  }
}
.p-service-card__item {
  /* SP時の区切り線 */
}
.p-service-card__item:not(:last-child)::after {
  background: #dddddd;
  block-size: 1px;
  bottom: 0;
  content: "";
  inline-size: 100vw;
  left: 0;
  margin-inline: calc(50% - 50vw);
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-service-card__item:not(:last-child)::after {
    content: none;
  }
}

.p-service-card__link {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: clamp(3.3rem, 2.743rem + 1.429vw, 4.8rem);
  inline-size: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: clamp(5.6rem, 3.223rem + 6.095vw, 12rem) 6.154vw;
  position: relative;
  transition-duration: var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
  transition-property: color;
}
@media (min-width: 640px) and (max-width: 767px) {
  .p-service-card__link {
    padding: clamp(5.6rem, 3.223rem + 6.095vw, 12rem) 15.3846153846vw;
  }
}
@media screen and (min-width: 768px) {
  .p-service-card__link {
    block-size: 100%;
    inline-size: 100%;
    margin-inline: revert;
    padding: clamp(5.6rem, 3.223rem + 6.095vw, 12rem) 24px clamp(5.6rem, 3.223rem + 6.095vw, 12rem) 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-service-card__link {
    padding: clamp(5.6rem, 3.223rem + 6.095vw, 12rem) 0;
  }
}
.p-service-card__link::before {
  background: var(--bg-color);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s cubic-bezier(0.8, 0, 0.4, 1);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-service-card__link.--company::before {
    left: calc(50% - 50vw);
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-service-card__link.--personal {
    padding: clamp(5.6rem, 3.223rem + 6.095vw, 12rem) 0 clamp(5.6rem, 3.223rem + 6.095vw, 12rem) 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-service-card__link.--personal {
    padding: clamp(5.6rem, 3.223rem + 6.095vw, 12rem) 0 clamp(5.6rem, 3.223rem + 6.095vw, 12rem) clamp(2.4rem, 0.32rem + 5.333vw, 8rem);
  }
}
@media screen and (min-width: 768px) {
  .p-service-card__link.--personal::before {
    left: 0;
    right: calc(50% - 50vw);
  }
}
.p-service-card__link > * {
  z-index: 2;
}
.p-service-card__link:focus-visible {
  color: var(--white);
}
.p-service-card__link:focus-visible::before {
  opacity: 1;
}
.p-service-card__link:focus-visible .p-service-card__bgText {
  opacity: 1;
}
.p-service-card__link:focus-visible .p-service-card__icon {
  background: var(--white);
}
@media (any-hover: hover) {
  .p-service-card__link:hover {
    color: var(--white);
  }
  .p-service-card__link:hover::before {
    opacity: 1;
  }
  .p-service-card__link:hover .p-service-card__bgText {
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.8, 0, 0.4, 1);
  }
  .p-service-card__link:hover .p-service-card__icon {
    background: var(--white);
  }
}

.p-service-card__bgClip {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-service-card__bgClip:has(.p-service-card__bgText.--01) {
    clip-path: polygon(-100vw 0, 100% 0, 100% 100%, -100vw 100%);
    left: -11.1111111111vw;
    overflow: revert;
  }
}
@media screen and (min-width: 1280px) {
  .p-service-card__bgClip:has(.p-service-card__bgText.--01) {
    left: -160px;
  }
}

.p-service-card__bgText {
  background: linear-gradient(131deg, #2e2e2e 5.1%, #242424 97.71%);
  background-clip: text;
  color: transparent;
  font-family: var(--font-ja-min);
  line-height: 1;
  position: absolute;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.2s linear;
  z-index: 1;
}
.p-service-card__bgText.--01 {
  font-size: clamp(12.8rem, 10.869rem + 4.952vw, 18rem);
  left: -7px;
  top: -21px;
}
@media screen and (min-width: 768px) {
  .p-service-card__bgText.--01 {
    left: -20px;
    top: -40px;
  }
}
.p-service-card__bgText.--02 {
  font-size: clamp(13.5rem, 11.829rem + 4.286vw, 18rem);
  inline-size: 567px;
  left: -23px;
  letter-spacing: -0.09em;
  top: -34px;
}
@media screen and (min-width: 768px) {
  .p-service-card__bgText.--02 {
    left: -20px;
    letter-spacing: 0;
    top: -40px;
  }
}
.p-service-card__bgText .--キ {
  letter-spacing: -0.25em;
}
.p-service-card__bgText .--ヤ {
  letter-spacing: -0.37em;
}
.p-service-card__bgText .--リ {
  letter-spacing: -0.35em;
}
.p-service-card__bgText .--択 {
  letter-spacing: -0.08em;
}
.p-service-card__bgText .--は {
  letter-spacing: -0.13em;
}
.p-service-card__bgText .--生 {
  letter-spacing: -0.2em;
}
.p-service-card__bgText .--方 {
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .p-service-card__bgText .--キ,
  .p-service-card__bgText .--ヤ,
  .p-service-card__bgText .--リ,
  .p-service-card__bgText .--択,
  .p-service-card__bgText .--は,
  .p-service-card__bgText .--生,
  .p-service-card__bgText .--方 {
    letter-spacing: 0;
  }
}

.p-service-card__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-service-card__titleWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-service-card__title--en {
  font-family: var(--font-en);
  font-size: 3.2rem;
  line-height: 1.2;
  transition: color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}

.p-service-card__title {
  font-family: var(--font-ja-min);
  font-size: 4rem;
  line-height: 1.5;
  transition: color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
@media screen and (min-width: 1024px) {
  .p-service-card__title {
    font-size: clamp(4rem, 3.703rem + 0.762vw, 4.8rem);
  }
}

.p-service-card__text {
  flex-grow: 1;
  transition: color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}

.p-service-card__footerWrap {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: clamp(1.6rem, 1.303rem + 0.762vw, 2.4rem);
}
@media screen and (min-width: 768px) {
  .p-service-card__footerWrap {
    margin-block-start: auto;
  }
}

.p-service-card__footerText {
  border-block-end: 1px solid var(--text-color);
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  padding-block-end: 8px;
  transition: color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1), border-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}

.p-service-card__icon {
  aspect-ratio: 1;
  flex-shrink: 0;
  inline-size: 56px;
  -webkit-mask-image: url(../img/common/ico-link-circle.svg);
          mask-image: url(../img/common/ico-link-circle.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--text-color);
          mask-size: contain;
  transition: background-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}

.p-service-mivoo {
  border-block-end: 1px solid var(--dark-gray);
  padding-block: clamp(4.8rem, 2.423rem + 6.095vw, 11.2rem) clamp(8rem, 7.109rem + 2.286vw, 10.4rem);
}

.p-service-mivoo__link {
  background: url(../img/common/mivoo-bg-sp.jpg) no-repeat center center/cover;
  border-radius: 8px;
  display: block;
  inline-size: 100%;
  padding: 36px 24px;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
}
@media screen and (min-width: 768px) {
  .p-service-mivoo__link {
    background: url(../img/common/mivoo-bg.jpg) no-repeat center center/cover;
    padding: 67px 40px 75px;
  }
}
.p-service-mivoo__link:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-service-mivoo__link:hover {
    opacity: 0.6;
  }
}

.p-service-mivoo__wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.303rem + 0.762vw, 2.4rem);
  margin-block-start: 24px;
}
@media screen and (min-width: 768px) {
  .p-service-mivoo__wrap {
    margin-block-start: 0;
  }
}

.p-service-mivoo__subject {
  border: 1px solid;
  border-radius: calc(infinity * 1px);
  display: grid;
  font-size: 1.6rem;
  font-weight: 600;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  line-height: 1.5;
  margin-inline: auto;
  padding: 3px 24px 5px 24px;
  place-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-mivoo__subject {
    background: var(--white);
    border: none;
    color: var(--dark-gray);
    font-size: 1.5rem;
    padding: 0 24px;
    vertical-align: middle;
  }
}

.p-service-mivoo__logo {
  aspect-ratio: 205/60;
  inline-size: clamp(20.5rem, 15.783rem + 12.095vw, 33.2rem);
}

.p-service-mivoo__textWrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-service-mivoo__textWrap {
    display: flex;
    gap: 16px;
    justify-content: center;
  }
}

.p-service-mivoo__text {
  font-size: clamp(2rem, 1.851rem + 0.381vw, 2.4rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-mivoo__text {
    text-align: left;
  }
}

.p-service-message__inner {
  padding-block: clamp(4rem, -0.383rem + 11.238vw, 15.8rem);
}

.p-service-message__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-service-message__contents {
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-service-message__title {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-style: normal;
  line-height: 1.2;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-service-message__title {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
  }
}

.p-service-message__text {
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.303rem + 0.762vw, 2.4rem);
}
.p-service-message__text p + p {
  margin-block-start: 1.8em;
}

.p-news {
  margin-block: clamp(6.2rem, 2.56rem + 9.333vw, 16rem) clamp(4rem, -0.457rem + 11.429vw, 16rem);
}

.p-news__contents {
  display: grid;
  gap: 47px;
}
@media screen and (min-width: 768px) {
  .p-news__contents {
    grid-template-columns: max-content 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .p-news__contents {
    gap: clamp(4.7rem, 1.431rem + 8.381vw, 13.5rem);
  }
}

.p-news__menus {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-news__menus {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

.p-news__menu--link {
  border: 1px solid;
  border-radius: calc(infinity * 1px);
  color: var(--white);
  display: inline-block;
  font-family: var(--font-ja-min);
  font-size: 1.3rem;
  line-height: 1.2;
  min-inline-size: 80px;
  padding: 5px 16px 6px;
  text-align: center;
  transition-duration: var(--hover-transition);
  transition-property: color, background-color;
  transition-timing-function: cubic-bezier(0.8, 0, 0.4, 1);
  white-space: nowrap;
}
@media screen and (min-width: 1920px) {
  .p-news__menu--link {
    font-size: 1.4rem;
  }
}
.p-news__menu--link:not(.is-current):focus-visible {
  background: var(--white);
  color: var(--text-color);
}
@media (any-hover: hover) {
  .p-news__menu--link:not(.is-current):hover {
    background: var(--white);
    color: var(--text-color);
  }
}
.p-news__menu--link.is-current {
  background: var(--white);
  color: var(--text-color);
}

.p-news__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-single {
  margin-block-start: clamp(14.8rem, 13.463rem + 3.429vw, 18.4rem);
  position: relative;
}

.p-single__inner {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .p-single__inner {
    padding-inline: 40px;
  }
}

.p-single__wrap {
  background: var(--white);
  border-radius: 8px;
  color: var(--text-color);
  padding: clamp(5.1rem, 4.171rem + 2.381vw, 7.6rem) clamp(2.4rem, 0.32rem + 5.333vw, 8rem) clamp(5.6rem, 4.709rem + 2.286vw, 8rem);
}
.p-single__wrap .l-breadcrumb {
  color: var(--text-color);
}
.p-single__wrap .l-breadcrumb .l-breadcrumb__list {
  color: var(--text-color);
}
.p-single__wrap .l-breadcrumb .l-breadcrumb__list a {
  color: var(--text-color);
}
.p-single__wrap .l-breadcrumb .l-breadcrumb__list > span {
  color: var(--light-gray);
}
.p-single__wrap .l-breadcrumb .js-fade-in {
  opacity: 1;
}

.p-single__article {
  display: flex;
  flex-direction: column;
  gap: clamp(3.2rem, 1.937rem + 3.238vw, 6.6rem);
  margin-block-start: 28px;
}
@media screen and (min-width: 768px) {
  .p-single__article {
    margin-block-start: 36px;
  }
}

.p-single__headerWrap {
  border-block-end: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.303rem + 0.762vw, 2.4rem);
  padding-block-end: clamp(3.2rem, 2.309rem + 2.286vw, 5.6rem);
}

.p-single__title {
  font-family: var(--font-ja-min);
  font-size: clamp(2rem, 1.851rem + 0.381vw, 2.4rem);
  line-height: 1.5;
  order: 2;
}

.p-single__meta {
  order: 1;
}

.p-single__content h2 {
  font-family: var(--font-ja-min);
  font-size: clamp(2rem, 1.851rem + 0.381vw, 2.4rem);
}
.p-single__content h3 {
  font-family: var(--font-ja-min);
  font-size: clamp(1.8rem, 1.726rem + 0.19vw, 2rem);
}
.p-single__content h4 {
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.526rem + 0.19vw, 1.8rem);
}
.p-single__content p {
  color: var(--gray);
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-single__content p {
    font-size: 1.6rem;
  }
}
.p-single__content blockquote {
  color: var(--gray);
  font-size: 1.5rem;
  font-weight: 500;
  padding-inline-start: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single__content blockquote {
    font-size: 1.6rem;
  }
}
.p-single__content blockquote::before {
  background: #e3e3e3;
  block-size: 100%;
  content: "";
  inline-size: 4px;
  left: 0;
  position: absolute;
  top: 0;
}
.p-single__content hr {
  border-block-start: 1px solid #dddddd;
  margin-block: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
}
.p-single__content em {
  font-style: italic;
}
.p-single__content strong {
  font-weight: 600;
}
.p-single__content p a:not(.wp-block-button__link) {
  text-decoration: underline;
}
.p-single__content a {
  color: var(--light-gray);
  font-size: 1.5rem;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
@media screen and (min-width: 768px) {
  .p-single__content a {
    font-size: 1.6rem;
  }
}
.p-single__content a:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-single__content a:hover {
    opacity: 0.6;
  }
}
.p-single__content .wp-block-image {
  block-size: auto;
  inline-size: 100%;
}
.p-single__content ul,
.p-single__content ol {
  padding-inline-start: clamp(0.8rem, 0.503rem + 0.762vw, 1.6rem);
}
.p-single__content ul li {
  color: var(--gray);
  font-size: 1.6rem;
  padding-inline-start: clamp(1.2rem, 1.051rem + 0.381vw, 1.6rem);
  position: relative;
}
.p-single__content ul li::before {
  aspect-ratio: 1;
  background: var(--gray);
  border-radius: calc(infinity * 1px);
  content: "";
  inline-size: 6px;
  left: 0;
  position: absolute;
  top: 0.7em;
}
.p-single__content ol {
  list-style-position: outside;
  list-style-type: decimal;
  padding-inline-start: clamp(2rem, 1.703rem + 0.762vw, 2.8rem);
}
.p-single__content ol li {
  color: var(--gray);
  font-size: 1.6rem;
  padding-inline-start: 2px;
}
.p-single__content table {
  color: var(--gray);
  display: block;
  inline-size: 100%;
  overflow-x: scroll;
}
.p-single__content table thead {
  display: block;
}
.p-single__content table tbody {
  border-top: 1px solid #dddddd;
  display: block;
}
.p-single__content table tr {
  display: flex;
  justify-content: space-between;
}
.p-single__content table th,
.p-single__content table td {
  display: grid;
  place-items: center;
}
.p-single__content table th {
  background: var(--bg-color-light);
  flex: 1;
  flex-shrink: 0;
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
  line-height: 1.8;
  min-width: 0;
  padding: 14px;
  white-space: nowrap;
}
.p-single__content table td {
  flex: 1;
  flex-shrink: 0;
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
  line-height: 1.8;
  padding: 14px;
}
.p-single__content p.is-style-callout {
  background: var(--bg-color-light);
  color: var(--gray);
  font-size: 1.5rem;
  margin-block: clamp(2.4rem, 1.806rem + 1.524vw, 4rem);
  padding: 24px 24px 32px 24px;
}
@media screen and (min-width: 768px) {
  .p-single__content p.is-style-callout {
    font-size: 1.6rem;
  }
}
.p-single__content p.is-style-annotation {
  color: var(--light-gray);
  font-size: 1.2rem;
  margin-block: 8px 24px;
}
@media screen and (min-width: 1920px) {
  .p-single__content p.is-style-annotation {
    font-size: 1.4rem;
  }
}
.p-single__content figcaption {
  color: var(--light-gray);
  contain: inline-size;
  font-size: 1.2rem;
  margin-block-start: 8px;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .p-single__content figcaption {
    font-size: 1.4rem;
  }
}
.p-single__content h2 {
  margin-block-end: clamp(1.6rem, 1.303rem + 0.762vw, 2.4rem);
}
.p-single__content h3,
.p-single__content h4 {
  margin-block-end: 20px;
}
.p-single__content p + p {
  margin-block-start: 20px;
}
.p-single__content figure {
  margin-block: clamp(2.4rem, 1.806rem + 1.524vw, 4rem);
}
.p-single__content table {
  margin-block: clamp(4rem, 3.406rem + 1.524vw, 5.6rem);
}
.p-single__content p + ul,
.p-single__content p + ol,
.p-single__content ul + p,
.p-single__content ol + p,
.p-single__content ul + ol,
.p-single__content ol + ul,
.p-single__content div + p,
.p-single__content div + ul,
.p-single__content div + ol {
  margin-block-start: clamp(2.4rem, 2.103rem + 0.762vw, 3.2rem);
}
.p-single__content p + h2,
.p-single__content ul + h2,
.p-single__content ol + h2,
.p-single__content figure + h2,
.p-single__content table + h2,
.p-single__content div + h2 {
  margin-block-start: clamp(4rem, 3.406rem + 1.524vw, 5.6rem);
}
.p-single__content p + h3,
.p-single__content ul + h3,
.p-single__content ol + h3,
.p-single__content figure + h3,
.p-single__content table + h3,
.p-single__content div + h3 {
  margin-block-start: clamp(2.4rem, 1.211rem + 3.048vw, 5.6rem);
}
.p-single__content p + h4,
.p-single__content ul + h4,
.p-single__content ol + h4,
.p-single__content figure + h4,
.p-single__content table + h4,
.p-single__content div + h4 {
  margin-block-start: clamp(2.4rem, 2.103rem + 0.762vw, 3.2rem);
}
.p-single__content table + table {
  margin-block-start: clamp(4rem, 3.406rem + 1.524vw, 5.6rem);
}
.p-single__content ul li + li,
.p-single__content ol li + li {
  margin-block-start: 0.1em;
}
.p-single__content ul ul,
.p-single__content ol ul,
.p-single__content ul ol,
.p-single__content ol ol {
  margin-block-start: 0.6em;
}

.p-single__btn {
  margin-block-start: clamp(8.8rem, 7.909rem + 2.286vw, 11.2rem);
}
.p-single__btn .c-btn-circle {
  border-color: var(--text-color);
  display: block;
}
.p-single__btn .c-btn-circle::before, .p-single__btn .c-btn-circle::after {
  background: var(--text-color);
  display: block;
  rotate: 180deg;
}
.p-single__btn .c-btn-circle::before {
  translate: -50% -50%;
}
.p-single__btn .c-btn-circle::after {
  opacity: 0;
  translate: calc(-50% + 20px) -50%;
}
.p-single__btn:focus-visible .c-btn-circle::before {
  animation: arrowSlideOutReverse var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
}
.p-single__btn:focus-visible .c-btn-circle::after {
  animation: arrowSlideInReverse var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
}
@media (any-hover: hover) {
  .p-single__btn:hover .c-btn-circle::before {
    animation: arrowSlideOutReverse var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
  }
  .p-single__btn:hover .c-btn-circle::after {
    animation: arrowSlideInReverse var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
  }
}

.p-single__nav {
  align-items: center;
  color: var(--text-color);
  display: grid;
  gap: clamp(0.8rem, 0.503rem + 0.762vw, 1.6rem);
  grid-template-columns: 1fr 1fr;
  margin-block-start: clamp(0.8rem, 0.503rem + 0.762vw, 1.6rem);
}
.p-single__nav.is-only-next {
  grid-template-columns: 1fr 1fr;
}
.p-single__nav.is-only-next .p-single__nav--item.is-next {
  grid-column: 1;
}
.p-single__nav.is-only-prev {
  grid-template-columns: 1fr 1fr;
}
.p-single__nav.is-only-prev .p-single__nav--item.is-prev {
  grid-column: 2;
}

.p-single__nav--item {
  background: var(--white);
  block-size: 100%;
  border-radius: 8px;
  flex: 1;
  gap: clamp(1.4rem, 1.029rem + 0.952vw, 2.4rem);
  inline-size: 100%;
  transition: opacity var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) 0s;
}
@media screen and (min-width: 768px) {
  .p-single__nav--item {
    align-items: center;
    display: flex;
  }
}
.p-single__nav--item.is-next {
  padding: 24px 24px 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-single__nav--item.is-next {
    flex-direction: row-reverse;
    margin-inline-end: auto;
    padding: 24px 32px 32px 24px;
  }
  .p-single__nav--item.is-next:focus-visible .p-single__nav--arrow::before {
    animation: arrowSlideOutReverse var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
  }
  .p-single__nav--item.is-next:focus-visible .p-single__nav--arrow::after {
    animation: arrowSlideInReverse var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .p-single__nav--item.is-next:hover .p-single__nav--arrow::before {
    animation: arrowSlideOutReverse var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
  }
  .p-single__nav--item.is-next:hover .p-single__nav--arrow::after {
    animation: arrowSlideInReverse var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
  }
}
.p-single__nav--item.is-prev {
  padding: 24px 16px 24px 24px;
}
@media screen and (min-width: 768px) {
  .p-single__nav--item.is-prev {
    margin-inline-start: auto;
    padding: 28px 24px 28px 32px;
  }
  .p-single__nav--item.is-prev:focus-visible .p-single__nav--arrow::before {
    animation: arrowSlideOut var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
  }
  .p-single__nav--item.is-prev:focus-visible .p-single__nav--arrow::after {
    animation: arrowSlideIn var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .p-single__nav--item.is-prev:hover .p-single__nav--arrow::before {
    animation: arrowSlideOut var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) forwards;
  }
  .p-single__nav--item.is-prev:hover .p-single__nav--arrow::after {
    animation: arrowSlideIn var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1) var(--hover-transition) forwards;
  }
}

.p-single__nav--wrap {
  align-items: stretch;
  block-size: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}

.p-single__nav--label {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize;
}

.p-single__nav--title {
  display: -webkit-box;
  font-size: clamp(1.4rem, 1.326rem + 0.19vw, 1.6rem);
  font-weight: 500;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  flex-grow: 1;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-single__nav--title {
    -webkit-line-clamp: 3;
  }
}

.p-single__nav--arrow {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-single__nav--arrow {
    aspect-ratio: 22/12;
    display: block;
    inline-size: 22px;
    overflow: hidden;
    position: relative;
  }
  .p-single__nav--arrow::before {
    content: "";
    position: absolute;
    -webkit-mask-image: url(../img/common/arrow.svg);
            mask-image: url(../img/common/arrow.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
    background: var(--text-color);
    block-size: 12px;
    inline-size: 22px;
    left: 50%;
            mask-size: contain;
    top: 50%;
    transform-origin: center;
    translate: -50% -50%;
  }
  .p-single__nav--arrow::after {
    content: "";
    position: absolute;
    -webkit-mask-image: url(../img/common/arrow.svg);
            mask-image: url(../img/common/arrow.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
    background: var(--text-color);
    block-size: 12px;
    inline-size: 22px;
    left: 50%;
            mask-size: contain;
    opacity: 0;
    top: 50%;
    transform-origin: center;
    translate: -50% -50%;
  }
  .p-single__nav--arrow.is-next::before, .p-single__nav--arrow.is-next::after {
    rotate: 180deg;
  }
}

.p-single__cta {
  margin-block-start: clamp(6.4rem, 4.32rem + 5.333vw, 12rem);
}

.p-recruit__text-loop {
  inline-size: 100%;
  margin-block: clamp(6.4rem, 3.131rem + 8.381vw, 15.2rem) clamp(7.7rem, 4.691rem + 7.714vw, 15.8rem);
  overflow: hidden;
  position: relative;
}

.p-recruit__text-loopWrap {
  display: flex;
  gap: clamp(4rem, 2.514rem + 3.81vw, 8rem);
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  white-space: nowrap;
  will-change: transform;
  z-index: 1;
}
.p-recruit__text-loopWrap li {
  color: transparent;
  display: inline-block;
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: clamp(4rem, 2.514rem + 3.81vw, 8rem);
  line-height: 1;
  white-space: nowrap;
  text-stroke: 1px rgba(255, 255, 255, 0.5);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  z-index: -1;
}
.p-recruit__text-loopWrap li span {
  display: inline-block;
  translate: 0.12em;
}
@keyframes loop-left {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}
.p-recruit-merit {
  container-type: inline-size;
}

.p-recruit-merit__contents {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr;
  place-content: center;
}

.p-recruit-merit__title {
  block-size: -moz-fit-content;
  block-size: fit-content;
  font-family: var(--font-ja-min);
  font-size: 4rem;
  line-height: 1.4;
  position: relative;
}
.p-recruit-merit__title::after {
  aspect-ratio: 310/43;
  background: url(../img/gif/doubleline.gif) no-repeat center center/cover;
  bottom: -22px;
  content: "";
  inline-size: 320px;
  left: -30px;
  opacity: 0;
  position: absolute;
  transition: opacity var(--hover-transition) ease-out;
  z-index: -1;
}
.p-recruit-merit__title.is-active::after {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .p-recruit-merit__title::after {
    opacity: 1;
    transition: none;
  }
}

.p-recruit-merit__lists {
  display: flex;
  flex-direction: column;
  gap: clamp(4.8rem, 3.5rem + 3.333vw, 8.3rem);
}

.p-recruit-merit__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-recruit-merit__subTitle {
  font-family: var(--font-ja-min);
  font-size: clamp(2.8rem, 2.651rem + 0.381vw, 3.2rem);
  line-height: 1.5;
  position: relative;
}
.p-recruit-merit__subTitle::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  opacity: 0;
  position: absolute;
  transition: opacity var(--hover-transition) ease-out;
  z-index: -1;
}
.p-recruit-merit__subTitle.--01::after {
  aspect-ratio: 262/80;
  background-image: url(../img/gif/correct_1.gif);
  inline-size: clamp(26.2rem, 25.197rem + 2.571vw, 28.9rem);
  left: -38px;
  top: -16px;
}
.p-recruit-merit__subTitle.--02::after {
  aspect-ratio: 183/82;
  background-image: url(../img/gif/correct_2.gif);
  inline-size: clamp(18.6rem, 18.266rem + 0.857vw, 19.5rem);
  left: -39px;
  top: 30px;
}
.p-recruit-merit__subTitle.--03::after {
  aspect-ratio: 318/72;
  background-image: url(../img/gif/correct_3.gif);
  inline-size: clamp(31.6rem, 29.074rem + 6.476vw, 38.4rem);
  left: -19px;
  top: 30px;
}
.p-recruit-merit__subTitle.is-active::after {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .p-recruit-merit__subTitle::after {
    opacity: 1;
    transition: none;
  }
}

.p-recruit-merit__text {
  color: var(--very-light-gray);
  font-size: 1.4rem;
  line-height: var(--line-height-base);
}
@media screen and (min-width: 1920px) {
  .p-recruit-merit__text {
    font-size: 1.6rem;
  }
}

@container (min-width: 768px) {
  .p-recruit-merit__subTitle {
    inline-size: -moz-fit-content;
    inline-size: fit-content;
  }
  .p-recruit-merit__subTitle.--01::after {
    left: -34px;
    top: -12px;
  }
  .p-recruit-merit__subTitle.--02::after {
    left: revert;
    right: -38px;
    top: -8px;
  }
  .p-recruit-merit__subTitle.--03::after {
    left: revert;
    right: -21px;
    top: -10px;
  }
}
@container (min-width: 1080px) {
  .p-recruit-merit__contents {
    grid-template-columns: min(240px, 100%) 1fr;
  }
  .p-recruit-merit__title::after {
    bottom: -24px;
    left: -39px;
  }
}
@container (min-width: 1400px) {
  .p-recruit-merit__contents {
    gap: clamp(8rem, 5.326rem + 6.857vw, 15.2rem);
  }
}
.p-recruit-join {
  padding-block: clamp(7.7rem, 4.617rem + 7.905vw, 16rem);
}

.p-recruit-join__titleWrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media screen and (min-width: 768px) {
  .p-recruit-join__titleWrap {
    gap: 0;
  }
}

.p-recruit-join__title {
  line-height: 0.9;
  text-align: center;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .p-recruit-join__title {
    line-height: 1.2;
  }
}

.p-consult-features {
  margin-block: clamp(11.3rem, 8.069rem + 8.286vw, 20rem) clamp(8rem, 3.729rem + 10.952vw, 19.5rem);
}

.p-consult-features__items {
  counter-reset: features-counter;
  display: flex;
  flex-direction: column;
}

.p-consult-features__item {
  counter-increment: features-counter;
  display: flex;
  flex-direction: column;
}
.p-consult-features__item:nth-child(2) {
  margin-block-start: clamp(6.2rem, 2.634rem + 9.143vw, 15.8rem);
}
.p-consult-features__item:nth-child(3) {
  margin-block-start: clamp(4.7rem, -0.017rem + 12.095vw, 17.4rem);
}

.p-consult-features__titleWrap {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-consult-features__titleWrap {
    gap: 24px;
    grid-template-columns: min(42px, 100%) 1fr;
  }
}

.p-consult-features__number {
  color: var(--light-gray);
  font-family: var(--font-en);
  font-size: 2.4rem;
  line-height: 1.4;
}
.p-consult-features__number::before {
  content: counter(features-counter, decimal-leading-zero);
}

.p-consult-features__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-ja-min);
  font-size: clamp(4rem, 3.406rem + 1.524vw, 5.6rem);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-consult-features__title {
    border-block-end: 1px solid;
    flex-direction: row;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-block: calc(-1 * var(--half-leading));
    padding-block-end: 11px;
  }
}
.p-consult-features__title > span {
  border-block-end: 1px solid;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  padding-block-end: 7px;
}
@media screen and (min-width: 768px) {
  .p-consult-features__title > span {
    display: contents;
  }
}

.p-consult-features__cards {
  display: grid;
  gap: clamp(1.6rem, 0.894rem + 1.81vw, 3.5rem);
  grid-template-columns: minmax(350px, 540px);
  justify-content: center;
  margin-block-start: clamp(4.4rem, 2.84rem + 4vw, 8.6rem);
}
@media screen and (min-width: 1024px) {
  .p-consult-features__cards {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }
}

.p-consult-features__card {
  align-items: center;
  background: var(--bg-color);
  border-radius: 8px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  padding: 6.2vw 6.2vw 8.2vw;
}
@media screen and (min-width: 768px) {
  .p-consult-features__card {
    gap: 27px;
    padding: 32px 24px 40px;
  }
}

@media screen and (min-width: 768px) {
  .p-consult-features__imgWrap {
    block-size: clamp(13.7rem, 12.994rem + 1.81vw, 15.6rem);
  }
}

.p-consult-features__img {
  overflow: hidden;
}
.p-consult-features__img.--01 {
  aspect-ratio: 168/123;
  inline-size: clamp(15.5rem, 13.346rem + 5.524vw, 21.3rem);
}
.p-consult-features__img.--02 {
  aspect-ratio: 169/147;
  inline-size: clamp(15.7rem, 15.031rem + 1.714vw, 17.5rem);
}
.p-consult-features__img.--03 {
  aspect-ratio: 144/147;
  inline-size: clamp(12.9rem, 12.454rem + 1.143vw, 14.1rem);
}

.p-consult-features__cardTitle {
  font-family: var(--font-ja-min);
  font-size: clamp(2.4rem, 2.251rem + 0.381vw, 2.8rem);
  line-height: 1.5;
  text-align: center;
}

.p-consult-features__cardText {
  color: var(--very-light-gray);
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 1920px) {
  .p-consult-features__cardText {
    font-size: 1.6rem;
  }
}

.p-consult-features__charts {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 42px;
  margin-block-start: clamp(5.6rem, 4.56rem + 2.667vw, 8.4rem);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-consult-features__charts {
    flex-direction: row;
    gap: clamp(0.8rem, -0.389rem + 3.048vw, 4rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-consult-features__charts {
    gap: clamp(4.2rem, 3.086rem + 2.857vw, 7.2rem);
  }
}

.p-consult-features__chart {
  display: flex;
  flex-direction: column;
  inline-size: 100%;
}
@media screen and (min-width: 768px) {
  .p-consult-features__chart {
    inline-size: revert;
  }
}
.p-consult-features__chart:nth-child(1) .p-consult-features__chartWrap {
  margin-block-start: clamp(3.4rem, 3.029rem + 0.952vw, 4.4rem);
}
.p-consult-features__chart:nth-child(2) .p-consult-features__chartWrap {
  margin-block-start: clamp(1.1rem, -0.051rem + 2.952vw, 4.2rem);
}
@media screen and (min-width: 768px) {
  .p-consult-features__chart:nth-child(2) .p-consult-features__chartWrap {
    margin-block-start: clamp(3.4rem, 3.103rem + 0.762vw, 4.2rem);
  }
}

.p-consult-features__chartLabel {
  border: 1px solid;
  border-radius: calc(infinity * 1px);
  color: var(--white);
  display: inline-block;
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  line-height: 1.5;
  padding: 4px 30px 6px;
  text-align: center;
}

.p-consult-features__chartWrap {
  inline-size: clamp(32.2rem, 29.377rem + 7.238vw, 39.8rem);
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-consult-features__chartWrap {
    padding-inline: 13px;
  }
}

.p-consult-features__chartImg {
  block-size: auto;
  inline-size: 100%;
  opacity: 0;
  transition: opacity var(--hover-transition) ease-out;
}
.p-consult-features__chartImg.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .p-consult-features__chartImg {
    opacity: 1;
    transition: none;
  }
}

.p-consult-features__chartImg img {
  block-size: auto;
  inline-size: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-consult-features__chartText {
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  gap: 1px;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  line-height: 1;
  position: absolute;
  text-transform: capitalize;
  white-space: nowrap;
}
.p-consult-features__chartText.--01 {
  align-items: end;
  right: 0;
  top: calc(50% + 15px);
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-consult-features__chartText.--01 {
    top: calc(50% + 7px);
  }
}
.p-consult-features__chartText.--02 {
  left: -7px;
  top: calc(50% + 50px);
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-consult-features__chartText.--02 {
    left: 0;
    top: calc(50% + 84px);
  }
}
.p-consult-features__chartText.--03 {
  left: -7px;
  top: 56px;
}
@media screen and (min-width: 768px) {
  .p-consult-features__chartText.--03 {
    left: 0;
    top: 66px;
  }
}
.p-consult-features__chartText.--04 {
  font-size: clamp(2rem, 1.851rem + 0.381vw, 2.4rem);
  left: calc(50% - 19px);
  top: -14px;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .p-consult-features__chartText.--04 {
    left: calc(50% - 21px);
    top: -11px;
  }
}
.p-consult-features__chartText.--05 {
  align-items: center;
  flex-direction: row;
  font-size: 56px;
  gap: 11px;
  left: 50%;
  text-align: center;
  top: 50%;
  translate: -50% -50%;
}
.p-consult-features__chartText span {
  color: var(--very-light-gray);
}
.p-consult-features__chartText .--small {
  font-size: clamp(2rem, 1.851rem + 0.381vw, 2.4rem);
}
.p-consult-features__chartText .--ja {
  font-family: var(--font-ja-min);
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-consult-features__chartText .--ja {
    letter-spacing: 0;
    writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
  }
}

.p-consult-features__tags {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 15px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-block-start: clamp(4.8rem, 3.389rem + 3.619vw, 8.6rem);
}
@media screen and (min-width: 768px) {
  .p-consult-features__tags {
    grid-column: 2;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}

.p-consult-features__tag {
  background: var(--dark-gray);
  border: 1px solid var(--light-gray);
  border-radius: calc(infinity * 1px);
  display: inline-block;
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  line-height: 1.5;
  padding: 5px 23px 6px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-consult-features__tag {
    padding: 5px 31px 6px;
  }
}

.p-consult-features__etc {
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
  line-height: 1.5;
}

.p-consult-contact__link {
  background: var(--white);
  color: var(--text-color);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  inline-size: 100%;
  inline-size: 100%;
  margin-inline: auto;
  padding: clamp(5rem, 3.886rem + 2.857vw, 8rem) clamp(2rem, 0.366rem + 4.19vw, 6.4rem) clamp(5.6rem, 4.709rem + 2.286vw, 8rem) clamp(3.6rem, 2.56rem + 2.667vw, 6.4rem);
  place-content: center;
  place-items: center;
  position: relative;
}
.p-consult-contact__link::after {
  block-size: 100%;
  border: 1px solid;
  content: "";
  inline-size: 100%;
  left: 50%;
  position: absolute;
  scale: 1.1;
  top: 50%;
  transition: scale var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
  translate: -50% -50%;
}
.p-consult-contact__link:focus-visible {
  scale: 0.98 0.9;
}
@media (any-hover: hover) {
  .p-consult-contact__link:hover::after {
    scale: 0.98 0.9;
  }
}

.p-consult-contact__titleWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
@media screen and (min-width: 768px) {
  .p-consult-contact__titleWrap {
    gap: 8px;
  }
}

.p-consult-contact__btn {
  aspect-ratio: 1;
  border: 1px solid var(--text-color);
  border-radius: calc(infinity * 1px);
  inline-size: 56px;
  position: relative;
}
.p-consult-contact__btn::before {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--text-color);
  block-size: 12px;
  inline-size: 22px;
  left: 50%;
          mask-size: contain;
  top: 50%;
  transition: background-color var(--hover-transition) ease-out;
  translate: -50% -50%;
}

.p-section-btn {
  background: var(--text-color);
  margin-inline: clamp(2.4rem, 1.806rem + 1.524vw, 4rem);
}

.p-section-btn__link {
  background: var(--text-color);
  border: 1px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 40px;
  inline-size: 100%;
  inline-size: 100%;
  margin-inline: auto;
  max-inline-size: 1360px;
  overflow: hidden;
  padding: clamp(7.2rem, 6.903rem + 0.762vw, 8rem) clamp(2rem, 0.366rem + 4.19vw, 6.4rem) clamp(3.2rem, 1.714rem + 3.81vw, 7.2rem) clamp(2rem, 0.366rem + 4.19vw, 6.4rem);
  place-content: center;
  place-items: center;
  transition: background-color var(--hover-transition) ease-out, color var(--hover-transition) ease-out;
  transition-delay: 0s;
}
@media screen and (min-width: 768px) {
  .p-section-btn__link {
    grid-template-columns: 1fr auto;
  }
}
.p-section-btn__link.--recruit {
  padding: clamp(5.5rem, 4.571rem + 2.381vw, 8rem) clamp(2rem, 0.366rem + 4.19vw, 6.4rem) clamp(3.2rem, 1.863rem + 3.429vw, 6.8rem) clamp(2rem, -0.971rem + 7.619vw, 10rem);
}

@media screen and (min-width: 768px) {
  .p-section-btn__titleWrap {
    gap: 0;
    margin-inline-end: -40px;
  }
}

.p-section-btn__btn {
  aspect-ratio: 1;
  border: 1px solid var(--white);
  border-radius: calc(infinity * 1px);
  inline-size: 56px;
  position: relative;
}
.p-section-btn__btn::before {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--arrow-color, var(--white));
  block-size: 12px;
  inline-size: 22px;
  left: 50%;
          mask-size: contain;
  top: 50%;
  transition: background-color var(--hover-transition) ease-out;
  translate: -50% -50%;
}

.p-recruit-page {
  margin-block-start: clamp(4.5rem, 1.714rem + 7.143vw, 12rem);
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .p-recruit-page {
    max-inline-size: 1920px;
  }
}
.p-recruit-page.--career {
  margin-block-start: clamp(4.5rem, 2.309rem + 5.619vw, 10.4rem);
}

.p-recruit-page__contents {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-recruit-page__contents {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
}

.p-recruit-page__textWrap {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 3.109rem + 2.286vw, 6.4rem);
}

.p-recruit-page__heading {
  font-family: var(--font-ja-min);
  font-size: clamp(4.8rem, 3.611rem + 3.048vw, 8rem);
  line-height: 1.5;
}

.p-recruit-page__text {
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
}
.p-recruit-page__text p + p {
  margin-block-start: 1.8em;
}

.p-recruit-page__enText {
  color: oklch(62.5% 0 0deg / 0.2);
  font-family: var(--font-ja-min);
  font-size: 1.1rem;
  line-height: 1.5;
  position: absolute;
  right: 24px;
  top: 174px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-page__enText {
    color: var(--light-gray);
    margin-block-start: 4px;
    position: relative;
    right: revert;
    top: revert;
  }
}
.p-recruit-page__enText.--career {
  color: oklch(84.5% 0 0deg / 0.4);
}
@media screen and (min-width: 768px) {
  .p-recruit-page__enText.--career {
    color: var(--very-light-gray);
  }
}

.p-recruit-page__bgText {
  background: linear-gradient(94deg, rgba(68, 68, 68, 0.6) -10.04%, rgba(22, 22, 22, 0.6) 105.34%);
  background-clip: text;
  bottom: calc(clamp(7.2rem, 5.12rem + 5.333vw, 12.8rem) * -1);
  font-family: var(--font-en);
  font-size: clamp(8.8rem, 7.611rem + 3.048vw, 12rem);
  left: -8px;
  position: absolute;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-recruit-page__bgText {
    left: -10px;
  }
}
.p-recruit-page__bgText.--career {
  background: linear-gradient(94deg, #ebebeb -10.04%, #f8f8f8 105.34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  bottom: calc(clamp(8rem, 6.217rem + 4.571vw, 12.8rem) * -1);
  font-size: clamp(7.2rem, 5.417rem + 4.571vw, 12rem);
}

.p-flow {
  background: var(--white);
  container-type: inline-size;
  padding-block: clamp(6.4rem, 4.32rem + 5.333vw, 12rem) clamp(3.2rem, 2.011rem + 3.048vw, 6.4rem);
}
.p-flow.--career {
  padding-block: clamp(6.4rem, 4.32rem + 5.333vw, 12rem) clamp(3.2rem, -0.069rem + 8.381vw, 12rem);
}

.p-flow__contents {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@container (min-width: 900px) {
  .p-flow__contents {
    gap: clamp(4rem, 0.211rem + 9.714vw, 14.2rem);
    grid-template-columns: min(240px, 100%) 1fr;
  }
}
.p-flow__steps {
  counter-reset: flow-counter;
  display: flex;
  flex-direction: column;
}

.p-flow__step {
  align-items: flex-start;
  counter-increment: flow-counter;
  display: flex;
  flex-direction: row;
  gap: clamp(1.6rem, 0.709rem + 2.286vw, 4rem);
  position: relative;
}
.p-flow__step:not(:last-child)::after {
  background: var(--text-color);
  block-size: 100%;
  content: "";
  inline-size: 1px;
  left: calc(clamp(5.6rem, 5.006rem + 1.524vw, 7.2rem) / 2);
  position: absolute;
  top: 0;
  z-index: 1;
}

.p-flow__stepNumber {
  background: var(--white);
  block-size: clamp(5.6rem, 5.006rem + 1.524vw, 7.2rem);
  border: 1px solid var(--text-color);
  border-radius: calc(infinity * 1px);
  color: var(--text-color);
  display: grid;
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: clamp(2rem, 1.851rem + 0.381vw, 2.4rem);
  font-style: normal;
  inline-size: clamp(5.6rem, 5.006rem + 1.524vw, 7.2rem);
  line-height: 1.4;
  padding: 16px;
  place-content: center;
  position: relative;
  text-transform: capitalize;
  white-space: nowrap;
  z-index: 2;
}
.p-flow__stepNumber::before {
  content: counter(flow-counter, decimal-leading-zero);
}

.p-flow__stepContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 16px clamp(3.1rem, 1.911rem + 3.048vw, 6.3rem);
}

.p-flow__stepTitle {
  color: var(--text-color);
  font-family: var(--font-ja-min);
  font-size: 2.4rem;
  line-height: 1;
}
.p-flow__stepTitle.--lh-1_5 {
  line-height: 1.5;
}

@container (min-width: 560px) {
  .p-flow__stepTitle.--lh-1_5 {
    line-height: 1;
  }
}
.p-flow__stepText {
  color: var(--dark-gray);
  font-size: 1.4rem;
  font-weight: 500;
}
.p-flow__stepText p + p {
  margin-block-start: 1.8em;
}

.p-qa {
  padding-block: clamp(6.4rem, 4.32rem + 5.333vw, 12rem) clamp(8rem, 6.514rem + 3.81vw, 12rem);
}
.p-qa.--career {
  background: var(--bg-color-light);
  padding-block: clamp(6.4rem, 4.32rem + 5.333vw, 12rem);
}

.p-qa__items {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.303rem + 0.762vw, 2.4rem);
  margin-block-start: 64px;
}

.p-career-head__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-block-start: clamp(2.8rem, 2.354rem + 1.143vw, 4rem);
}
@media screen and (min-width: 768px) {
  .p-career-head__items {
    flex-direction: row;
    gap: 24px;
  }
}

.p-career-head__item {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  text-align: center;
}

.p-career-head__award {
  background: linear-gradient(180deg, #e5be1c 0%, #7f6910 100%);
  background-clip: text;
  font-family: var(--font-ja-min);
  font-size: 22px;
  line-height: 1;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-inline: 44px;
}
@media screen and (min-width: 768px) {
  .p-career-head__award {
    font-size: 24px;
    padding-inline: 47px;
  }
}
.p-career-head__award .is-big,
.p-career-head__award .is-unit {
  background: linear-gradient(180deg, #e5be1c 0%, #7f6910 100%);
  background-clip: text;
  font-family: var(--font-ja-min);
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-career-head__award .is-big {
  font-size: clamp(6rem, 5.851rem + 0.381vw, 6.4rem);
}
.p-career-head__award .is-unit {
  font-size: clamp(3rem, 2.926rem + 0.19vw, 3.2rem);
}
.p-career-head__award::before, .p-career-head__award::after {
  aspect-ratio: 30/84;
  background: url(../img/career/gold-leaf.png) no-repeat center center/contain;
  content: "";
  inline-size: 30px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-career-head__award::before, .p-career-head__award::after {
    inline-size: 32px;
  }
}
.p-career-head__award::before {
  left: 0;
}
.p-career-head__award::after {
  right: 0;
  transform: rotateY(180deg);
}

.p-career-head__text {
  font-family: var(--font-ja-min);
  font-size: 2rem;
  margin-block-start: clamp(5.4rem, 4.731rem + 1.714vw, 7.2rem);
}

.p-career-client {
  margin-block-start: clamp(14.5rem, 12.643rem + 4.762vw, 19.5rem);
}

.p-career-client__title {
  color: var(--light-gray);
  font-family: var(--font-ja-min);
  font-size: clamp(1.6rem, 1.451rem + 0.381vw, 2rem);
  line-height: 1.5;
}

.p-career-client__logos {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.006rem + 1.524vw, 3.2rem);
  inline-size: 100vw;
  margin-block-start: clamp(3rem, 2.034rem + 2.476vw, 5.6rem);
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

.p-career-client__row {
  align-items: center;
  display: flex;
  inline-size: 100%;
}

.p-career-client__track {
  align-items: center;
  animation-duration: var(--loop-duration, 40s);
  animation-iteration-count: infinite;
  animation-name: loop-x;
  animation-timing-function: linear;
  block-size: clamp(6rem, 5.257rem + 1.905vw, 8rem);
  display: flex;
  gap: 32px;
  inline-size: -moz-max-content;
  inline-size: max-content;
  will-change: transform;
}
.p-career-client__track img {
  block-size: 100%;
  inline-size: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-career-client__row--reverse .p-career-client__track {
  animation-direction: reverse;
}

@keyframes loop-x {
  to {
    transform: translateX(calc(var(--loop-width) * -1));
  }
}
.p-career-reason {
  container-type: inline-size;
  margin-block-start: clamp(9.6rem, 5.737rem + 9.905vw, 20rem);
}

.p-career-reason__title {
  font-family: var(--font-ja-min);
  font-size: clamp(3.2rem, 2.903rem + 0.762vw, 4rem);
  line-height: 1.4;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-career-reason__title {
    line-height: 1.5;
  }
}
.p-career-reason__title > span {
  border-block-end: 1px solid;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  padding-block-end: 7px;
}

.p-career-reason__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-block-start: clamp(4rem, 3.48rem + 1.333vw, 5.4rem);
}

@container (min-width: 796px) {
  .p-career-reason__items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-career-reason__item {
    flex-grow: 0;
    inline-size: min(350px, 100%);
  }
  .p-career-reason__imgWrap {
    block-size: 171px;
    display: flex;
    flex-direction: column;
  }
}
.p-career-reason__item {
  align-items: center;
  background: var(--bg-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px 40px;
}

.p-career-reason__img {
  display: block;
  margin-block: auto;
}
.p-career-reason__img.--01 {
  aspect-ratio: 210/164;
  inline-size: clamp(18.8rem, 19.023rem - 0.571vw, 18.2rem);
}
.p-career-reason__img.--02 {
  aspect-ratio: 226/163;
  inline-size: clamp(21.6rem, 20.82rem + 2vw, 23.7rem);
}
.p-career-reason__img.--03 {
  aspect-ratio: 160/163;
  inline-size: clamp(14rem, 13.331rem + 1.714vw, 15.8rem);
}

.p-career-reason__heading {
  color: var(--white);
  font-family: var(--font-ja-min);
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
}

.p-career-reason__text {
  color: var(--very-light-gray);
  font-size: 1.4rem;
}
@media screen and (min-width: 1920px) {
  .p-career-reason__text {
    font-size: 1.6rem;
  }
}
.p-career-reason__text p + p {
  margin-block-start: 1.8em;
}

.p-career-contact {
  background: var(--text-color);
  padding-block: clamp(6.4rem, 5.806rem + 1.524vw, 8rem);
}
@media screen and (min-width: 768px) {
  .p-career-contact {
    background: none;
    border-radius: 8px;
    margin: clamp(8rem, 6.514rem + 3.81vw, 12rem) clamp(2.4rem, 1.806rem + 1.524vw, 4rem);
    padding-block: 0;
  }
}

.p-career-contact__inner {
  margin-inline: clamp(2.4rem, 1.806rem + 1.524vw, 4rem);
}
@media screen and (min-width: 768px) {
  .p-career-contact__inner {
    margin-inline: 0;
  }
}

.p-career-contact__link {
  background: var(--text-color);
  border: 1px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  inline-size: 100%;
  margin-inline: auto;
  overflow: hidden;
  padding: clamp(6.4rem, 5.806rem + 1.524vw, 8rem) clamp(2rem, 0.366rem + 4.19vw, 6.4rem);
  transition: background-color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1), color var(--hover-transition) cubic-bezier(0.8, 0, 0.4, 1);
  transition-delay: 0s;
}
@media screen and (min-width: 768px) {
  .p-career-contact__link {
    border-color: none;
    padding: 80px 64px 96px 92px;
  }
}
.p-career-contact__link:focus-visible {
  background: var(--white);
  border-color: var(--text-color);
  color: var(--text-color);
}
.p-career-contact__link:focus-visible .p-career-contact__btn {
  border-color: var(--text-color);
}
.p-career-contact__link:focus-visible .p-career-contact__btn::before {
  background: var(--text-color);
}
@media (any-hover: hover) {
  .p-career-contact__link:hover {
    background: var(--white);
    border-color: var(--text-color);
    color: var(--text-color);
  }
  .p-career-contact__link:hover .p-career-contact__btn {
    border-color: var(--text-color);
  }
  .p-career-contact__link:hover .p-career-contact__btn::before {
    background: var(--text-color);
  }
}

.p-career-contact__contents {
  display: grid;
  gap: 40px;
  place-content: center;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-career-contact__contents {
    grid-template-columns: 1fr auto;
    inline-size: 100%;
    margin-inline: auto;
    max-inline-size: 1360px;
  }
}

.p-career-contact__titleWrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-career-contact__titleWrap {
    gap: 4px;
  }
}

.p-career-contact__btn {
  aspect-ratio: 1;
  border: 1px solid var(--white);
  border-radius: calc(infinity * 1px);
  inline-size: 56px;
  position: relative;
}
.p-career-contact__btn::before {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background: var(--arrow-color, var(--white));
  block-size: 12px;
  inline-size: 22px;
  left: 50%;
          mask-size: contain;
  top: 50%;
  transition: background-color var(--hover-transition) ease-out;
  translate: -50% -50%;
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

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

@media screen and (max-width: 1023px) {
  .u-hidden-lg {
    display: none;
  }
}

.u-visually-hidden {
  block-size: 4px !important;
  border: none !important;
  contain: strict !important;
  display: block !important;
  inline-size: 4px !important;
  inset: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  position: fixed !important;
  visibility: visible !important;
}

.u-inline-block {
  display: inline-block;
  font-weight: inherit;
}

.u-manual-br {
  display: contents;
}
.u-manual-br:lang(ja) {
  display: block flow-root;
}

.u-manual-wbr {
  display: contents;
}
.u-manual-wbr:lang(ja) {
  display: inline flow-root;
}

.u-text {
  font-size: 1.6rem;
  font-weight: 600;
}
.u-text p + p {
  margin-block-start: 1.8em;
}

.u-white {
  color: var(--white);
}

.u-black {
  color: var(--text-color);
}