@charset "UTF-8";
/*
 * モダンリセットCSS
 * 最新のブラウザ事象を考慮したリセットCSS
 */
/* ボックスサイジングをすべての要素に適用 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

/* HTML要素の基本設定 */
html {
  font-size: 62.5%;
  /* 10px = 1rem */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; }

/* body要素の基本設定 */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* メディア要素の設定 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto; }

/* フォーム要素の設定 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit; }

/* リスト要素のスタイルリセット */
ul,
ol {
  list-style: none; }

/* リンク要素の設定 */
a {
  text-decoration: none;
  color: inherit; }

/* テーブル要素の設定 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* 見出し要素のリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit; }

/* フォーカス状態の視覚的表示を改善 */
:focus-visible {
  outline: 2px solid #4d90fe;
  outline-offset: 2px; }

/* スクリーンリーダー用のテキスト */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

/* 印刷時のスタイル調整 */
@media print {
  body {
    background-color: #fff; }

  @page {
    margin: 1.5cm; } }
/* 縦書きテキストのサポート */
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed; }

/* ダークモードサポート */
@media (prefers-color-scheme: dark) {
  body {
    color: #f0f0f0;
    background-color: #121212; }

  :focus-visible {
    outline-color: #90caf9; } }
/* 動きを減らす設定のサポート */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto; } }
body {
  font-family: "Heebo", "Noto Sans JP", sans-serif;
  color: #222;
  padding-top: 88px;
  background-color: #f7f7f7; }
  body.--open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%; }

a,
button {
  cursor: pointer; }

.header {
  display: flex;
  padding: 12px;
  align-items: center;
  width: 100dvw;
  box-sizing: border-box;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; }

.header__container {
  display: flex;
  height: 64px;
  width: 100%;
  padding: 12px 16px 12px 24px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-radius: 9999px;
  position: relative; }
  .header__container.--scrolled {
    background: rgba(246, 247, 248, 0.6);
    backdrop-filter: blur(10px); }
  @media screen and (max-width: 896px) {
    .header__container {
      animation: fadeIn 0.4s ease-out forwards; }
      .header__container.--open {
        border-radius: 8px 8px 0 0;
        background: #f7f7f7; } }

@media screen and (max-width: 896px) {
  .header__logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; } }

.header__logo img {
  width: 93px;
  height: 32px; }

.header__navigation {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
  opacity: 1;
  pointer-events: auto; }
  @media screen and (max-width: 1140px) {
    .header__navigation {
      gap: 24px; } }
  @media screen and (max-width: 896px) {
    .header__navigation {
      padding: 10px 40px 40px 40px;
      flex-direction: column;
      gap: 12px;
      position: absolute;
      top: 64px;
      left: 0;
      width: 100%;
      border-radius: 0px 0px 8px 8px;
      align-items: flex-start;
      display: none; }
      .header__navigation.--open {
        display: block;
        animation: fadeIn 0.4s ease-out forwards;
        background: #f7f7f7; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px; }
  @media screen and (max-width: 1140px) {
    .header__menu {
      gap: 24px; } }
  @media screen and (max-width: 896px) {
    .header__menu {
      flex-direction: column;
      gap: 0;
      align-items: flex-start; } }

@media screen and (max-width: 896px) {
  .header__menu-item {
    padding: 16px 0; } }

.header__menu-link {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.75px;
  position: relative; }
  @media screen and (max-width: 1140px) {
    .header__menu-link {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 21px */
      letter-spacing: 0.7px;
      white-space: nowrap; } }
  @media screen and (max-width: 896px) {
    .header__menu-link {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }
  .header__menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background-color: transparent;
    transition: background-color 0.5s ease; }
  .header__menu-link:hover::after {
    background-color: #000; }

.header__buttons {
  display: flex;
  gap: 12px; }
  @media screen and (max-width: 896px) {
    .header__buttons {
      padding-top: 22px;
      flex-direction: column;
      width: 100%; } }

.header__button {
  display: flex;
  padding: 9px 24px 8px 24px;
  align-items: center;
  gap: 40px;
  border-radius: 9999px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.75px;
  height: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease; }
  @media screen and (max-width: 896px) {
    .header__button {
      display: flex;
      padding: 12px 32px;
      align-items: center;
      justify-content: space-between;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      letter-spacing: 0.8px;
      height: 48px;
      width: 100%; } }
  .header__button span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 0.6px;
    position: relative;
    z-index: 2; }
    @media screen and (max-width: 896px) {
      .header__button span {
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 15px */
        letter-spacing: 0.75px; } }
  .header__button.header__button--outline {
    border: 1px solid #2c2f35;
    position: relative;
    z-index: 1; }
    .header__button.header__button--outline::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #2c2f35;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
      z-index: -1;
      border-radius: 9999px; }
    .header__button.header__button--outline:hover {
      color: #fff; }
      .header__button.header__button--outline:hover::before {
        transform: scaleX(1); }
  .header__button.header__button--primary {
    background: #2c2f35;
    color: #fff;
    border: 1px solid transparent;
    position: relative;
    z-index: 1; }
    .header__button.header__button--primary::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #fff;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
      z-index: -1;
      border-radius: 9999px; }
    .header__button.header__button--primary:hover {
      color: #2c2f35;
      border: 1px solid #2c2f35; }
      .header__button.header__button--primary:hover::before {
        transform: scaleX(1); }

.header__toggle-menu {
  display: none; }
  @media screen and (max-width: 896px) {
    .header__toggle-menu {
      display: flex;
      flex-direction: column;
      gap: 5px; } }
  .header__toggle-menu span {
    transition: all 0.3s ease;
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: #2c2f35;
    cursor: pointer; }
  .header__toggle-menu.--open span {
    transition: all 0.3s ease;
    width: 26px; }
    .header__toggle-menu.--open span:nth-child(1) {
      transform: rotate(25deg) translate(1px, 7px); }
    .header__toggle-menu.--open span:nth-child(2) {
      opacity: 0; }
    .header__toggle-menu.--open span:nth-child(3) {
      transform: rotate(-25deg) translate(1px, -7px);
      position: relative;
      top: 1px; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 47, 53, 0.4);
  backdrop-filter: blur(10px);
  z-index: 50; }
  .overlay.--open {
    display: block;
    animation: fadeIn 0.4s ease-out forwards; }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.footer {
  background: #2c2f35;
  color: #fff;
  position: relative; }
  .footer a {
    color: #fff; }

.footer-contact {
  transition: all 0.3s ease;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch; }
  @media screen and (max-width: 896px) {
    .footer-contact {
      padding: 12px; } }
  .footer-contact .footer-contact__container {
    transition: all 0.3s ease;
    width: 100%;
    padding: 80px 110px;
    border-radius: 16px;
    background: #41454e; }
    @media screen and (max-width: 896px) {
      .footer-contact .footer-contact__container {
        padding: 24px 32px; } }
  .footer-contact .footer-contact__content {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 896px) {
      .footer-contact .footer-contact__content {
        flex-direction: column;
        align-items: flex-start; } }
  .footer-contact .footer-contact__title {
    color: #fff;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1.28px; }
    @media screen and (max-width: 896px) {
      .footer-contact .footer-contact__title {
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 72px */
        letter-spacing: 0.96px; } }
  .footer-contact .footer-contact__description {
    padding-top: 16px;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 36px */
    letter-spacing: 1.2px; }
    @media screen and (max-width: 896px) {
      .footer-contact .footer-contact__description {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .footer-contact .footer-contact__icon {
    transition: all 0.3s ease;
    border-radius: 9999px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
    .footer-contact .footer-contact__icon span {
      text-align: center;
      font-size: 40px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%;
      /* 40px */
      letter-spacing: 2px;
      color: #fff; }
    @media screen and (max-width: 896px) {
      .footer-contact .footer-contact__icon {
        margin-top: 16px;
        margin-left: auto;
        width: 48px;
        height: 48px; }
        .footer-contact .footer-contact__icon span {
          font-size: 18px; } }
  @media screen and (min-width: 896px) {
    .footer-contact:hover {
      padding: 40px; }
      .footer-contact:hover .footer-contact__container {
        padding: 60px 90px; } }
  .footer-contact:hover .footer-contact__icon {
    background: #fff; }
    .footer-contact:hover .footer-contact__icon span {
      color: #222; }

.footer-entry {
  display: flex;
  padding: 80px 130px 40px 130px;
  flex-direction: column;
  gap: 80px;
  justify-content: center;
  text-align: center; }
  @media screen and (max-width: 1200px) {
    .footer-entry {
      padding: 80px 60px 40px 60px; } }
  @media screen and (max-width: 896px) {
    .footer-entry {
      padding: 24px;
      gap: 32px; } }
  .footer-entry .footer-entry__container {
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .footer-entry .footer-entry__container .footer-entry__title {
      font-size: 64px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 96px */
      letter-spacing: 1.28px; }
      @media screen and (max-width: 896px) {
        .footer-entry .footer-entry__container .footer-entry__title {
          font-size: 48px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          /* 72px */
          letter-spacing: 0.96px; } }
    .footer-entry .footer-entry__container .footer-entry__description {
      font-size: 24px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 36px */
      letter-spacing: 1.2px; }
      @media screen and (max-width: 896px) {
        .footer-entry .footer-entry__container .footer-entry__description {
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }
  .footer-entry .footer-entry__link {
    display: flex;
    gap: 20px;
    align-items: center; }
    @media screen and (max-width: 896px) {
      .footer-entry .footer-entry__link {
        flex-direction: column; } }
    .footer-entry .footer-entry__link .footer-entry__link-item {
      width: calc(50% - 10px);
      height: 192px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      gap: 16px;
      background: #41454e;
      font-size: 24px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 36px */
      letter-spacing: 1.2px;
      transition: all 0.3s ease; }
      @media screen and (max-width: 896px) {
        .footer-entry .footer-entry__link .footer-entry__link-item {
          justify-content: space-between;
          width: 100%;
          height: 96px;
          padding: 24px 32px;
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }
      .footer-entry .footer-entry__link .footer-entry__link-item:hover {
        height: 152px;
        transition: all 0.3s ease;
        position: relative; }
        @media screen and (max-width: 896px) {
          .footer-entry .footer-entry__link .footer-entry__link-item:hover {
            height: 80px; } }
      .footer-entry .footer-entry__link .footer-entry__link-item .footer-entry__icon {
        transition: all 0.3s ease;
        border-radius: 9999px;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; }
        .footer-entry .footer-entry__link .footer-entry__link-item .footer-entry__icon span {
          text-align: center;
          font-size: 24px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
          /* 24px */
          letter-spacing: 1.2px;
          color: #fff; }
        @media screen and (max-width: 896px) {
          .footer-entry .footer-entry__link .footer-entry__link-item .footer-entry__icon {
            width: 48px;
            height: 48px; }
            .footer-entry .footer-entry__link .footer-entry__link-item .footer-entry__icon span {
              font-size: 18px; } }
      .footer-entry .footer-entry__link .footer-entry__link-item:hover .footer-entry__icon {
        background: #fff; }
        .footer-entry .footer-entry__link .footer-entry__link-item:hover .footer-entry__icon span {
          color: #222; }

.footer-main {
  display: flex;
  padding: 60px 130px 32px 130px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch; }
  @media screen and (max-width: 1200px) {
    .footer-main {
      padding: 60px 60px 32px 60px; } }
  @media screen and (max-width: 992px) {
    .footer-main {
      padding: 60px 40px 32px 40px; } }
  @media screen and (max-width: 896px) {
    .footer-main {
      padding: 24px; } }
  .footer-main a {
    position: relative;
    transition: all 0.5s ease; }
    .footer-main a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 3px;
      width: 100%;
      height: 1px;
      background-color: transparent;
      transition: background-color 0.5s ease; }
    .footer-main a:hover::after {
      background-color: #fff; }

.footer-main__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch; }

.footer-main__content {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  justify-content: space-between;
  width: 100%; }
  @media screen and (max-width: 896px) {
    .footer-main__content {
      flex-direction: column-reverse; } }

.footer-logo {
  width: 185px;
  height: 64px;
  flex-shrink: 0; }
  @media screen and (max-width: 896px) {
    .footer-logo {
      margin-top: 36px;
      width: 139px;
      height: 48px; } }
  .footer-logo a:after {
    content: none; }

.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 62px; }
  @media screen and (max-width: 1200px) {
    .footer-nav {
      gap: 30px; } }
  @media screen and (max-width: 992px) {
    .footer-nav {
      gap: 30px; } }
  @media screen and (max-width: 896px) {
    .footer-nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px 0;
      width: 100%; }
      .footer-nav .footer-nav__column {
        width: 100%; }
        .footer-nav .footer-nav__column:nth-child(1) {
          grid-column: 1;
          grid-row: 1; }
        .footer-nav .footer-nav__column:nth-child(2) {
          grid-column: 2;
          grid-row: 1; }
        .footer-nav .footer-nav__column:nth-child(3) {
          grid-column: 2;
          grid-row: 2; } }

.footer-nav__column {
  width: 196px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch; }
  .footer-nav__column .footer-nav__section {
    margin-bottom: 32px; }
    .footer-nav__column .footer-nav__section:last-of-type {
      margin-bottom: 0; }
    @media screen and (max-width: 896px) {
      .footer-nav__column .footer-nav__section {
        margin-bottom: 24px; } }
  .footer-nav__column .footer-nav__section:has(+ .footer-nav__links) {
    margin-bottom: 0; }

.footer-nav__label {
  color: #636977;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 22.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .footer-nav__label {
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 18px */
      letter-spacing: 0.6px; } }

.footer-nav__title {
  display: block;
  padding-top: 8px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 36px */
  letter-spacing: 1.2px; }
  @media screen and (max-width: 896px) {
    .footer-nav__title {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }

.footer-nav__links {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch; }
  @media screen and (max-width: 896px) {
    .footer-nav__links {
      padding-top: 8px;
      gap: 8px; } }

.footer-nav__link {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }

.footer-bottom {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  position: relative; }
  @media screen and (max-width: 896px) {
    .footer-bottom {
      margin-top: 16px;
      gap: 16px;
      flex-direction: column-reverse;
      align-items: flex-start; } }
  .footer-bottom .footer-copyright {
    color: #9ea4b1;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .footer-bottom .footer-copyright {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 20.4px */
        letter-spacing: 0.6px; } }
  .footer-bottom .footer-policy {
    display: flex;
    align-items: center;
    gap: 40px; }
  .footer-bottom .footer-policy__item {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 23.8px */
    letter-spacing: 0.7px; }
    @media screen and (max-width: 896px) {
      .footer-bottom .footer-policy__item {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 20.4px */
        letter-spacing: 0.6px; } }

.footer-to-top {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #ebedf1;
  position: absolute;
  right: 32px;
  bottom: 32px;
  cursor: pointer; }
  .footer-to-top span {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 24px */
    letter-spacing: 1.2px; }
  .footer-to-top:hover {
    transition: all 0.3s ease;
    background: #fff;
    color: #222; }
  @media screen and (max-width: 896px) {
    .footer-to-top {
      width: 48px;
      height: 48px; }
      .footer-to-top span {
        font-size: 18px; } }

.c-primary-bk-button {
  display: inline-flex;
  padding: 20px 48px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-radius: 9999px;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 33px */
  letter-spacing: 1.1px;
  position: relative;
  border: 1px solid transparent;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s ease, border 0.3s ease; }
  .c-primary-bk-button::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #2c2f35;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1; }
  .c-primary-bk-button:hover {
    color: #2c2f35;
    border: 1px solid #2c2f35; }
    .c-primary-bk-button:hover::before {
      transform: scaleX(0);
      transform-origin: right; }
  .c-primary-bk-button span {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 20px */
    letter-spacing: 1px;
    position: relative; }

.c-primary-wh-button {
  display: inline-flex;
  padding: 20px 48px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-radius: 9999px;
  color: #222;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 33px */
  letter-spacing: 1.1px;
  position: relative;
  border: 1px solid transparent;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s ease; }
  .c-primary-wh-button::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #ebedf1;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1; }
  .c-primary-wh-button:hover {
    color: #fff; }
    .c-primary-wh-button:hover::before {
      transform: scaleX(0);
      transform-origin: right; }
    .c-primary-wh-button:hover::after {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #2c2f35;
      z-index: -2; }
  .c-primary-wh-button span {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 20px */
    letter-spacing: 1px;
    position: relative; }

.c-primary-bk-button.--md,
.c-primary-wh-button.--md {
  padding: 16px 32px;
  gap: 64px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.9px; }
  .c-primary-bk-button.--md span,
  .c-primary-wh-button.--md span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 16px */
    letter-spacing: 0.8px; }
  @media screen and (max-width: 896px) {
    .c-primary-bk-button.--md,
    .c-primary-wh-button.--md {
      padding: 12px 32px;
      font-size: 16px; }
      .c-primary-bk-button.--md span,
      .c-primary-wh-button.--md span {
        font-size: 15px; } }
.c-primary-bk-button.--xsm,
.c-primary-wh-button.--xsm {
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .c-primary-bk-button.--xsm span,
  .c-primary-wh-button.--xsm span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 14px */
    letter-spacing: 0.7px; }

.c-primary-icon-button {
  display: flex;
  width: 120px;
  height: 120px;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2px;
  border-radius: 9999px;
  position: relative;
  z-index: 1;
  background-color: #2c2f35;
  border: 1px solid #2c2f35;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out; }
  .c-primary-icon-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 50%;
    z-index: -1; }
  .c-primary-icon-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out; }
  .c-primary-icon-button:hover {
    color: #222; }
    .c-primary-icon-button:hover::after {
      width: 100%;
      height: 100%; }
  .c-primary-icon-button.--md {
    width: 64px;
    height: 64px; }
    .c-primary-icon-button.--md span {
      font-size: 24px; }
  .c-primary-icon-button.--sm {
    width: 48px;
    height: 48px; }
    .c-primary-icon-button.--sm > div {
      line-height: 0; }
    .c-primary-icon-button.--sm span {
      font-size: 18px; }

.c-primary-icon-button-parent:hover .c-primary-icon-button {
  color: #fff;
  border: 1px solid #222;
  color: #222; }
  .c-primary-icon-button-parent:hover .c-primary-icon-button::after {
    width: 100%;
    height: 100%;
    background-color: #ebedf1; }

.c-secondary-icon-button {
  display: flex;
  width: 120px;
  height: 120px;
  flex-direction: column;
  justify-content: center;
  color: #222;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 40px */
  letter-spacing: 2px;
  border-radius: 9999px;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  border: 1px solid #2c2f35;
  background-color: fff;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out; }
  .c-secondary-icon-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 50%;
    z-index: -1; }
  .c-secondary-icon-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #2c2f35;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out; }
  .c-secondary-icon-button:not(:hover)::after {
    width: 0;
    height: 0; }
  .c-secondary-icon-button.--md {
    width: 48px;
    height: 48px; }
    .c-secondary-icon-button.--md > div {
      line-height: 0; }
    .c-secondary-icon-button.--md span {
      font-size: 18px; }

.c-secondary-icon-button-parent:hover .c-secondary-icon-button {
  color: #fff;
  border: 1px solid #2c2f35; }
  .c-secondary-icon-button-parent:hover .c-secondary-icon-button::after {
    width: 100%;
    height: 100%; }

.c-tertiary-icon-button {
  display: flex;
  width: 120px;
  height: 120px;
  flex-direction: column;
  justify-content: center;
  color: #222;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 40px */
  letter-spacing: 2px;
  border-radius: 9999px;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out; }
  .c-tertiary-icon-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 50%;
    z-index: -1; }
  .c-tertiary-icon-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #2c2f35;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out; }
  .c-tertiary-icon-button:not(:hover)::after {
    width: 0;
    height: 0; }
  .c-tertiary-icon-button.--lg {
    width: 80px;
    height: 80px; }
    .c-tertiary-icon-button.--lg span {
      font-size: 32px; }
  .c-tertiary-icon-button.--md {
    width: 64px;
    height: 64px; }
    .c-tertiary-icon-button.--md span {
      font-size: 24px; }
  .c-tertiary-icon-button.--sm {
    width: 48px;
    height: 48px; }
    .c-tertiary-icon-button.--sm span {
      font-size: 24px; }
  .c-tertiary-icon-button.--xsm {
    width: 24px;
    height: 24px; }
    .c-tertiary-icon-button.--xsm span {
      font-size: 14px; }

.c-tertiary-icon-button-parent:hover .c-tertiary-icon-button {
  color: #fff;
  border: 1px solid #2c2f35; }
  .c-tertiary-icon-button-parent:hover .c-tertiary-icon-button::after {
    width: 100%;
    height: 100%; }

.c-breadcrumb {
  display: flex;
  align-items: center;
  margin-top: 12px;
  padding-right: 20px;
  justify-content: flex-end;
  gap: 12px; }
  @media screen and (max-width: 896px) {
    .c-breadcrumb {
      padding-right: 24px;
      gap: 10px; } }
  .c-breadcrumb .c-breadcrumb__item {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 23.8px */
    letter-spacing: 0.7px; }
    @media screen and (max-width: 896px) {
      .c-breadcrumb .c-breadcrumb__item {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 20.4px */
        letter-spacing: 0.6px; } }
  .c-breadcrumb .c-breadcrumb__item--current {
    color: #9ea4b1; }
  .c-breadcrumb .c-breadcrumb__link {
    color: #222222;
    text-decoration: none; }
    .c-breadcrumb .c-breadcrumb__link:hover {
      text-decoration: underline; }
  .c-breadcrumb .c-breadcrumb__separator {
    width: 6px;
    height: 12px;
    background: url("../img/components/breadcumb.svg") no-repeat center; }

.c-page-header {
  max-width: 1140px;
  margin: 80px auto 0; }
  @media screen and (max-width: 896px) {
    .c-page-header {
      margin: 40px auto 0;
      padding: 0 24px; } }
  .c-page-header .c-page-header__title {
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 180px */
    letter-spacing: 2.4px; }
    @media screen and (max-width: 896px) {
      .c-page-header .c-page-header__title {
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 72px */
        letter-spacing: 0.96px; } }
    .c-page-header .c-page-header__title.--secondary {
      font-weight: 400;
      line-height: 110%;
      /* 132px */
      letter-spacing: 2.4px; }
  .c-page-header .c-page-header__subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.9px; }
    @media screen and (max-width: 896px) {
      .c-page-header .c-page-header__subtitle {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }

.c-section-header {
  border-bottom: 1px solid #2c2f35;
  padding-bottom: 24px;
  margin-bottom: 40px; }
  @media screen and (max-width: 896px) {
    .c-section-header {
      margin-bottom: 24px;
      padding-bottom: 16px; } }
  .c-section-header .c-section-header__title {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 48px */
    letter-spacing: 1.6px; }
    @media screen and (max-width: 896px) {
      .c-section-header .c-section-header__title {
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 36px */
        letter-spacing: 1.2px; } }

.c-page-description {
  padding-top: 80px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  /* 40px */
  letter-spacing: 1px;
  color: #2c2f35; }
  @media screen and (max-width: 896px) {
    .c-page-description {
      padding: 40px 24px 0;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px; } }

@media screen and (min-width: 896px) {
  .c-page-container {
    padding: 0 20px; } }

.c-page-layout {
  padding: 80px 0 160px;
  max-width: 1140px;
  margin: 0 auto; }
  @media screen and (max-width: 896px) {
    .c-page-layout {
      padding: 40px 0 80px; } }
  .c-page-layout .c-page-layout__content {
    display: flex;
    flex-direction: column;
    gap: 120px; }
    @media screen and (max-width: 896px) {
      .c-page-layout .c-page-layout__content {
        gap: 64px; } }
    .c-page-layout .c-page-layout__content.--right {
      width: 846px; }
      @media screen and (max-width: 1140px) {
        .c-page-layout .c-page-layout__content.--right {
          width: 750px;
          padding: 0 24px; } }
      @media screen and (max-width: 896px) {
        .c-page-layout .c-page-layout__content.--right {
          width: 100%;
          padding: 0 24px;
          gap: 64px; } }
  @media screen and (min-width: 896px) {
    .c-page-layout.--double {
      display: flex;
      justify-content: space-between; } }
  .c-page-layout .c-page-layout__left {
    flex-shrink: 0; }

.p-page-layout-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 100px; }
  @media screen and (max-width: 896px) {
    .p-page-layout-nav {
      width: 100%;
      position: relative;
      flex-direction: row;
      flex-wrap: wrap;
      top: 0;
      justify-content: flex-start;
      gap: 0;
      border-top: 1px solid #bec3cb; } }
  @media screen and (max-width: 896px) {
    .p-page-layout-nav .p-page-layout-nav__item {
      width: 50%;
      flex-shrink: 0; }
      .p-page-layout-nav .p-page-layout-nav__item:nth-child(odd) .p-page-layout-nav__link {
        border-right: 1px solid #bec3cb; } }
  .p-page-layout-nav .p-page-layout-nav__item .p-page-layout-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.9px;
    color: #9ea4b1;
    transition: color 0.3s ease; }
    @media screen and (max-width: 896px) {
      .p-page-layout-nav .p-page-layout-nav__item .p-page-layout-nav__link {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 20.4px */
        letter-spacing: 0.6px;
        color: #222;
        display: flex;
        padding: 14px 24px 16px 24px;
        align-items: center;
        gap: 4px;
        border-bottom: 1px solid #bec3cb; }
        .p-page-layout-nav .p-page-layout-nav__item .p-page-layout-nav__link span {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
          /* 14px */
          letter-spacing: 0.7px; } }
    @media screen and (min-width: 896px) {
      .p-page-layout-nav .p-page-layout-nav__item .p-page-layout-nav__link::before {
        content: "";
        display: block;
        width: 6px;
        height: 7px;
        background: url("../img/components/nav-eclips.svg") no-repeat center;
        transition: background 0.3s ease; } }
    .p-page-layout-nav .p-page-layout-nav__item .p-page-layout-nav__link.--active, .p-page-layout-nav .p-page-layout-nav__item .p-page-layout-nav__link:hover {
      color: #2c2f35; }
      .p-page-layout-nav .p-page-layout-nav__item .p-page-layout-nav__link.--active::before, .p-page-layout-nav .p-page-layout-nav__item .p-page-layout-nav__link:hover::before {
        background: url("../img/components/nav-eclips-active.svg") no-repeat center; }

.c-page-header-secondary {
  margin: 80px 0 64px;
  text-align: center; }
  @media screen and (max-width: 896px) {
    .c-page-header-secondary {
      margin: 40px 0; } }
  .c-page-header-secondary .c-page-header__title {
    color: #222;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 60px */
    letter-spacing: 2px; }
    @media screen and (max-width: 896px) {
      .c-page-header-secondary .c-page-header__title {
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 42px */
        letter-spacing: 1.4px; } }
  .c-page-header-secondary .c-page-header__description {
    padding-top: 40px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.9px; }
    @media screen and (max-width: 896px) {
      .c-page-header-secondary .c-page-header__description {
        padding-top: 16px;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }

.main-visual {
  height: calc(100dvh - 88px);
  width: 100dvw; }
  .main-visual .main-visual__background {
    height: calc(100dvh - 88px);
    width: 100dvw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; }
  .main-visual .main-visual__content.--xxl {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1239px;
    box-sizing: border-box; }
    @media screen and (max-width: 1280px) {
      .main-visual .main-visual__content.--xxl {
        width: calc(100% - 40px);
        font-size: calc(16px + (96 - 16) * ((100vw - 320px) / (1280 - 320))); } }
    @media screen and (max-width: 896px) {
      .main-visual .main-visual__content.--xxl {
        display: none; } }
    .main-visual .main-visual__content.--xxl .main-visual__title-container {
      width: 100%; }
      .main-visual .main-visual__content.--xxl .main-visual__title-container p {
        font-size: 96px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 1.92px;
        text-transform: uppercase;
        color: #2c2f35;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
        animation-delay: 0.5s; }
        @media screen and (max-width: 1280px) {
          .main-visual .main-visual__content.--xxl .main-visual__title-container p {
            font-size: calc(60px + (96 - 60) * ((100vw - 896px) / (1280 - 896))); } }
      .main-visual .main-visual__content.--xxl .main-visual__title-container .main-visual__title-gap {
        display: flex;
        align-items: center;
        gap: 64px;
        max-width: 100%;
        opacity: 0;
        transform: translateX(-30px);
        animation: fadeInRight 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
        animation-delay: 1.2s; }
        @media screen and (max-width: 1280px) {
          .main-visual .main-visual__content.--xxl .main-visual__title-container .main-visual__title-gap {
            gap: calc(32px + (64 - 32) * ((100vw - 896px) / (1280 - 896))); } }
      .main-visual .main-visual__content.--xxl .main-visual__title-container .main-visual__title {
        display: flex;
        flex-direction: column;
        color: #222;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 1.6px; }
        @media screen and (max-width: 1280px) {
          .main-visual .main-visual__content.--xxl .main-visual__title-container .main-visual__title {
            font-size: calc(24px + (32 - 24) * ((100vw - 896px) / (1280 - 896))); } }
        .main-visual .main-visual__content.--xxl .main-visual__title-container .main-visual__title span {
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          /* 27px */
          letter-spacing: 0.9px;
          display: inline-block;
          animation: fadeInBlur 2s ease forwards;
          animation-delay: 1.8s;
          opacity: 0; }
      .main-visual .main-visual__content.--xxl .main-visual__title-container .main-visual__title-image {
        display: block;
        padding: 0 10px;
        max-width: 100%;
        height: auto;
        opacity: 0;
        transform: scale(0.7) rotate(-5deg);
        animation: fadeInRotateScale 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        animation-delay: 0.8s; }
        .main-visual .main-visual__content.--xxl .main-visual__title-container .main-visual__title-image.--secondary {
          padding: 0 0 0 20px;
          animation-delay: 1s;
          transform: scale(0.7) rotate(5deg); }
        @media screen and (max-width: 1280px) {
          .main-visual .main-visual__content.--xxl .main-visual__title-container .main-visual__title-image {
            transform-origin: center left !important;
            will-change: transform;
            position: relative;
            z-index: 1; } }
  .main-visual .main-visual__content.--tb {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 100%; }
    @media screen and (max-width: 896px) {
      .main-visual .main-visual__content.--tb {
        display: block; } }
    .main-visual .main-visual__content.--tb .main-visual__title-container {
      width: 327px;
      margin: 0 auto; }
      .main-visual .main-visual__content.--tb .main-visual__title-container p {
        font-family: Heebo;
        font-size: 51.181px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 61.417px */
        letter-spacing: 1.024px;
        text-transform: uppercase;
        color: #2c2f35;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
        animation-delay: 0.5s; }
      .main-visual .main-visual__content.--tb .main-visual__title-container .main-visual__title-gap {
        opacity: 0;
        transform: translateX(-30px);
        animation: fadeInRight 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
        animation-delay: 1.2s; }
      .main-visual .main-visual__content.--tb .main-visual__title-container .main-visual__title {
        padding-top: 16px;
        display: flex;
        flex-direction: column;
        color: #222;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 34px */
        letter-spacing: 1px; }
        .main-visual .main-visual__content.--tb .main-visual__title-container .main-visual__title span {
          color: #2c2f35;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          /* 21px */
          letter-spacing: 0.7px;
          display: inline-block;
          animation: fadeInBlur 2s ease forwards;
          animation-delay: 1.8s;
          opacity: 0; }
      .main-visual .main-visual__content.--tb .main-visual__title-container .main-visual__title-image {
        display: block;
        padding: 0 10px;
        width: 85px;
        height: auto;
        opacity: 0;
        transform: scale(0.7) rotate(-5deg);
        animation: fadeInRotateScale 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        animation-delay: 0.8s; }
        .main-visual .main-visual__content.--tb .main-visual__title-container .main-visual__title-image.--secondary {
          width: 104px;
          padding: 0 0 0 10px;
          animation-delay: 1s;
          transform: scale(0.7) rotate(5deg); }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeInRotateScale {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-5deg); }
  50% {
    opacity: 0.8; }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg); } }
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.1); }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1); } }
.top-common_title {
  display: flex;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 180px */
  letter-spacing: 2.4px;
  color: #2c2f35;
  display: flex;
  flex-direction: column; }
  .top-common_title span {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.9px; }
  .top-common_title.--secondary {
    color: #fff; }
  @media screen and (max-width: 896px) {
    .top-common_title {
      font-size: 48px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 72px */
      letter-spacing: 0.96px; }
      .top-common_title span {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }

.company-section {
  padding: 160px 20px;
  text-align: center; }
  @media screen and (max-width: 896px) {
    .company-section {
      padding: 72px 24px 80px; } }
  .company-section .company-section__description {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 240%;
    /* 67.2px */
    letter-spacing: 1.4px;
    padding: 80px 0; }
    @media screen and (max-width: 896px) {
      .company-section .company-section__description {
        padding: 40px 0;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 240%;
        /* 36px */
        letter-spacing: 0.75px; } }
  .company-section .company-section__cards {
    display: flex;
    gap: 15px;
    justify-content: center; }
    @media screen and (max-width: 896px) {
      .company-section .company-section__cards {
        flex-direction: column;
        gap: 8px; } }

.info-card {
  display: flex;
  padding: 40px 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(44, 47, 53, 0.05);
  width: 370px;
  height: 156px;
  flex-shrink: 0; }
  @media screen and (max-width: 896px) {
    .info-card {
      width: 100%;
      height: 100%;
      padding: 24px 32px; } }
  .info-card .info-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; }
    @media screen and (max-width: 896px) {
      .info-card .info-card__content {
        gap: 0; } }

.info-card__title {
  color: #222;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 42px */
  letter-spacing: 1.4px; }
  @media screen and (max-width: 896px) {
    .info-card__title {
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 36px */
      letter-spacing: 1.2px; } }

.info-card__subtitle {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .info-card__subtitle {
      font-size: 14px; } }
  .info-card__subtitle .info-card__icon {
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid transparent;
    transition: all 0.3s ease; }
    .info-card__subtitle .info-card__icon span {
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%;
      /* 24px */
      letter-spacing: 1.2px; }
  .info-card__subtitle:hover .info-card__icon {
    border-color: #2c2f35;
    background-color: #2c2f35; }
    .info-card__subtitle:hover .info-card__icon span {
      color: #fff; }

.feature-service-section {
  padding: 160px 0;
  background: rgba(44, 47, 53, 0.9);
  color: #fff;
  overflow: hidden; }
  @media screen and (max-width: 896px) {
    .feature-service-section {
      padding: 80px 0; } }
  .feature-service-section .feature-section {
    margin: 0 auto; }
    .feature-service-section .feature-section .feature-section__header {
      display: flex;
      align-items: center;
      gap: 272px;
      width: 1140px;
      margin: 0 auto; }
      @media screen and (max-width: 1140px) {
        .feature-service-section .feature-section .feature-section__header {
          width: 100%;
          padding: 0 24px;
          gap: 0;
          justify-content: space-between; } }
      @media screen and (max-width: 896px) {
        .feature-service-section .feature-section .feature-section__header {
          display: block;
          width: 100%;
          padding: 0 24px; } }
      .feature-service-section .feature-section .feature-section__header .feature-section__description {
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 30px */
        letter-spacing: 1px;
        white-space: nowrap; }
        @media screen and (max-width: 896px) {
          .feature-service-section .feature-section .feature-section__header .feature-section__description {
            padding-top: 40px;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 170%;
            /* 23.8px */
            letter-spacing: 0.7px; } }
    .feature-service-section .feature-section .feature-section__content {
      margin: 80px 0 0;
      display: flex;
      justify-content: center; }
      @media screen and (max-width: 896px) {
        .feature-service-section .feature-section .feature-section__content {
          padding-left: 24px; } }
      .feature-service-section .feature-section .feature-section__content .feature-swiper {
        overflow: visible;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto; }
        .feature-service-section .feature-section .feature-section__content .feature-swiper .swiper-wrapper {
          display: flex;
          transition-timing-function: ease; }
        .feature-service-section .feature-section .feature-section__content .feature-swiper .swiper-slide {
          opacity: 0.3;
          transition: opacity 0.5s ease;
          max-width: 1140px;
          width: 100%; }
          .feature-service-section .feature-section .feature-section__content .feature-swiper .swiper-slide.swiper-slide-active {
            opacity: 1; }
      .feature-service-section .feature-section .feature-section__content .feature-card {
        max-width: 1140px;
        width: 100%;
        height: 532px;
        display: flex;
        padding: 16px 16px 16px 100px;
        align-items: center;
        gap: 100px;
        border-radius: 8px;
        background: #fff;
        flex-shrink: 0; }
        @media screen and (max-width: 896px) {
          .feature-service-section .feature-section .feature-section__content .feature-card {
            height: 445px;
            padding: 8px 8px 24px 8px;
            gap: 0;
            flex-direction: column-reverse; } }
        .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__content {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 28px;
          width: 424px; }
          @media screen and (max-width: 896px) {
            .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__content {
              width: 100%;
              padding-top: 24px;
              display: flex;
              flex-direction: column;
              gap: 8px; } }
          .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__content .feature-card__number {
            color: #9ea4b1;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            letter-spacing: 1.2px; }
            @media screen and (max-width: 896px) {
              .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__content .feature-card__number {
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 150%;
                /* 21px */
                letter-spacing: 0.7px; } }
          .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__content .feature-card__title {
            font-size: 28px;
            font-style: normal;
            font-weight: 500;
            line-height: 170%;
            letter-spacing: 1.4px;
            color: #222; }
            @media screen and (max-width: 896px) {
              .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__content .feature-card__title {
                font-size: 18px;
                font-style: normal;
                font-weight: 500;
                line-height: 170%;
                /* 30.6px */
                letter-spacing: 0.9px; } }
          .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__content .feature-card__description {
            color: #222;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 200%;
            letter-spacing: 1px; }
            @media screen and (max-width: 896px) {
              .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__content .feature-card__description {
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 200%;
                /* 28px */
                letter-spacing: 0.7px; } }
        .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__image-container .feature-card__image {
          width: 500px;
          height: 500px;
          flex-shrink: 0; }
          @media screen and (max-width: 896px) {
            .feature-service-section .feature-section .feature-section__content .feature-card .feature-card__image-container .feature-card__image {
              height: 174px; } }
    .feature-service-section .feature-section .feature-section__navigation {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 1140px;
      margin: 48px auto 0; }
      @media screen and (max-width: 1140px) {
        .feature-service-section .feature-section .feature-section__navigation {
          width: 100%;
          padding: 0 24px; } }
      @media screen and (max-width: 896px) {
        .feature-service-section .feature-section .feature-section__navigation {
          padding-left: 24px; } }
      .feature-service-section .feature-section .feature-section__navigation .feature-section__nav-buttons {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px; }
        .feature-service-section .feature-section .feature-section__navigation .feature-section__nav-buttons .nav-button {
          width: 64px;
          height: 64px;
          background: #ebedf1;
          border-radius: 9999px;
          display: flex;
          justify-content: center;
          align-items: center; }
          .feature-service-section .feature-section .feature-section__navigation .feature-section__nav-buttons .nav-button.swiper-button-disabled .material-icons {
            color: #c4c9d2; }
          .feature-service-section .feature-section .feature-section__navigation .feature-section__nav-buttons .nav-button.swiper-button-prev, .feature-service-section .feature-section .feature-section__navigation .feature-section__nav-buttons .nav-button.swiper-button-next {
            position: static;
            margin: 0;
            width: 64px;
            height: 64px; }
            .feature-service-section .feature-section .feature-section__navigation .feature-section__nav-buttons .nav-button.swiper-button-prev::after, .feature-service-section .feature-section .feature-section__navigation .feature-section__nav-buttons .nav-button.swiper-button-next::after {
              display: none; }
          .feature-service-section .feature-section .feature-section__navigation .feature-section__nav-buttons .nav-button .material-icons {
            width: 64px;
            height: 64px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #222222;
            font-size: 24px;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 1.2px;
            word-wrap: break-word; }
      .feature-service-section .feature-section .feature-section__navigation .feature-section__pagination {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
        align-items: center; }
        .feature-service-section .feature-section .feature-section__navigation .feature-section__pagination .pagination-number {
          color: white;
          font-size: 15px;
          font-family: Heebo;
          font-weight: 400;
          line-height: 22.5px;
          letter-spacing: 0.3px;
          word-wrap: break-word; }
        .feature-service-section .feature-section .feature-section__navigation .feature-section__pagination .pagination-line {
          width: 120px;
          padding-top: 1x;
          display: inline-flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start; }
  .feature-service-section .pagination-line {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    width: 120px;
    overflow: hidden; }
  .feature-service-section .pagination-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #fff;
    transition: width 5000ms linear; }
  .feature-service-section .pagination-number {
    color: white;
    font-size: 15px;
    font-family: Heebo;
    font-weight: 400;
    line-height: 22.5px;
    letter-spacing: 0.3px;
    word-wrap: break-word; }
    .feature-service-section .pagination-number.--current {
      font-weight: 700; }
  .feature-service-section .service-section {
    width: 1140px;
    margin: 0 auto;
    padding: 160px 0 0; }
    @media screen and (max-width: 1140px) {
      .feature-service-section .service-section {
        width: 100%; } }
    @media screen and (max-width: 896px) {
      .feature-service-section .service-section {
        width: 100%;
        padding: 80px 24px 0; } }
    .feature-service-section .service-section .service-section__header {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media screen and (max-width: 1140px) {
        .feature-service-section .service-section .service-section__header {
          width: 100%;
          padding: 0 24px; } }
      @media screen and (max-width: 896px) {
        .feature-service-section .service-section .service-section__header {
          flex-direction: column;
          gap: 40px;
          align-items: flex-start; } }
      .feature-service-section .service-section .service-section__header .service-section__description {
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 30px */
        letter-spacing: 1px; }
        @media screen and (max-width: 896px) {
          .feature-service-section .service-section .service-section__header .service-section__description {
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 170%;
            /* 23.8px */
            letter-spacing: 0.7px; } }
    .feature-service-section .service-section .service-section__cards {
      padding: 80px 0;
      display: flex;
      gap: 15px;
      justify-content: center; }
      @media screen and (max-width: 896px) {
        .feature-service-section .service-section .service-section__cards {
          flex-direction: column;
          gap: 8px;
          padding: 40px 0; } }
      .feature-service-section .service-section .service-section__cards .service-card {
        display: flex;
        width: 370px;
        padding: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
        border-radius: 8px;
        background: rgba(246, 247, 248, 0.1); }
        @media screen and (max-width: 896px) {
          .feature-service-section .service-section .service-section__cards .service-card {
            width: 100%;
            padding: 24px;
            gap: 8px; } }
        .feature-service-section .service-section .service-section__cards .service-card .service-card__icon {
          display: flex;
          padding: 24px;
          justify-content: center;
          align-items: center;
          border-radius: 9999px;
          background: linear-gradient(180deg, rgba(246, 247, 248, 0.3) 0%, rgba(246, 247, 248, 0.1) 100%);
          margin-left: auto; }
          @media screen and (max-width: 896px) {
            .feature-service-section .service-section .service-section__cards .service-card .service-card__icon {
              padding: 14px; } }
          .feature-service-section .service-section .service-section__cards .service-card .service-card__icon .material-icons span {
            font-size: 32px;
            font-style: normal;
            font-weight: 400;
            line-height: 100%;
            /* 32px */
            letter-spacing: 1.6px; }
            @media screen and (max-width: 896px) {
              .feature-service-section .service-section .service-section__cards .service-card .service-card__icon .material-icons span {
                font-size: 20px;
                font-style: normal;
                font-weight: 400;
                line-height: 100%;
                /* 20px */
                letter-spacing: 1px; } }
        .feature-service-section .service-section .service-section__cards .service-card .service-card__title {
          font-size: 28px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          /* 42px */
          letter-spacing: 1.4px; }
          @media screen and (max-width: 896px) {
            .feature-service-section .service-section .service-section__cards .service-card .service-card__title {
              font-size: 18px;
              font-style: normal;
              font-weight: 500;
              line-height: 170%;
              /* 30.6px */
              letter-spacing: 0.9px; } }
        .feature-service-section .service-section .service-section__cards .service-card .service-card__description {
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          /* 27px */
          letter-spacing: 0.9px; }
          @media screen and (max-width: 896px) {
            .feature-service-section .service-section .service-section__cards .service-card .service-card__description {
              font-size: 14px;
              font-style: normal;
              font-weight: 400;
              line-height: 170%;
              /* 23.8px */
              letter-spacing: 0.7px; } }
  .feature-service-section .service-section__button-container {
    display: flex;
    justify-content: center; }
    @media screen and (max-width: 896px) {
      .feature-service-section .service-section__button-container .c-primary-wh-button {
        width: 100%; } }

.news-section {
  padding: 160px 0;
  background: #f7f7f7; }
  @media screen and (max-width: 896px) {
    .news-section {
      padding: 80px 0; } }
  .news-section .news-section__header {
    display: flex;
    justify-content: space-between;
    width: 1140px;
    margin: 0 auto; }
    @media screen and (max-width: 1200px) {
      .news-section .news-section__header {
        width: 100%;
        padding: 0 24px; } }
    @media screen and (max-width: 896px) {
      .news-section .news-section__header {
        display: block;
        padding: 0 24px;
        width: 100%; } }
  .news-section .news-section__title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px; }
  .news-section .news-section__list {
    border-top: 1px solid #bec3cb; }
    @media screen and (min-width: 896px) and (max-width: 1199px) {
      .news-section .news-section__list {
        width: 50%; } }
    @media screen and (max-width: 896px) {
      .news-section .news-section__list {
        margin: 40px 0; } }

.news-item {
  display: flex;
  padding: 32px 40px;
  align-items: flex-start;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #bec3cb; }
  @media screen and (max-width: 896px) {
    .news-item {
      padding: 24px 24px; } }
  .news-item .news-item__meta {
    display: flex;
    gap: 16px; }
    @media screen and (max-width: 896px) {
      .news-item .news-item__meta {
        gap: 8px; } }
  .news-item .news-item__date {
    color: #9ea4b1;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 22.5px */
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .news-item .news-item__date {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .news-item .news-item__category {
    color: #9ea4b1;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .news-item .news-item__category {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .news-item .news-item__title {
    overflow: hidden;
    color: #222;
    text-overflow: ellipsis;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 30.6px */
    letter-spacing: 0.9px;
    display: -webkit-box;
    width: 490px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; }
    @media screen and (max-width: 1200px) {
      .news-item .news-item__title {
        width: 100%; } }
    @media screen and (max-width: 896px) {
      .news-item .news-item__title {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .news-item .news-item__icon {
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center; }
    .news-item .news-item__icon span {
      color: #222;
      text-align: center;
      font-family: "Material Icons";
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%;
      /* 18px */
      letter-spacing: 0.9px; }

.news-section__button-container {
  padding: 0 24px; }
  @media screen and (max-width: 896px) {
    .news-section__button-container .c-primary-bk-button {
      width: 100%; } }

.gallery-section {
  position: relative;
  overflow: hidden; }
  .gallery-section .gallery-section__image {
    height: 552px;
    object-fit: cover;
    width: 100%; }
    @media screen and (max-width: 896px) {
      .gallery-section .gallery-section__image {
        height: 160px; } }
  .gallery-section .gallery-section__overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .gallery-section .gallery-section__overlay-scroll {
    display: flex;
    width: 300%;
    height: 100%;
    animation: infinity-scroll-left 25s linear infinite; }
  .gallery-section .gallery-section__image-overlay {
    width: 100%;
    height: 100%;
    object-fit: cover; }

@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-66.666%); } }
.recruit-section {
  padding: 80px 0 160px 130px;
  background-color: #f5f5f5; }
  @media screen and (max-width: 896px) {
    .recruit-section {
      padding: 80px 0; } }
  .recruit-section.--page {
    padding: 0; }
  .recruit-section > h1 {
    margin: 0 !important; }
  .recruit-section .recruit-section__container {
    max-width: 1254px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 896px) {
      .recruit-section .recruit-section__container {
        padding: 0 24px;
        display: block; } }
    .recruit-section .recruit-section__container .recruit-section__label-container {
      padding-top: 56px; }
      @media screen and (max-width: 896px) {
        .recruit-section .recruit-section__container .recruit-section__label-container {
          padding-top: 40px; } }
    .recruit-section .recruit-section__container .recruit-section__label {
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.36px;
      color: #222; }
      @media screen and (max-width: 896px) {
        .recruit-section .recruit-section__container .recruit-section__label {
          font-size: 15px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          /* 22.5px */
          letter-spacing: 0.75px; } }
    .recruit-section .recruit-section__container .recruit-section__title {
      padding-top: 32px;
      font-size: clamp(32px, 4.5vw, 64px);
      font-style: normal;
      font-weight: 400;
      line-height: 1.5;
      letter-spacing: calc(0.05em + 0.5px);
      color: #222;
      position: relative; }
      @media screen and (max-width: 896px) {
        .recruit-section .recruit-section__container .recruit-section__title {
          padding-top: 12px;
          font-size: 24px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          /* 36px */
          letter-spacing: 1.2px; } }
      .recruit-section .recruit-section__container .recruit-section__title .recruit-title-decoration-container {
        position: relative;
        display: inline-block;
        overflow: visible !important; }
      .recruit-section .recruit-section__container .recruit-section__title .js-recruit-section-title-first,
      .recruit-section .recruit-section__container .recruit-section__title .js-recruit-section-title-second {
        position: relative;
        z-index: 1;
        display: inline-block; }
    .recruit-section .recruit-section__container .recruit-section__image {
      width: 408px;
      height: 451px;
      flex-shrink: 0; }
  .recruit-section .recruit-section__image-secondary {
    position: relative;
    top: -76px;
    max-width: 1254px;
    width: 100%;
    margin: 0 auto;
    display: flex; }
    @media screen and (max-width: 1280px) {
      .recruit-section .recruit-section__image-secondary {
        top: -40px; } }
    @media screen and (max-width: 896px) {
      .recruit-section .recruit-section__image-secondary {
        top: 0; } }
  .recruit-section .recruit-section__description {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 240%;
    /* 57.6px */
    letter-spacing: 1.2px;
    flex-shrink: 0; }
    @media screen and (max-width: 1280px) {
      .recruit-section .recruit-section__description {
        font-size: calc(16px + (24 - 16) * ((100vw - 896px) / (1280 - 896))); } }
    @media screen and (max-width: 1200px) {
      .recruit-section .recruit-section__description {
        font-size: calc(16px + (24 - 16) * ((100vw - 896px) / (1280 - 896))); } }
    @media screen and (max-width: 896px) {
      .recruit-section .recruit-section__description {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 240%;
        /* 33.6px */
        letter-spacing: 0.7px; } }
    .recruit-section .recruit-section__description p:not(:first-child) {
      padding-top: 80px; }
      @media screen and (max-width: 896px) {
        .recruit-section .recruit-section__description p:not(:first-child) {
          padding-top: 40px; } }
  .recruit-section .recruit-section__content-container {
    display: flex;
    max-width: 1254px;
    margin: 0 auto;
    gap: 27px; }
    @media screen and (max-width: 1280px) {
      .recruit-section .recruit-section__content-container {
        gap: 15px; } }
    @media screen and (max-width: 1200px) {
      .recruit-section .recruit-section__content-container {
        gap: 0; } }
    @media screen and (max-width: 896px) {
      .recruit-section .recruit-section__content-container {
        max-width: 100%;
        width: 100%;
        padding: 40px 24px 0; } }
    .recruit-section .recruit-section__content-container .recruit-section__button-container {
      padding-top: 80px; }
      @media screen and (max-width: 896px) {
        .recruit-section .recruit-section__content-container .recruit-section__button-container {
          padding-top: 40px; } }
      @media screen and (max-width: 896px) {
        .recruit-section .recruit-section__content-container .recruit-section__button-container .c-primary-bk-button {
          width: 100%; } }
  .recruit-section .recruit-section__card-container {
    position: relative;
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 1280px) {
      .recruit-section .recruit-section__card-container {
        transform: scale(0.8); } }
    @media screen and (max-width: 1200px) {
      .recruit-section .recruit-section__card-container {
        transform: scale(0.65); } }
    .recruit-section .recruit-section__card-container .recruit-section__card-image {
      width: 300px;
      height: auto;
      position: absolute;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease; }
      .recruit-section .recruit-section__card-container .recruit-section__card-image.is-visible {
        opacity: 1;
        transform: translateY(0); }
      .recruit-section .recruit-section__card-container .recruit-section__card-image.--first {
        top: -112px;
        left: 0;
        width: 354px;
        z-index: 1;
        transition-delay: 0s; }
      .recruit-section .recruit-section__card-container .recruit-section__card-image.--second {
        width: 350px;
        top: 0;
        left: 300px;
        z-index: 2;
        transition-delay: 0.2s; }
      .recruit-section .recruit-section__card-container .recruit-section__card-image.--third {
        top: 190px;
        left: 17px;
        width: 309px;
        z-index: 3;
        transition-delay: 0.4s; }
      .recruit-section .recruit-section__card-container .recruit-section__card-image.--fourth {
        top: 335px;
        left: 306px;
        width: 335px;
        z-index: 5;
        transition-delay: 0.6s; }
      .recruit-section .recruit-section__card-container .recruit-section__card-image.--fifth {
        top: 453px;
        left: 28px;
        width: 350px;
        z-index: 4;
        transition-delay: 0.8s; }

.p-company-section {
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  background: #f7f7f7; }

.p-company-table .p-company-table__row {
  display: flex;
  padding: 22px 32px 24px 32px;
  gap: 36px;
  color: #222222;
  border-bottom: 1px solid #bec3cb; }
  .p-company-table .p-company-table__row:first-child {
    border-top: 1px solid #bec3cb; }
  @media screen and (max-width: 896px) {
    .p-company-table .p-company-table__row {
      padding: 20px 24px 22px 24px;
      flex-direction: column;
      gap: 4px; } }
.p-company-table .p-company-table__header {
  width: 128px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px;
  flex-shrink: 0; }
  @media screen and (max-width: 896px) {
    .p-company-table .p-company-table__header {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-company-table .p-company-table__data {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-company-table .p-company-table__data {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }

.p-philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 8px; }
  @media screen and (max-width: 896px) {
    .p-philosophy-cards {
      gap: 4px; } }

.p-philosophy-card {
  display: flex;
  padding: 38px 48px 40px 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px; }
  @media screen and (max-width: 896px) {
    .p-philosophy-card {
      padding: 24px; } }
  .p-philosophy-card.p-philosophy-card--mission {
    background: linear-gradient(90deg, rgba(235, 237, 241, 0) 60.04%, rgba(255, 151, 106, 0.5) 99.86%), #ebedf1; }
  .p-philosophy-card.p-philosophy-card--vision {
    background: linear-gradient(90deg, rgba(235, 237, 241, 0) 60.04%, rgba(188, 213, 240, 0.5) 99.86%), #ebedf1; }
  .p-philosophy-card.p-philosophy-card--value {
    background: linear-gradient(90deg, rgba(235, 237, 241, 0) 60.04%, rgba(158, 164, 177, 0.3) 99.86%), #ebedf1; }
  .p-philosophy-card .p-philosophy-card__content {
    display: flex;
    gap: 20px; }
    @media screen and (max-width: 896px) {
      .p-philosophy-card .p-philosophy-card__content {
        flex-direction: column;
        gap: 16px; } }
  .p-philosophy-card .p-philosophy-card__label {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    /* 30.6px */
    letter-spacing: 1.8px;
    width: 210px;
    flex-shrink: 0; }
    @media screen and (max-width: 896px) {
      .p-philosophy-card .p-philosophy-card__label {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .p-philosophy-card .p-philosophy-card__text {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    /* 40.8px */
    letter-spacing: 2.4px; }
    @media screen and (max-width: 896px) {
      .p-philosophy-card .p-philosophy-card__text {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 30.6px */
        letter-spacing: 1.8px; } }
  .p-philosophy-card .p-philosophy-card__values {
    display: flex;
    flex-direction: column;
    gap: 40px; }

.p-philosophy-value .p-philosophy-value__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 1px; }
  @media screen and (max-width: 896px) {
    .p-philosophy-value .p-philosophy-value__title {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-philosophy-value .p-philosophy-value__description {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-philosophy-value .p-philosophy-value__description {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }

.p-ceo-message .p-ceo-message__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px; }
  @media screen and (max-width: 896px) {
    .p-ceo-message .p-ceo-message__image {
      margin-bottom: 24px; } }
  .p-ceo-message .p-ceo-message__image img {
    width: 100%;
    height: auto;
    object-fit: cover; }
.p-ceo-message .p-ceo-message__content {
  margin-bottom: 40px; }
  @media screen and (max-width: 896px) {
    .p-ceo-message .p-ceo-message__content {
      margin-bottom: 24px; } }
.p-ceo-message .p-ceo-message__heading {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 42px */
  letter-spacing: 1.4px; }
  @media screen and (max-width: 896px) {
    .p-ceo-message .p-ceo-message__heading {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }
.p-ceo-message .p-ceo-message__text {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  /* 30px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-ceo-message .p-ceo-message__text {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 200%;
      /* 28px */
      letter-spacing: 0.7px; } }
  .p-ceo-message .p-ceo-message__text p {
    margin-top: 32px; }
    @media screen and (max-width: 896px) {
      .p-ceo-message .p-ceo-message__text p {
        margin-top: 20px; } }
.p-ceo-message .p-ceo-message__signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px; }
  @media screen and (max-width: 896px) {
    .p-ceo-message .p-ceo-message__signature {
      gap: 4px; } }
.p-ceo-message .p-ceo-message__position {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-ceo-message .p-ceo-message__position {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-ceo-message .p-ceo-message__name {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 36px */
  letter-spacing: 1.2px; }
  @media screen and (max-width: 896px) {
    .p-ceo-message .p-ceo-message__name {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }

@media screen and (max-width: 896px) {
  .p-company-overview {
    padding-top: 64px; } }

.p-sales-trend {
  margin-top: 80px; }
  @media screen and (max-width: 896px) {
    .p-sales-trend {
      margin-top: 64px; } }
  .p-sales-trend .c-section-header__unit {
    margin-top: 8px;
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.7px; }
    @media screen and (max-width: 896px) {
      .p-sales-trend .c-section-header__unit {
        font-size: 13px;
        margin-top: 4px; } }

.p-sales-chart {
  padding: 48px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  gap: 24px; }
  @media screen and (max-width: 896px) {
    .p-sales-chart {
      padding: 32px 20px;
      gap: 16px; } }
  .p-sales-chart .p-sales-chart__y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__y-axis {
        padding-top: 32px;
        padding-bottom: 32px; } }
  .p-sales-chart .p-sales-chart__y-label {
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.7px; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__y-label {
        font-size: 12px;
        letter-spacing: 0.6px; } }
  .p-sales-chart .p-sales-chart__content {
    flex: 1;
    position: relative;
    padding-bottom: 40px; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__content {
        padding-bottom: 32px; } }
  .p-sales-chart .p-sales-chart__grid {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__grid {
        top: 32px;
        bottom: 32px; } }
  .p-sales-chart .p-sales-chart__grid-line {
    width: 100%;
    height: 1px;
    background: #d1d5db; }
  .p-sales-chart .p-sales-chart__baseline {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #6b7280;
    pointer-events: none;
    z-index: 2; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__baseline {
        bottom: 32px; } }
  .p-sales-chart .p-sales-chart__bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 20px;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    height: 360px; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__bars {
        gap: 12px;
        padding-top: 32px;
        height: 256px; } }
  .p-sales-chart .p-sales-chart__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 80px;
    position: relative; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__item {
        max-width: 55px; } }
  .p-sales-chart .p-sales-chart__bar-container {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-bottom: 0; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__bar-container {
        height: 200px; } }
  .p-sales-chart .p-sales-chart__bar {
    width: 100%;
    max-width: 60px;
    background: linear-gradient(180deg, #ff8a5b 0%, #ff6b3d 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12px;
    min-height: 40px; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__bar {
        max-width: 48px;
        padding-top: 8px;
        min-height: 30px; } }
    .p-sales-chart .p-sales-chart__bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px 4px 0 0; }
  .p-sales-chart .p-sales-chart__value {
    color: #ffffff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__value {
        font-size: 13px;
        letter-spacing: 0.65px; } }
  .p-sales-chart .p-sales-chart__label {
    color: #222222;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.75px;
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap; }
    @media screen and (max-width: 896px) {
      .p-sales-chart .p-sales-chart__label {
        font-size: 13px;
        letter-spacing: 0.65px;
        bottom: -28px; } }

@media screen and (max-width: 896px) {
  .p-service-section .p-service-features {
    margin-top: 40px; } }
.p-service-section .p-service-features .p-service-feature:nth-child(2) {
  margin-top: 80px; }
.p-service-section .p-service-features .p-service-feature .p-service-feature__number {
  color: #9ea4b1;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 22.5px */
  letter-spacing: 0.75px;
  padding-top: 40px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-features .p-service-feature .p-service-feature__number {
      padding-top: 24px;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 21px */
      letter-spacing: 0.7px; } }
.p-service-section .p-service-features .p-service-feature .p-service-feature__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 36px */
  letter-spacing: 1.2px;
  padding-top: 20px;
  color: #222; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-features .p-service-feature .p-service-feature__title {
      padding-top: 8px;
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 30.6px */
      letter-spacing: 0.9px; } }
.p-service-section .p-service-features .p-service-feature .p-service-feature__description {
  padding-top: 24px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-features .p-service-feature .p-service-feature__description {
      padding-top: 12px;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 200%;
      /* 28px */
      letter-spacing: 0.7px; } }
.p-service-section .p-service-features .p-service-stats {
  margin-top: 40px; }
  .p-service-section .p-service-features .p-service-stats .p-service-stats__row {
    display: flex;
    gap: 16px; }
    @media screen and (max-width: 896px) {
      .p-service-section .p-service-features .p-service-stats .p-service-stats__row {
        flex-direction: column; } }
  .p-service-section .p-service-features .p-service-stats .p-service-stat-card {
    display: flex;
    padding: 36px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-shrink: 0;
    background: #fff;
    width: calc(50% - 8px); }
    @media screen and (max-width: 896px) {
      .p-service-section .p-service-features .p-service-stats .p-service-stat-card {
        width: 100%;
        padding: 20px 24px;
        gap: 8px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__title {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px;
      color: #ff620a; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__title {
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__icon {
          width: 64px;
          height: 64px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__number {
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      gap: 8px; }
    .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__value {
      font-size: 72px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%;
      /* 72px */
      letter-spacing: 1.44px;
      color: #2c2f35; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__value {
          font-size: 48px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
          /* 48px */
          letter-spacing: 0.96px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__unit {
      font-size: 28px;
      font-style: normal;
      font-weight: 500;
      line-height: 100%;
      /* 28px */
      letter-spacing: 1.4px;
      color: #2c2f35; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__unit {
          font-size: 20px;
          font-style: normal;
          font-weight: 500;
          line-height: 100%;
          /* 20px */
          letter-spacing: 1px;
          padding-bottom: 5px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__description {
      padding-top: 16px;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px;
      color: #222; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-stat-card .p-service-stat-card__description {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }
  .p-service-section .p-service-features .p-service-stats .p-service-field-card {
    margin-top: 16px;
    display: flex;
    padding: 36px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    background: #fff; }
    @media screen and (max-width: 896px) {
      .p-service-section .p-service-features .p-service-stats .p-service-field-card {
        padding: 20px 24px;
        gap: 8px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__title {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px;
      color: #ff620a; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__content {
      display: flex;
      padding: 32px 64px;
      gap: 52px; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__content {
          margin: 0 auto;
          flex-direction: column;
          gap: 28px;
          padding: 20px 26px 20px 27px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend {
      display: flex;
      align-items: center;
      gap: 56px; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend {
          flex-direction: column;
          gap: 8px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-column {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      width: 152px; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-column {
          gap: 8px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-item {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      width: 100%; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color-box {
      display: flex;
      align-items: center;
      gap: 10px; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color {
      width: 12px;
      height: 12px;
      border-radius: 2px;
      display: block; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color {
          width: 10px;
          height: 10px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color--primary {
      background: #f26427; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color--secondary {
      background: #ff8e57; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color--tertiary {
      background: #febba8; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color--quaternary {
      background: #e9cbd1; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color--quinary {
      background: #bcd5f0; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-color--senary {
      background: #ebedf1; }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-label {
      font-size: 15px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px;
      color: #222; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-label {
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-value {
      font-size: 24px;
      font-style: normal;
      font-weight: 500;
      line-height: 100%;
      /* 24px */
      letter-spacing: 0.48px;
      color: #222; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-value {
          font-size: 20px;
          font-style: normal;
          font-weight: 500;
          line-height: 100%;
          /* 20px */
          letter-spacing: 0.4px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-unit {
      font-size: 15px;
      font-style: normal;
      font-weight: 500;
      line-height: 100%;
      /* 15px */
      letter-spacing: 0.3px; }
      @media screen and (max-width: 896px) {
        .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__legend-unit {
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 100%;
          /* 14px */
          letter-spacing: 0.28px; } }
    .p-service-section .p-service-features .p-service-stats .p-service-field-card .p-service-field-card__description {
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px;
      color: #222; }
.p-service-section .p-service-cases .c-section-header__line {
  height: 1px;
  background: #2c2f35;
  margin-bottom: 40px; }
.p-service-section .p-service-cases .p-service-cases-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center; }
.p-service-section .p-service-cases .p-service-case-card {
  width: 415px;
  display: flex;
  flex-direction: column;
  align-self: stretch; }
  @media screen and (max-width: 1140px) {
    .p-service-section .p-service-cases .p-service-case-card {
      width: calc(50% - 16px); } }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-cases .p-service-case-card {
      width: 100%; } }
.p-service-section .p-service-cases .p-service-case-card__header {
  padding: 24px;
  background: #2c2f35;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px; }
.p-service-section .p-service-cases .p-service-case-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 12px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-cases .p-service-case-card__meta {
      flex-direction: column;
      gap: 4px; } }
.p-service-section .p-service-cases .p-service-case-card__label {
  width: 79px;
  height: 29px;
  display: flex;
  padding: 0px 16px 3px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  background: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px;
  color: #2c2f35;
  white-space: nowrap; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-cases .p-service-case-card__label {
      padding: 5px 14px 2px 14px;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-service-section .p-service-cases .p-service-case-card__value {
  width: 276px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  line-height: 25.5px;
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-cases .p-service-case-card__value {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-service-section .p-service-cases .p-service-case-card__body {
  display: flex;
  padding: 20px 0px 24px 0px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  background: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px; }
.p-service-section .p-service-cases .p-service-case-card__description {
  padding: 0 24px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-cases .p-service-case-card__description {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-service-section .p-service-cases .p-service-case-card__details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 24px;
  border-top: 1px solid #e7eaef;
  width: 100%; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-cases .p-service-case-card__details {
      width: 100%;
      padding: 24px 24px 0;
      gap: 12px; } }
.p-service-section .p-service-cases .p-service-case-card__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-cases .p-service-case-card__detail-item {
      flex-direction: column;
      gap: 4px; } }
.p-service-section .p-service-cases .p-service-case-card__detail-label {
  width: 59px;
  color: #41454e;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 0.7px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-cases .p-service-case-card__detail-label {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-service-section .p-service-cases .p-service-case-card__detail-value {
  width: 296px;
  color: #41454e;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 0.7px; }
.p-service-section .p-service-flow .p-service-flow__steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-flow .p-service-flow__steps {
      gap: 24px; } }
.p-service-section .p-service-flow .p-service-flow__step .p-service-flow__step-header {
  display: flex;
  align-items: flex-start;
  gap: 16px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-flow .p-service-flow__step .p-service-flow__step-header {
      gap: 11px; } }
.p-service-section .p-service-flow .p-service-flow__step .p-service-flow__step-number {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 36px */
  letter-spacing: 1.2px;
  color: #222; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-flow .p-service-flow__step .p-service-flow__step-number {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }
.p-service-section .p-service-flow .p-service-flow__step .p-service-flow__step-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 36px */
  letter-spacing: 1.2px; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-flow .p-service-flow__step .p-service-flow__step-title {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }
.p-service-section .p-service-flow .p-service-flow__step .p-service-flow__step-description {
  padding-top: 16px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px;
  color: #222; }
  @media screen and (max-width: 896px) {
    .p-service-section .p-service-flow .p-service-flow__step .p-service-flow__step-description {
      padding-top: 10px;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }

.p-service-skills-card {
  display: flex;
  padding: 36px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 8px;
  margin: 16px 0 80px;
  background: #fff; }
  @media screen and (max-width: 896px) {
    .p-service-skills-card {
      padding: 20px 24px;
      gap: 8px; } }
  .p-service-skills-card .p-service-skills-card__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.9px;
    color: #ff620a; }
    @media screen and (max-width: 896px) {
      .p-service-skills-card .p-service-skills-card__title {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .p-service-skills-card .p-service-skills-card__list {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 9px;
    flex-wrap: wrap; }
  .p-service-skills-card .p-service-skills-card__item {
    width: 146px;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media screen and (min-width: 896px) and (max-width: 1199px) {
      .p-service-skills-card .p-service-skills-card__item {
        width: calc(100% / 5 - 36px); } }
    @media screen and (max-width: 896px) {
      .p-service-skills-card .p-service-skills-card__item {
        width: calc(50% - 9px); } }
  .p-service-skills-card .p-service-skills-card__skill {
    width: 146px;
    text-align: center;
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .p-service-skills-card .p-service-skills-card__skill {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        /* 14px */
        letter-spacing: 0.7px; } }
  .p-service-skills-card .p-service-skills-card__description {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px;
    color: #222;
    width: 100%; }
    @media screen and (max-width: 896px) {
      .p-service-skills-card .p-service-skills-card__description {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }

.p-service-recommend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  align-content: center;
  margin-top: 80px; }
  @media screen and (max-width: 896px) {
    .p-service-recommend-list {
      margin-top: 24px; } }
  .p-service-recommend-list .p-service-recommend-item {
    width: 415px;
    display: flex;
    padding: 24px 32px;
    align-items: center;
    gap: 32px;
    background: white;
    border-radius: 8px; }
    @media screen and (max-width: 1140px) {
      .p-service-recommend-list .p-service-recommend-item {
        width: calc(50% - 16px); } }
    @media screen and (max-width: 896px) {
      .p-service-recommend-list .p-service-recommend-item {
        width: 100%;
        padding: 16px 24px;
        gap: 24px; } }
    .p-service-recommend-list .p-service-recommend-item .p-service-recommend-item__icon {
      color: #2c2f35;
      font-size: 28px;
      line-height: 28px;
      letter-spacing: 1.4px; }
      @media screen and (max-width: 896px) {
        .p-service-recommend-list .p-service-recommend-item .p-service-recommend-item__icon {
          font-size: 20px;
          line-height: 20px;
          letter-spacing: 1px; } }
    .p-service-recommend-list .p-service-recommend-item .p-service-recommend-item__text {
      width: 291px;
      color: #222222;
      font-size: 18px;
      font-weight: 500;
      line-height: 27px;
      letter-spacing: 0.9px; }
      @media screen and (max-width: 896px) {
        .p-service-recommend-list .p-service-recommend-item .p-service-recommend-item__text {
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }

.p-service-content .p-service-business-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch; }
  .p-service-content .p-service-business-list .p-service-business-item {
    padding: 40px 48px;
    border-radius: 8px;
    background: #fff; }
    @media screen and (max-width: 896px) {
      .p-service-content .p-service-business-list .p-service-business-item {
        padding: 24px; } }
    .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 24px; }
      @media screen and (max-width: 896px) {
        .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content {
          gap: 8px; } }
      .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content .p-service-business-item__icon-container {
        width: 80px;
        height: 80px;
        position: relative;
        background: linear-gradient(180deg, rgba(44, 47, 53, 0.9) 0%, rgba(44, 47, 53, 0.5) 100%);
        border-radius: 9999px;
        overflow: hidden; }
        @media screen and (max-width: 896px) {
          .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content .p-service-business-item__icon-container {
            width: 48px;
            height: 48px; } }
        .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content .p-service-business-item__icon-container .p-service-business-item__icon {
          position: absolute;
          left: 24px;
          top: 24px;
          color: white;
          font-size: 32px;
          line-height: 32px;
          letter-spacing: 1.6px; }
          @media screen and (max-width: 896px) {
            .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content .p-service-business-item__icon-container .p-service-business-item__icon {
              font-size: 20px;
              font-style: normal;
              font-weight: 400;
              line-height: 100%;
              /* 20px */
              letter-spacing: 1px;
              top: 15px;
              left: 15px; } }
      .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content .p-service-business-item__title {
        align-self: stretch;
        color: #222222;
        font-size: 24px;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: 1.2px; }
        @media screen and (max-width: 896px) {
          .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content .p-service-business-item__title {
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            /* 27px */
            letter-spacing: 0.9px; } }
      .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content .p-service-business-item__description {
        color: #222222;
        font-size: 15px;
        font-weight: 400;
        line-height: 25.5px;
        letter-spacing: 0.75px; }
        @media screen and (max-width: 896px) {
          .p-service-content .p-service-business-list .p-service-business-item .p-service-business-item__content .p-service-business-item__description {
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 170%;
            /* 23.8px */
            letter-spacing: 0.7px; } }

@media screen and (max-width: 896px) {
  .p-news-section .p-news-content {
    padding: 0 24px; } }
.p-news-section .p-news-filter {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 64px;
  border-bottom: 1px solid #e7eaef; }
  @media screen and (max-width: 896px) {
    .p-news-section .p-news-filter {
      gap: 4px;
      flex-direction: column;
      padding-bottom: 40px; } }
.p-news-section .p-news-filter__item {
  display: flex;
  padding: 11px 56px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.9px;
  border-radius: 999px;
  border: 1px solid #2c2f35;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
  background: transparent; }
  @media screen and (max-width: 896px) {
    .p-news-section .p-news-filter__item {
      width: 100%; } }
  .p-news-section .p-news-filter__item::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1; }
  .p-news-section .p-news-filter__item:hover {
    background: #2c2f35; }
    .p-news-section .p-news-filter__item:hover::before {
      transform: scaleX(0); }
    .p-news-section .p-news-filter__item:hover .p-news-filter__text {
      color: #fff; }
  .p-news-section .p-news-filter__item .p-news-filter__text {
    color: #2c2f35;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.9px;
    transition: color 0.5s ease; }
    @media screen and (max-width: 896px) {
      .p-news-section .p-news-filter__item .p-news-filter__text {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 21px */
        letter-spacing: 0.7px; } }
  .p-news-section .p-news-filter__item.--active {
    background: transparent;
    color: #fff; }
    .p-news-section .p-news-filter__item.--active::before {
      background: #2c2f35;
      transform: scaleX(1);
      transform-origin: right; }
    .p-news-section .p-news-filter__item.--active .p-news-filter__text {
      color: #fff; }
    .p-news-section .p-news-filter__item.--active:hover {
      color: #2c2f35; }
      .p-news-section .p-news-filter__item.--active:hover::before {
        transform: scaleX(0);
        transform-origin: right; }
      .p-news-section .p-news-filter__item.--active:hover .p-news-filter__text {
        color: #2c2f35; }
.p-news-section .p-news-list {
  padding: 64px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 36px;
  align-self: stretch; }
  @media screen and (max-width: 992px) {
    .p-news-section .p-news-list {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 576px) {
    .p-news-section .p-news-list {
      display: flex;
      flex-direction: column;
      padding: 40px 0;
      gap: 40px 0; } }
.p-news-section .p-news-card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px; }
  @media screen and (max-width: 896px) {
    .p-news-section .p-news-card {
      gap: 10px; } }
.p-news-section .p-news-card__image {
  width: 100%; }
  .p-news-section .p-news-card__image img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover; }
.p-news-section .p-news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  width: 100%; }
.p-news-section .p-news-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 328px; }
  @media screen and (max-width: 896px) {
    .p-news-section .p-news-card__meta {
      width: 100%; } }
.p-news-section .p-news-card__date {
  color: #9ea4b1;
  font-size: 14px;
  font-family: Heebo, sans-serif;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.7px;
  padding-top: 3px; }
.p-news-section .p-news-card__category {
  color: #9ea4b1;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 0.7px; }
.p-news-section .p-news-card__title-container {
  display: flex;
  align-items: center;
  gap: 4px; }
  @media screen and (max-width: 896px) {
    .p-news-section .p-news-card__title-container {
      width: 100%;
      justify-content: space-between; } }
.p-news-section .p-news-card__title {
  width: 328px;
  color: #222222;
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0.75px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }
  @media screen and (max-width: 896px) {
    .p-news-section .p-news-card__title {
      width: 100%;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-news-section .p-news-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center; }
.p-news-section .p-news-pagination__button {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer; }
.p-news-section .p-news-pagination__button--prev {
  background: #ebedf1; }
.p-news-section .p-news-pagination__button--next {
  background: transparent; }
.p-news-section .p-news-pagination__button--disabled {
  cursor: not-allowed; }
.p-news-section .p-news-pagination__button--prev .material-icons {
  color: #c4c9d2;
  font-size: 18px; }
.p-news-section .p-news-pagination__button--next .material-icons {
  color: #222222;
  font-size: 18px; }
.p-news-section .p-news-pagination__number {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222222;
  font-size: 20px;
  font-family: Heebo, sans-serif;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 1px;
  cursor: pointer; }
.p-news-section .p-news-pagination__number--active {
  background: #2c2f35;
  color: white; }
.p-news-section .p-news-pagination__dots {
  width: 48px;
  height: 48px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
.p-news-section .p-news-pagination__dot {
  width: 3px;
  height: 3px;
  background: #c4c9d2;
  border-radius: 9999px;
  margin: 0 1.5px; }

.p-single-article {
  width: 748px;
  margin: 80px auto 120px; }
  @media screen and (max-width: 896px) {
    .p-single-article {
      width: 100%;
      margin: 40px auto 80px;
      padding: 0 24px; } }
  .p-single-article .p-single-article__date {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch; }
    @media screen and (max-width: 896px) {
      .p-single-article .p-single-article__date {
        gap: 16px; } }
    .p-single-article .p-single-article__date .p-single-article__date-text,
    .p-single-article .p-single-article__date .p-single-article__category-text {
      color: #9ea4b1;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 30px */
      letter-spacing: 1px; }
      @media screen and (max-width: 896px) {
        .p-single-article .p-single-article__date .p-single-article__date-text,
        .p-single-article .p-single-article__date .p-single-article__category-text {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          /* 21px */
          letter-spacing: 0.7px; } }
  .p-single-article .p-single-article__title {
    margin-top: 24px; }
    .p-single-article .p-single-article__title .p-single-article__title-text {
      font-size: 40px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 60px */
      letter-spacing: 2px;
      color: #222; }
      @media screen and (max-width: 896px) {
        .p-single-article .p-single-article__title .p-single-article__title-text {
          font-size: 28px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          /* 42px */
          letter-spacing: 1.4px; } }
  .p-single-article .p-single-article__image {
    margin-top: 56px; }
    @media screen and (max-width: 896px) {
      .p-single-article .p-single-article__image {
        margin-top: 40px; } }
    .p-single-article .p-single-article__image img {
      width: 100%;
      height: 420px;
      border-radius: 8px;
      object-fit: cover; }
      @media screen and (max-width: 992px) {
        .p-single-article .p-single-article__image img {
          height: 320px; } }
      @media screen and (max-width: 576px) {
        .p-single-article .p-single-article__image img {
          height: 184px; } }
  .p-single-article .p-single-article__content {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    border-bottom: 1px solid #bec3cb;
    padding-bottom: 56px; }
    @media screen and (max-width: 896px) {
      .p-single-article .p-single-article__content {
        margin-top: 40px;
        gap: 40px;
        padding-bottom: 40px; } }
    .p-single-article .p-single-article__content h2 {
      color: #222;
      font-size: 32px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 48px */
      letter-spacing: 1.6px;
      border-bottom: 1px solid #2c2f35;
      padding-bottom: 24px; }
    .p-single-article .p-single-article__content h3 {
      font-size: 28px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 42px */
      letter-spacing: 1.4px;
      color: #222; }
    .p-single-article .p-single-article__content h4 {
      font-size: 24px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 36px */
      letter-spacing: 1.2px; }
    .p-single-article .p-single-article__content h5 {
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 30px */
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 12px; }
      .p-single-article .p-single-article__content h5::before {
        content: "";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 8px;
        height: 8px;
        background: url(../img/page/single_eclips.svg) no-repeat center center; }
    .p-single-article .p-single-article__content h6 {
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 30px */
      letter-spacing: 1px; }
    .p-single-article .p-single-article__content p {
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px; }
    .p-single-article .p-single-article__content a {
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px;
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: none;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font;
      color: #2843cf; }
      .p-single-article .p-single-article__content a:hover {
        transition: all 0.3s ease;
        opacity: 0.7; }
    .p-single-article .p-single-article__content strong {
      font-size: 15px;
      font-style: normal;
      font-weight: 700;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px; }
    .p-single-article .p-single-article__content ul {
      list-style: disc;
      margin-left: 24px; }
      .p-single-article .p-single-article__content ul li {
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 25.5px */
        letter-spacing: 0.75px; }
  .p-single-article .p-single-article__back-button {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 56px; }
    @media screen and (max-width: 896px) {
      .p-single-article .p-single-article__back-button {
        margin-top: 40px; } }

.p-appeal-section {
  margin-top: 160px;
  background: url(../img/page/recruit_appeal_bg.svg) no-repeat top center;
  padding: 160px 0 0; }
  @media screen and (max-width: 896px) {
    .p-appeal-section {
      padding: 80px 0 64px;
      margin-top: 80px;
      background-size: 2470% 304px; } }
  .p-appeal-section .c-page-header h2 {
    color: #fff; }
  .p-appeal-section .c-page-header p {
    color: #fff; }
  .p-appeal-section .p-appeal-cards {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    width: 1140px;
    margin: 80px auto 0; }
    @media screen and (max-width: 896px) {
      .p-appeal-section .p-appeal-cards {
        margin-top: 40px;
        width: 100%;
        flex-direction: column;
        gap: 8px;
        padding: 0 24px; } }
  .p-appeal-section .p-appeal-card {
    width: calc(100% / 3);
    align-self: stretch;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box; }
    @media screen and (max-width: 896px) {
      .p-appeal-section .p-appeal-card {
        width: 100%;
        padding: 24px; } }
  .p-appeal-section .p-appeal-card__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch; }
    @media screen and (max-width: 896px) {
      .p-appeal-section .p-appeal-card__content {
        gap: 8px; } }
  .p-appeal-section .p-appeal-card__icon {
    margin-left: auto;
    width: 80px;
    height: 80px;
    display: flex;
    padding: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background: linear-gradient(180deg, rgba(255, 98, 10, 0.9) 0%, rgba(255, 98, 10, 0.3) 100%); }
    @media screen and (max-width: 896px) {
      .p-appeal-section .p-appeal-card__icon {
        width: 48px;
        height: 48px; } }
    .p-appeal-section .p-appeal-card__icon span {
      font-size: 32px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%;
      /* 32px */
      letter-spacing: 1.6px;
      color: #fff; }
      @media screen and (max-width: 896px) {
        .p-appeal-section .p-appeal-card__icon span {
          font-size: 20px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
          /* 20px */
          letter-spacing: 1px; } }
  .p-appeal-section .p-appeal-card__title {
    color: #ff620a;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 42px */
    letter-spacing: 1.4px; }
    @media screen and (max-width: 896px) {
      .p-appeal-section .p-appeal-card__title {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 27px */
        letter-spacing: 0.9px; } }
  .p-appeal-section .p-appeal-card__text {
    color: #222;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .p-appeal-section .p-appeal-card__text {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .p-appeal-section .p-appeal-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    color: #222;
    text-decoration: underline; }
    .p-appeal-section .p-appeal-card__link span {
      font-size: 18px; }
    .p-appeal-section .p-appeal-card__link:hover {
      text-decoration: none; }
  .p-appeal-section .p-appeal-card__link-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    text-decoration: none;
    cursor: pointer; }
  .p-appeal-section .p-appeal-card__link-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    color: #222;
    text-decoration: none; }

.p-recruit-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 0; }
  .p-recruit-section .p-recruit-cards {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    width: 100%; }
  .p-recruit-section .p-recruit-card {
    width: 370px;
    align-self: stretch;
    padding: 40px;
    background: white;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px; }
  .p-recruit-section .p-recruit-card__content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 24px; }
  .p-recruit-section .p-recruit-card__icon {
    width: 80px;
    height: 80px;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 98, 10, 0.9) 0%, rgba(255, 98, 10, 0.3) 100%);
    overflow: hidden;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .p-recruit-section .p-recruit-card__icon span {
      color: white;
      font-size: 32px;
      font-weight: 400;
      line-height: 32px;
      letter-spacing: 1.6px; }
  .p-recruit-section .p-recruit-card__title {
    align-self: stretch;
    color: #ff620a;
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: 1.4px; }
  .p-recruit-section .p-recruit-card__text {
    align-self: stretch;
    color: #222222;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
    letter-spacing: 0.75px; }

@media screen and (max-width: 1200px) {
  .p-recruit-section .p-recruit-content {
    padding: 60px 20px; }
  .p-recruit-section .p-recruit-cards {
    flex-wrap: wrap;
    justify-content: center; }
  .p-recruit-section .p-recruit-card {
    width: calc(50% - 15px); } }
@media screen and (max-width: 768px) {
  .p-recruit-section .p-recruit-cards {
    flex-direction: column;
    align-items: center; }
  .p-recruit-section .p-recruit-card {
    width: 100%; } }
.p-employee-voices {
  margin: 160px 0;
  text-align: center; }
  @media screen and (max-width: 896px) {
    .p-employee-voices {
      margin: 0; } }
  .p-employee-voices .c-page-header {
    margin-bottom: 64px; }
    @media screen and (max-width: 896px) {
      .p-employee-voices .c-page-header {
        margin-bottom: 32px; } }
  .p-employee-voices .p-employee-voices__container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden; }
  .p-employee-voices .employeeVoicesSlider .slick-list {
    overflow: hidden; }
  .p-employee-voices .employeeVoicesSlider .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px; }
  .p-employee-voices .employeeVoicesSlider .slick-slide {
    width: 300px !important;
    border-radius: 8px;
    transition: width 0.3s ease; }
    @media screen and (max-width: 896px) {
      .p-employee-voices .employeeVoicesSlider .slick-slide {
        width: 154px !important; } }
    .p-employee-voices .employeeVoicesSlider .slick-slide img {
      width: 100%;
      height: auto;
      display: block; }
  .p-employee-voices .employeeVoicesSlider .slick-center {
    width: 420px !important; }
    @media screen and (max-width: 896px) {
      .p-employee-voices .employeeVoicesSlider .slick-center {
        width: 240px !important; } }
  .p-employee-voices .slick-slide {
    width: 300px;
    border-radius: 8px;
    transition: width 0.3s ease; }
    .p-employee-voices .slick-slide img {
      width: 100%;
      height: auto;
      display: block; }
  .p-employee-voices .slick-center {
    width: 420px; }

@media screen and (max-width: 1024px) {
  .p-employee-voices .slick-slide {
    width: 240px !important; }
  .p-employee-voices .slick-center {
    width: 360px !important; } }
@media screen and (max-width: 768px) {
  .p-employee-voices .slick-slide {
    width: 200px !important; }
  .p-employee-voices .slick-center {
    width: 300px !important; } }
@media screen and (max-width: 480px) {
  .p-employee-voices .slick-slide {
    width: 160px !important; }
  .p-employee-voices .slick-center {
    width: 260px !important; } }
.p-recruit-cover {
  background: url(../img/page/recruit_cover.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 522px; }
  @media screen and (max-width: 896px) {
    .p-recruit-cover {
      margin-top: 80px;
      height: 210px; } }

.p-recruit-benefits {
  width: 1140px;
  margin: 0 auto;
  padding: 160px 0; }
  @media screen and (max-width: 896px) {
    .p-recruit-benefits {
      width: 100%;
      padding: 80px 0; } }
  .p-recruit-benefits .p-recruit-benefits__description {
    padding: 80px 0;
    color: #2c2f35;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 30px */
    letter-spacing: 1px; }
    @media screen and (max-width: 896px) {
      .p-recruit-benefits .p-recruit-benefits__description {
        padding: 40px 24px;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 25.5px */
        letter-spacing: 0.75px; } }
  .p-recruit-benefits .p-recruit-benefits__cards {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 64px 36px;
    align-self: stretch;
    flex-wrap: wrap; }
    @media screen and (max-width: 896px) {
      .p-recruit-benefits .p-recruit-benefits__cards {
        padding: 0 24px; } }
    @media screen and (max-width: 576px) {
      .p-recruit-benefits .p-recruit-benefits__cards {
        flex-direction: column;
        gap: 20px;
        width: 100%; } }
  .p-recruit-benefits .p-recruit-benefits__card {
    width: calc(100% / 3 - 36px); }
    @media screen and (max-width: 768px) {
      .p-recruit-benefits .p-recruit-benefits__card {
        width: calc(100% / 2 - 36px); } }
    @media screen and (max-width: 576px) {
      .p-recruit-benefits .p-recruit-benefits__card {
        width: 100%; } }
    .p-recruit-benefits .p-recruit-benefits__card img {
      width: 100%;
      height: auto; }
    .p-recruit-benefits .p-recruit-benefits__card h3 {
      padding-top: 32px;
      color: #222;
      font-size: 24px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      letter-spacing: 1.2px; }
      @media screen and (max-width: 896px) {
        .p-recruit-benefits .p-recruit-benefits__card h3 {
          font-size: 18px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          /* 27px */
          letter-spacing: 0.9px; } }
    .p-recruit-benefits .p-recruit-benefits__card p {
      padding-top: 24px;
      color: #222;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px; }
      @media screen and (max-width: 896px) {
        .p-recruit-benefits .p-recruit-benefits__card p {
          padding-top: 16px;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }
  .p-recruit-benefits .p-recruit-benefits__button-container {
    margin-top: 80px;
    text-align: center; }
    @media screen and (max-width: 896px) {
      .p-recruit-benefits .p-recruit-benefits__button-container {
        margin-top: 40px; } }

.p-recruit-interview {
  padding: 0 0 160px;
  max-width: 1140px;
  margin: 0 auto; }
  @media screen and (max-width: 896px) {
    .p-recruit-interview {
      padding: 0 0 80px;
      width: 100%; } }
  .p-recruit-interview .p-recruit-interview__container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden; }
  .p-recruit-interview .p-recruit-interview__description {
    padding: 80px 0 0;
    color: #2c2f35;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 30px */
    letter-spacing: 1px; }
    @media screen and (max-width: 896px) {
      .p-recruit-interview .p-recruit-interview__description {
        padding: 32px 24px 0;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 25.5px */
        letter-spacing: 0.75px; } }
  .p-recruit-interview .p-recruit-interview__nav-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 48px; }
    @media screen and (max-width: 896px) {
      .p-recruit-interview .p-recruit-interview__nav-buttons {
        margin-top: 40px;
        padding: 0 24px; } }
    @media screen and (max-width: 896px) {
      .p-recruit-interview .p-recruit-interview__nav-buttons .--md {
        width: 48px;
        height: 48px; }
        .p-recruit-interview .p-recruit-interview__nav-buttons .--md > div {
          line-height: 0; }
        .p-recruit-interview .p-recruit-interview__nav-buttons .--md span {
          font-size: 18px; } }
    .p-recruit-interview .p-recruit-interview__nav-buttons .slick-disabled {
      opacity: 0.5;
      pointer-events: none; }
  .p-recruit-interview .p-recruit-interview__button-container {
    margin-top: 80px;
    text-align: center; }
  .p-recruit-interview.--secondary {
    padding-top: 80px; }
    @media screen and (max-width: 896px) {
      .p-recruit-interview.--secondary {
        padding-top: 0; } }
    .p-recruit-interview.--secondary .c-page-header h2 {
      font-size: 40px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 60px */
      letter-spacing: 0.8px;
      text-transform: uppercase; }
      @media screen and (max-width: 896px) {
        .p-recruit-interview.--secondary .c-page-header h2 {
          font-size: 28px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          /* 42px */
          letter-spacing: 0.56px;
          text-transform: uppercase; } }
    .p-recruit-interview.--secondary .c-page-header p {
      font-size: 15px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 22.5px */
      letter-spacing: 0.75px; }
    .p-recruit-interview.--secondary .p-recruit-interview__slide {
      margin-top: 64px; }
      @media screen and (max-width: 896px) {
        .p-recruit-interview.--secondary .p-recruit-interview__slide {
          margin-top: 40px; } }

.p-recruit-interview__slide {
  margin: 80px auto 0;
  display: flex;
  justify-content: center;
  gap: 36px; }
  @media screen and (max-width: 896px) {
    .p-recruit-interview__slide {
      margin: 44px 24px 0; } }
  .p-recruit-interview__slide .p-recruit-interview__slide-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    border-radius: 8px;
    flex-shrink: 0;
    max-width: calc(1140px / 2); }
    @media screen and (max-width: 896px) {
      .p-recruit-interview__slide .p-recruit-interview__slide-item {
        max-width: 100%; } }
    .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-content {
      max-width: 552px;
      align-self: stretch;
      position: relative; }
    .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-footer {
      margin-top: 24px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 16px; }
      .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-footer .p-recruit-interview__slide-department {
        display: flex;
        padding: 1px 20px 2px 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background: #ebedf1;
        border-radius: 9999px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px;
        color: #41454e; }
        @media screen and (max-width: 896px) {
          .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-footer .p-recruit-interview__slide-department {
            padding: 1px 16px 2px 16px;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 170%;
            /* 20.4px */
            letter-spacing: 0.6px; } }
      .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-footer .p-recruit-interview__slide-info {
        padding-top: 16px;
        color: #41454e;
        font-size: 14px;
        font-weight: 400;
        line-height: 23.8px;
        letter-spacing: 0.7px; }
        @media screen and (max-width: 896px) {
          .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-footer .p-recruit-interview__slide-info {
            padding-top: 10px;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 170%;
            /* 20.4px */
            letter-spacing: 0.6px; } }
        .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-footer .p-recruit-interview__slide-info > span {
          display: inline-block;
          padding-left: 16px; }
          @media screen and (max-width: 896px) {
            .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-footer .p-recruit-interview__slide-info > span {
              padding-left: 12px; } }
      .p-recruit-interview__slide .p-recruit-interview__slide-item .p-recruit-interview__slide-footer .p-recruit-interview__slide-info-container {
        margin-left: auto; }
    .p-recruit-interview__slide .p-recruit-interview__slide-item .slick-slide {
      padding: 0 18px; }
    .p-recruit-interview__slide .p-recruit-interview__slide-item .slick-list {
      margin: 0 -18px; }

.p-recruit-data {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0 160px;
  transition: opacity 0.3s ease; }
  .p-recruit-data a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease; }
  @media screen and (max-width: 896px) {
    .p-recruit-data {
      padding: 0 24px 80px; } }
  @media screen and (max-width: 896px) {
    .p-recruit-data img {
      width: 300px;
      margin: 0 auto; } }
  @media screen and (max-width: 576px) {
    .p-recruit-data img {
      width: 100%; } }

.p-recruit-section__image-container {
  padding: 40px 8px 0 24px; }

.p-data .p-data__header {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 0 120px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__header {
      padding: 40px 0 0; } }
.p-data .p-data__description {
  padding-top: 80px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  /* 40px */
  letter-spacing: 1px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__description {
      padding: 40px 24px 0;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px; } }
.p-data .p-data__content {
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 160px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__content {
      padding: 64px 24px 80px; } }
.p-data .p-data__section {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__section {
      margin-bottom: 16px; } }
.p-data .p-data__about {
  padding-bottom: 120px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__about {
      padding-bottom: 64px;
      flex-direction: column;
      gap: 16px;
      display: flex; } }
.p-data .p-data__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-content: flex-start; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__cards {
      flex-direction: column;
      gap: 16px; } }
  @media screen and (min-width: 896px) {
    .p-data .p-data__cards.--secondary {
      margin-top: 16px; } }
.p-data .p-data__card {
  padding: 36px 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc((100% - 30px) / 3);
  box-sizing: border-box; }
  .p-data .p-data__card.--wide-double {
    width: calc((100% - 30px) / 2); }
    @media screen and (max-width: 896px) {
      .p-data .p-data__card.--wide-double {
        width: 100%; } }
  .p-data .p-data__card.--wide {
    width: calc((100% - 30px) / 3 * 2); }
    @media screen and (max-width: 896px) {
      .p-data .p-data__card.--wide {
        width: 100%; } }
  @media screen and (max-width: 896px) {
    .p-data .p-data__card {
      width: 100%;
      padding: 20px 24px;
      gap: 8px; } }
.p-data .p-data__card--wide {
  width: calc((100% - 15px) / 2); }
  @media screen and (max-width: 896px) {
    .p-data .p-data__card--wide {
      width: 100%; } }
.p-data .p-data__card-title {
  color: #ff620a;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.9px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__card-title {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-data .p-data__card-text {
  color: #222222;
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__card-text {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-data .p-data__chart {
  width: 290px;
  height: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__chart {
      width: 100%;
      height: 261px; } }
  .p-data .p-data__chart.--half {
    width: 482px;
    height: 290px;
    justify-content: flex-start;
    flex-direction: row;
    gap: 52px; }
    @media screen and (max-width: 896px) {
      .p-data .p-data__chart.--half {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 16px; } }
.p-data .p-data__chart--wide {
  width: 100%;
  height: 290px; }
.p-data .p-data__dynamic-chart {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box; }
  .p-data .p-data__dynamic-chart svg {
    max-width: 100%;
    max-height: 100%;
    height: auto; }
    .p-data .p-data__dynamic-chart svg text {
      font-family: inherit; }
.p-data .p-data__stats {
  padding-top: 28px; }
.p-data .p-data__stat-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px; }
.p-data .p-data__stat-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px; }
.p-data .p-data__stat-label {
  color: #2c2f35;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.9px; }
.p-data .p-data__stat-value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px; }
.p-data .p-data__stat-number {
  color: #2c2f35;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.8px; }
.p-data .p-data__stat-unit {
  color: #2c2f35;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.64px; }
.p-data .p-data__age-stats {
  display: flex;
  flex-direction: column;
  gap: 8px; }
.p-data .p-data__age-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px; }
.p-data .p-data__age-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.75px; }
  .p-data .p-data__age-label:nth-child(1) {
    color: white; }
  .p-data .p-data__age-label:nth-child(2) {
    color: white; }
  .p-data .p-data__age-label:nth-child(3) {
    color: #86544e; }
  .p-data .p-data__age-label:nth-child(4) {
    color: #7d6166; }
  .p-data .p-data__age-label:nth-child(5) {
    color: #697386; }
.p-data .p-data__age-value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px; }
.p-data .p-data__age-number {
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.56px; }
  .p-data .p-data__age-number:nth-child(1) {
    color: white; }
  .p-data .p-data__age-number:nth-child(2) {
    color: white; }
  .p-data .p-data__age-number:nth-child(3) {
    color: #86544e; }
  .p-data .p-data__age-number:nth-child(4) {
    color: #7d6166; }
  .p-data .p-data__age-number:nth-child(5) {
    color: #697386; }
.p-data .p-data__age-unit {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.4px; }
  .p-data .p-data__age-unit:nth-child(1) {
    color: white; }
  .p-data .p-data__age-unit:nth-child(2) {
    color: white; }
  .p-data .p-data__age-unit:nth-child(3) {
    color: #86544e; }
  .p-data .p-data__age-unit:nth-child(4) {
    color: #7d6166; }
  .p-data .p-data__age-unit:nth-child(5) {
    color: #697386; }
.p-data .p-data__job-stats {
  display: flex;
  flex-direction: column;
  gap: 8px; }
.p-data .p-data__job-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px; }
.p-data .p-data__job-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.75px; }
  .p-data .p-data__job-label:nth-child(1) {
    color: white; }
  .p-data .p-data__job-label:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__job-label:nth-child(3) {
    color: #697386; }
.p-data .p-data__job-value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px; }
.p-data .p-data__job-number {
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.56px; }
  .p-data .p-data__job-number:nth-child(1) {
    color: white; }
  .p-data .p-data__job-number:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__job-number:nth-child(3) {
    color: #697386; }
.p-data .p-data__job-unit {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.4px; }
  .p-data .p-data__job-unit:nth-child(1) {
    color: white; }
  .p-data .p-data__job-unit:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__job-unit:nth-child(3) {
    color: #697386; }
.p-data .p-data__engineer-stats {
  display: flex;
  flex-direction: column;
  gap: 8px; }
.p-data .p-data__engineer-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px; }
.p-data .p-data__engineer-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.75px; }
  .p-data .p-data__engineer-label:nth-child(1) {
    color: white; }
  .p-data .p-data__engineer-label:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__engineer-label:nth-child(3) {
    color: #697386; }
.p-data .p-data__engineer-value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px; }
.p-data .p-data__engineer-number {
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.56px; }
  .p-data .p-data__engineer-number:nth-child(1) {
    color: white; }
  .p-data .p-data__engineer-number:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__engineer-number:nth-child(3) {
    color: #697386; }
.p-data .p-data__engineer-unit {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.4px; }
  .p-data .p-data__engineer-unit:nth-child(1) {
    color: white; }
  .p-data .p-data__engineer-unit:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__engineer-unit:nth-child(3) {
    color: #697386; }
.p-data .p-data__side-job-stats {
  display: flex;
  flex-direction: column;
  gap: 8px; }
.p-data .p-data__side-job-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px; }
.p-data .p-data__side-job-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.75px; }
  .p-data .p-data__side-job-label:nth-child(1) {
    color: white; }
  .p-data .p-data__side-job-label:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__side-job-label:nth-child(3) {
    color: #697386; }
.p-data .p-data__side-job-value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px; }
.p-data .p-data__side-job-number {
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.56px; }
  .p-data .p-data__side-job-number:nth-child(1) {
    color: white; }
  .p-data .p-data__side-job-number:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__side-job-number:nth-child(3) {
    color: #697386; }
.p-data .p-data__side-job-unit {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.4px; }
  .p-data .p-data__side-job-unit:nth-child(1) {
    color: white; }
  .p-data .p-data__side-job-unit:nth-child(2) {
    color: #86544e; }
  .p-data .p-data__side-job-unit:nth-child(3) {
    color: #697386; }
.p-data .p-data__reason-stats {
  padding: 91px 43px 92px 42px;
  display: inline-flex;
  align-items: flex-start;
  gap: 56px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__reason-stats {
      flex-direction: column;
      gap: 8px;
      padding: 20px 24px; } }
  .p-data .p-data__reason-stats.--secondary {
    padding-top: 39px;
    padding-bottom: 38px; }
.p-data .p-data__reason-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__reason-column {
      gap: 8px; } }
.p-data .p-data__reason-item {
  display: flex;
  align-items: center;
  gap: 16px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__reason-item {
      gap: 8px;
      align-items: flex-start; } }
.p-data .p-data__reason-rank {
  color: #636977;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 1px;
  display: flex;
  padding: 4px 24px 3px 24px;
  align-items: center;
  gap: 32px;
  border-radius: 9999px;
  background: #ebedf1; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__reason-rank {
      padding: 4px 20px 3px 20px;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px;
      gap: 12px; } }
.p-data .p-data__reason-rank--1 {
  background: #f26427;
  color: white; }
.p-data .p-data__reason-rank--2 {
  background: #bcd5f0;
  color: white; }
.p-data .p-data__reason-rank--3 {
  background: #febba8;
  color: white; }
.p-data .p-data__reason-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 1px;
  color: #222222; }
  @media screen and (min-width: 896px) {
    .p-data .p-data__reason-text {
      white-space: nowrap; } }
  @media screen and (max-width: 896px) {
    .p-data .p-data__reason-text {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-data .p-data__reason-discription {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__reason-discription {
      padding-top: 28px; } }
  .p-data .p-data__reason-discription p {
    color: #636977;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .p-data .p-data__reason-discription p {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
    .p-data .p-data__reason-discription p span {
      display: inline-block;
      padding-left: 16px; }
      @media screen and (max-width: 896px) {
        .p-data .p-data__reason-discription p span {
          display: block;
          padding-left: 12px;
          text-align: right; } }
.p-data .p-data__ratio-container {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  @media screen and (max-width: 896px) {
    .p-data .p-data__ratio-container {
      padding: 20px 0;
      gap: 8px; } }
.p-data .p-data__ratio-group {
  display: flex;
  align-items: center;
  gap: 10px; }
  .p-data .p-data__ratio-group .p-data__ratio-label {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px;
    color: #222; }
    @media screen and (max-width: 896px) {
      .p-data .p-data__ratio-group .p-data__ratio-label {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .p-data .p-data__ratio-group::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: #ff620a; }
    @media screen and (max-width: 896px) {
      .p-data .p-data__ratio-group::before {
        width: 10px;
        height: 10px; } }
  .p-data .p-data__ratio-group.--orange2::before {
    background: #ff8e57; }
  .p-data .p-data__ratio-group.--orange03::before {
    background: #febba8; }
  .p-data .p-data__ratio-group.--pink::before {
    background: #e9cbd1; }
  .p-data .p-data__ratio-group.--blue::before {
    background: #bcd5f0; }
  .p-data .p-data__ratio-group.--blue2::before {
    background: #ebedf1; }
  .p-data .p-data__ratio-group .p-data__ratio-number {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 24px */
    letter-spacing: 0.48px;
    color: #222;
    padding-right: 2px; }
    @media screen and (max-width: 896px) {
      .p-data .p-data__ratio-group .p-data__ratio-number {
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        /* 20px */
        letter-spacing: 0.4px; } }
  .p-data .p-data__ratio-group .p-data__ratio-unit {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 15px */
    letter-spacing: 0.3px; }
    @media screen and (max-width: 896px) {
      .p-data .p-data__ratio-group .p-data__ratio-unit {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        /* 14px */
        letter-spacing: 0.28px; } }

.p-data__benefit-cards {
  display: flex;
  gap: 15px; }
  @media screen and (max-width: 896px) {
    .p-data__benefit-cards {
      flex-wrap: wrap; } }
  @media screen and (max-width: 576px) {
    .p-data__benefit-cards {
      flex-direction: column;
      gap: 16px; } }
  .p-data__benefit-cards .p-data__benefit-card {
    width: 273px;
    flex-shrink: 0;
    display: flex;
    padding: 36px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 8px;
    background: white; }
    @media screen and (max-width: 896px) {
      .p-data__benefit-cards .p-data__benefit-card {
        width: calc((100% - 15px) / 2);
        padding: 20px 24px;
        gap: 8px; } }
    @media screen and (max-width: 576px) {
      .p-data__benefit-cards .p-data__benefit-card {
        width: 100%; } }
    .p-data__benefit-cards .p-data__benefit-card .p-data__benefit-card-title {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px;
      color: #ff620a; }
      @media screen and (max-width: 896px) {
        .p-data__benefit-cards .p-data__benefit-card .p-data__benefit-card-title {
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }
  .p-data__benefit-cards .p-data__benefit-chart img {
    width: 80px;
    height: 80px; }
    @media screen and (max-width: 896px) {
      .p-data__benefit-cards .p-data__benefit-chart img {
        width: 64px;
        height: 64px; } }
  .p-data__benefit-cards .p-data__benefit-stats {
    display: flex;
    gap: 6px;
    width: 100%;
    align-items: baseline;
    justify-content: flex-end; }
    .p-data__benefit-cards .p-data__benefit-stats .p-data__benefit-stat-number {
      display: block;
      color: #2c2f35;
      font-size: 72px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%;
      /* 72px */
      letter-spacing: 1.44px; }
      @media screen and (max-width: 896px) {
        .p-data__benefit-cards .p-data__benefit-stats .p-data__benefit-stat-number {
          font-size: 48px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
          /* 48px */
          letter-spacing: 0.96px; } }
    .p-data__benefit-cards .p-data__benefit-stats .p-data__benefit-stat-unit {
      display: block;
      color: #2c2f35;
      font-size: 40px;
      font-style: normal;
      font-weight: 500;
      line-height: 100%;
      /* 40px */
      letter-spacing: 0.8px; }
      @media screen and (max-width: 896px) {
        .p-data__benefit-cards .p-data__benefit-stats .p-data__benefit-stat-unit {
          font-size: 24px;
          font-style: normal;
          font-weight: 500;
          line-height: 100%;
          /* 24px */
          letter-spacing: 0.48px; } }
  .p-data__benefit-cards .p-data__benefit-card-text {
    color: #222222;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .p-data__benefit-cards .p-data__benefit-card-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }

.p-interview__description {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  /* 40px */
  letter-spacing: 1px;
  color: #2c2f35;
  padding-top: 80px; }
  @media screen and (max-width: 896px) {
    .p-interview__description {
      padding: 40px 24px 0;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px; } }

.p-interview__content {
  margin-top: 160px;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 64px 36px;
  flex-wrap: wrap; }
  @media screen and (max-width: 896px) {
    .p-interview__content {
      margin: 64px 24px 0;
      gap: 36px; } }
  .p-interview__content .p-interview__card {
    display: flex;
    width: 552px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0; }
    @media screen and (max-width: 1140px) {
      .p-interview__content .p-interview__card {
        width: calc(100% / 2 - 24px); } }
    @media screen and (max-width: 576px) {
      .p-interview__content .p-interview__card {
        width: 100%; } }
  .p-interview__content .p-interview__slide-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: space-between; }
    .p-interview__content .p-interview__slide-footer .p-interview__slide-department-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px; }
    .p-interview__content .p-interview__slide-footer .p-interview__slide-department {
      display: flex;
      padding: 1px 20px 2px 20px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px;
      color: #41454e;
      border-radius: 9999px;
      background: #ebedf1; }
      @media screen and (max-width: 896px) {
        .p-interview__content .p-interview__slide-footer .p-interview__slide-department {
          display: flex;
          padding: 1px 16px 2px 16px;
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: 170%;
          /* 20.4px */
          letter-spacing: 0.6px; } }
    .p-interview__content .p-interview__slide-footer .p-interview__slide-info {
      display: flex;
      align-items: center;
      gap: 16px; }
      @media screen and (max-width: 896px) {
        .p-interview__content .p-interview__slide-footer .p-interview__slide-info {
          gap: 12px; } }
    .p-interview__content .p-interview__slide-footer .p-interview__slide-info {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px;
      color: #41454e; }
      @media screen and (max-width: 896px) {
        .p-interview__content .p-interview__slide-footer .p-interview__slide-info {
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: 170%;
          /* 20.4px */
          letter-spacing: 0.6px; } }

.p-interview-single .p-single-interview__interview-container {
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  gap: 80px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-single-interview__interview-container {
      padding: 40px 24px 80px;
      gap: 40px; } }
.p-interview-single .p-single-interview__cover {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-single-interview__cover {
      height: 210px;
      width: calc(100% + 48px);
      position: relative;
      left: -24px; } }
  @media screen and (min-width: 896px) {
    .p-interview-single .p-single-interview__cover img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: auto;
      height: auto;
      max-width: none;
      max-height: none; } }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-single-interview__cover img {
      width: 100%;
      height: 100%;
      object-fit: cover; } }
.p-interview-single .p-interview-single__chat {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px; }
.p-interview-single .p-interview-single__chat-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px; }
.p-interview-single .p-interview-single__question {
  height: 85px;
  padding: 22px 32px 24px;
  background: linear-gradient(90deg, rgba(255, 151, 106, 0.5) 0%, rgba(235, 237, 241, 0) 40%), #ebedf1;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__question {
      padding: 20px 24px 22px 24px;
      height: 66px; } }
  .p-interview-single .p-interview-single__question::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/page/interview/marker.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: -16px; }
.p-interview-single .p-interview-single__question-text {
  color: #222222;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
  letter-spacing: 1px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__question-text {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-interview-single .p-interview-single__answer {
  padding: 22px 32px 24px;
  background: linear-gradient(90deg, rgba(235, 237, 241, 0) 60%, rgba(188, 213, 240, 0.5) 100%), #ebedf1;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  display: flex;
  align-items: center;
  position: relative; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__answer {
      width: calc(100% - 24px);
      padding: 20px 24px 22px 24px; } }
  .p-interview-single .p-interview-single__answer::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/page/interview/marker2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    right: -16px; }
.p-interview-single .p-interview-single__answer-text {
  width: 684px;
  color: #222222;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__answer-text {
      width: 100%;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-interview-single .p-interview-single__career {
  display: flex;
  padding: 80px 98px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 8px;
  border: 1px solid #2c2f35; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__career {
      padding: 24px 24px; } }
.p-interview-single .p-interview-single__career-item {
  display: flex;
  align-items: flex-start;
  gap: 36px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__career-item {
      flex-direction: column;
      gap: 12px; } }
.p-interview-single .p-interview-single__career-year {
  padding-top: 4px;
  width: 62px;
  color: #41454e;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__career-year {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-interview-single .p-interview-single__career-details {
  display: flex;
  flex-direction: column;
  gap: 16px; }
.p-interview-single .p-interview-single__career-title-container {
  display: flex;
  align-items: center;
  gap: 12px; }
.p-interview-single .p-interview-single__career-title {
  color: #222222;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__career-title {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 24px */
      letter-spacing: 0.8px; } }
.p-interview-single .p-interview-single__career-description {
  width: 454px;
  color: #222222;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__career-description {
      width: 100%;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-interview-single .p-interview-single__profile,
.p-interview-single .p-interview-single__career,
.p-interview-single .p-interview-single__chat {
  margin: 0 auto;
  width: 748px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__profile,
    .p-interview-single .p-interview-single__career,
    .p-interview-single .p-interview-single__chat {
      width: 100%; } }
.p-interview-single .p-interview-single__profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__profile {
      gap: 24px; } }
.p-interview-single .p-interview-single__profile-message {
  color: #222222;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 60px */
  letter-spacing: 2px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__profile-message {
      font-size: 28px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 42px */
      letter-spacing: 1.4px; } }
.p-interview-single .p-interview-single__profile-info {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__profile-info {
      gap: 12px; } }
.p-interview-single .p-interview-single__profile-department {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 28px 6px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  background: #ebedf1; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__profile-department {
      padding: 4px 24px 6px 24px; } }
.p-interview-single .p-interview-single__profile-department-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.9px;
  color: #41454e; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__profile-department-text {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      /* 24px */
      letter-spacing: 0.8px; } }
.p-interview-single .p-interview-single__profile-details {
  display: flex;
  gap: 28px; }
  @media screen and (max-width: 896px) {
    .p-interview-single .p-interview-single__profile-details {
      gap: 22px; } }
  .p-interview-single .p-interview-single__profile-details p {
    color: #41454e;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.9px; }
    @media screen and (max-width: 896px) {
      .p-interview-single .p-interview-single__profile-details p {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 24px */
        letter-spacing: 0.8px; } }

.p-benefit .p-benefit__container {
  margin-top: 80px; }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__container {
      margin-top: 24px;
      padding: 0 24px 80px; } }
@media screen and (max-width: 1140px) {
  .p-benefit .p-benefit__section {
    padding: 0 24px; } }
@media screen and (max-width: 896px) {
  .p-benefit .p-benefit__section {
    padding: 0; } }
.p-benefit .p-benefit__header {
  padding-top: 80px;
  width: 1140px;
  margin: 0 auto; }
  @media screen and (max-width: 1140px) {
    .p-benefit .p-benefit__header {
      padding: 80px 24px 0;
      width: 100%; } }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__header {
      padding: 0; } }
.p-benefit .p-benefit__section-title {
  width: 100%;
  color: #222222;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 1.6px; }
.p-benefit .p-benefit__section-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px; }
.p-benefit .p-benefit__cards {
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-bottom: 40px; }
  @media screen and (min-width: 576px) {
    .p-benefit .p-benefit__cards {
      border-bottom: 1px solid #e7eaef; } }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__cards {
      padding-bottom: 0;
      gap: 24px; } }
.p-benefit .p-benefit__card {
  width: calc(100% / 3 - 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px; }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__card {
      width: calc(100% / 2 - 24px);
      gap: 24px;
      padding-bottom: 24px; } }
  @media screen and (max-width: 576px) {
    .p-benefit .p-benefit__card {
      width: 100%;
      border-bottom: 1px solid #e7eaef; } }
.p-benefit .p-benefit__card-image {
  height: 200px;
  position: relative;
  border-radius: 8px;
  overflow: hidden; }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__card-image {
      width: 100%; } }
  .p-benefit .p-benefit__card-image--study {
    background: linear-gradient(180deg, #bcd5f0 0%, white 100%); }
  .p-benefit .p-benefit__card-image--beauty {
    background: linear-gradient(0deg, white 0%, #dbc6ca 100%); }
  .p-benefit .p-benefit__card-image--anniversary {
    background: linear-gradient(0deg, rgba(219, 198, 202, 0) 0%, #dbc6ca 100%), linear-gradient(180deg, #bcd5f0 0%, white 100%); }
  .p-benefit .p-benefit__card-image--club {
    background: linear-gradient(180deg, #bcd5f0 0%, white 100%); }
  .p-benefit .p-benefit__card-image--meeting {
    background: linear-gradient(0deg, white 0%, #dbc6ca 100%); }
  .p-benefit .p-benefit__card-image--bbq {
    background: linear-gradient(0deg, rgba(219, 198, 202, 0) 0%, #dbc6ca 100%), linear-gradient(180deg, #bcd5f0 0%, white 100%); }
  .p-benefit .p-benefit__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
.p-benefit .p-benefit__card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px; }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__card-content {
      gap: 16px; } }
.p-benefit .p-benefit__card-title-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px; }
.p-benefit .p-benefit__card-title {
  color: #222222;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 1.2px; }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__card-title {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }
.p-benefit .p-benefit__card-badge {
  padding: 2px 16px 3px;
  border-radius: 9999px;
  outline: 1px #bec3cb solid;
  outline-offset: -1px;
  display: flex;
  justify-content: center;
  align-items: center; }
.p-benefit .p-benefit__card-badge-text {
  color: #636977;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.9px; }
.p-benefit .p-benefit__card-description {
  color: #222222;
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__card-description {
      width: 100%;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-benefit .p-benefit__item {
  width: calc(100% / 3 - 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px; }
  @media screen and (max-width: 896px) {
    .p-benefit .p-benefit__item {
      width: calc(100% / 2 - 24px);
      padding-bottom: 24px; } }
  @media screen and (max-width: 576px) {
    .p-benefit .p-benefit__item {
      width: 100%;
      border-bottom: 1px solid #e7eaef; } }
.p-benefit .p-benefit__item-title {
  color: #222222;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.9px; }
.p-benefit .p-benefit__item-description {
  color: #222222;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }

.p-salary .p-salary__header {
  padding-top: 80px;
  width: 1140px;
  margin: 0 auto; }
  @media screen and (max-width: 1140px) {
    .p-salary .p-salary__header {
      padding: 80px 24px 0;
      width: 100%; } }
  @media screen and (max-width: 896px) {
    .p-salary .p-salary__header {
      padding: 0; } }
.p-salary .p-salary__container {
  margin-top: 80px; }
  @media screen and (max-width: 896px) {
    .p-salary .p-salary__container {
      margin-top: 24px;
      padding: 0 24px 80px; } }
@media screen and (max-width: 1140px) {
  .p-salary .p-salary__section {
    padding: 0 24px; } }
@media screen and (max-width: 896px) {
  .p-salary .p-salary__section {
    padding: 0; } }
.p-salary .p-salary__text {
  color: #222222;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-salary .p-salary__text {
      font-size: 14px;
      letter-spacing: 0.7px; } }
.p-salary .p-salary__table-wrapper {
  width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  @media screen and (max-width: 896px) {
    .p-salary .p-salary__table-wrapper {
      margin-left: -24px;
      margin-right: -24px;
      padding: 0 24px;
      width: calc(100% + 48px);
      position: relative; }
      .p-salary .p-salary__table-wrapper::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 32px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8px 0 8px 10px;
        border-color: transparent transparent transparent rgba(34, 34, 34, 0.3);
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 3; }
      .p-salary .p-salary__table-wrapper.scrolled::after {
        opacity: 0; } }
.p-salary .p-salary__table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  border-spacing: 0; }
  @media screen and (max-width: 896px) {
    .p-salary .p-salary__table {
      min-width: 900px; } }
  .p-salary .p-salary__table thead {
    background: #f6f7f8; }
    .p-salary .p-salary__table thead tr th:first-child {
      position: sticky;
      left: 0;
      z-index: 2;
      background: #f6f7f8; }
      @media screen and (max-width: 896px) {
        .p-salary .p-salary__table thead tr th:first-child {
          background: #f6f7f8; } }
  .p-salary .p-salary__table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #f7f7f7;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05); }
  .p-salary .p-salary__table th,
  .p-salary .p-salary__table td {
    padding: 12px 16px;
    font-size: 15px;
    line-height: 170%;
    letter-spacing: 0.75px;
    border-bottom: 1px solid #e7eaef;
    text-align: left;
    white-space: nowrap; }
    @media screen and (max-width: 896px) {
      .p-salary .p-salary__table th,
      .p-salary .p-salary__table td {
        font-size: 14px;
        letter-spacing: 0.7px;
        padding: 10px 12px; } }
  .p-salary .p-salary__table th {
    font-weight: 500;
    color: #41454e; }
  .p-salary .p-salary__table td {
    color: #222222;
    font-weight: 400; }
.p-salary .p-salary__sticky-header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
  .p-salary .p-salary__sticky-header .p-salary__table {
    margin: 0; }
    .p-salary .p-salary__sticky-header .p-salary__table thead th {
      padding: 12px 16px;
      font-size: 15px;
      font-weight: 400;
      line-height: 170%;
      letter-spacing: 0.75px;
      border-bottom: 1px solid #e7eaef;
      color: #222222; }
      @media screen and (max-width: 896px) {
        .p-salary .p-salary__sticky-header .p-salary__table thead th {
          font-size: 14px;
          letter-spacing: 0.7px;
          padding: 10px 12px; } }
    .p-salary .p-salary__sticky-header .p-salary__table thead th:first-child {
      position: sticky;
      left: 0;
      z-index: 2;
      background: #f6f7f8;
      box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05); }
.p-salary .p-salary__note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 170%;
  color: #636977; }

.p-recruitment .p-recruitment__positions {
  width: 1140px;
  width: 100%; }
.p-recruitment .p-recruitment__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 944px;
  margin: 0 auto; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__container {
      width: 100%;
      padding: 0 24px; } }
.p-recruitment .p-recruitment__accordion {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__accordion {
      gap: 24px; } }
.p-recruitment .p-recruitment__accordion-item {
  display: flex;
  flex-direction: column; }
.p-recruitment .p-recruitment__accordion-header {
  padding: 22px 24px 22px 32px;
  border-radius: 8px;
  outline: 1px solid #2c2f35;
  outline-offset: -1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__accordion-header {
      padding: 16px 16px 16px 24px; } }
  .p-recruitment .p-recruitment__accordion-header.--active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
.p-recruitment .p-recruitment__accordion-title {
  width: 816px;
  color: #222222;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 1.2px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__accordion-title {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }
.p-recruitment .p-recruitment__accordion-icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222222;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.9px; }
.p-recruitment .p-recruitment__accordion-content {
  padding-bottom: 32px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 1px solid #2c2f35;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__accordion-content {
      width: 100%;
      box-sizing: border-box; } }
  .p-recruitment .p-recruitment__accordion-content.--active {
    max-height: 100000000px;
    opacity: 1;
    padding-bottom: 32px;
    padding-top: 32px; }
    @media screen and (max-width: 896px) {
      .p-recruitment .p-recruitment__accordion-content.--active {
        padding: 0; } }
    @media screen and (max-width: 896px) {
      .p-recruitment .p-recruitment__accordion-content.--active {
        width: 100%; } }
.p-recruitment .p-recruitment__details {
  width: 100%;
  display: flex;
  flex-direction: column; }
.p-recruitment .p-recruitment__detail-row {
  padding: 22px 32px 24px;
  border-bottom: 1px solid #bec3cb;
  display: flex;
  align-items: flex-start;
  gap: 36px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__detail-row {
      flex-direction: column;
      padding: 20px 24px 22px;
      gap: 4px; } }
  .p-recruitment .p-recruitment__detail-row:last-child {
    border-bottom: 1px solid #2c2f35; }
.p-recruitment .p-recruitment__detail-label {
  width: 226px;
  color: #222222;
  font-size: 15px;
  font-weight: 500;
  line-height: 25.5px;
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__detail-label {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
.p-recruitment .p-recruitment__detail-value {
  width: 618px;
  color: #222222;
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__detail-value {
      width: 100%;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__detail-value ul {
      padding-left: 20px; } }
  .p-recruitment .p-recruitment__detail-value li {
    list-style: disc;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px; }
    .p-recruitment .p-recruitment__detail-value li span {
      display: block; }
.p-recruitment .p-recruitment__entry-button {
  padding: 20px 40px 22px;
  background: #2c2f35;
  border-radius: 9999px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.9px;
  transition: background-color 0.3s; }
  .p-recruitment .p-recruitment__entry-button:hover {
    background-color: #4a4f5a; }
  .p-recruitment .p-recruitment__entry-button .p-recruitment__entry-icon {
    width: 16px;
    padding-top: 6px;
    color: white;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.8px; }
.p-recruitment .p-recruitment__flow {
  width: 944px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding-bottom: 144px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow {
      width: 100%;
      gap: 40px; } }
.p-recruitment .p-recruitment__flow-header {
  width: 583px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow-header {
      width: 100%; } }
.p-recruitment .p-recruitment__flow-title {
  text-align: center;
  color: #222222;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 2px; }
.p-recruitment .p-recruitment__flow-description {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.9px; }
.p-recruitment .p-recruitment__flow-steps {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow-steps {
      flex-direction: column; } }
.p-recruitment .p-recruitment__flow-step {
  flex: 1;
  padding: 32px 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow-step {
      gap: 20px; } }
.p-recruitment .p-recruitment__flow-step-number {
  color: #9ea4b1;
  font-size: 18px;
  font-family: Heebo, sans-serif;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.9px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow-step-number {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 24px */
      letter-spacing: 0.8px; } }
.p-recruitment .p-recruitment__flow-step-icon {
  width: 160px;
  height: 160px;
  background: #f7f7f7;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow-step-icon {
      width: 120px;
      height: 120px; } }
  .p-recruitment .p-recruitment__flow-step-icon img {
    width: 80px;
    height: 80px; }
.p-recruitment .p-recruitment__flow-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow-step-content {
      gap: 16px; } }
.p-recruitment .p-recruitment__flow-step-title {
  text-align: center;
  color: #222222;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 1.2px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow-step-title {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      /* 27px */
      letter-spacing: 0.9px; } }
.p-recruitment .p-recruitment__flow-step-description {
  width: 224px;
  color: #222222;
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0.75px; }
  @media screen and (max-width: 896px) {
    .p-recruitment .p-recruitment__flow-step-description {
      width: 100%;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 23.8px */
      letter-spacing: 0.7px; } }
@media screen and (max-width: 896px) {
  .p-recruitment .p-recruitment__entry-button-container {
    width: 100%;
    padding: 0 24px 24px 24px; } }

.p-contact__form {
  width: 712px;
  padding: 80px;
  background: #fff;
  border-radius: 8px;
  margin: 0 auto 160px; }
  @media screen and (max-width: 896px) {
    .p-contact__form {
      width: 100%;
      padding: 24px; } }
  .p-contact__form .p-contact__form-description {
    color: #222222;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .p-contact__form .p-contact__form-description {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        /* 23.8px */
        letter-spacing: 0.7px; } }
  .p-contact__form .p-contact__form-container form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px; }
    @media screen and (max-width: 896px) {
      .p-contact__form .p-contact__form-container form {
        margin-top: 24px; } }
    .p-contact__form .p-contact__form-container form .label {
      padding-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #222;
      font-size: 15px;
      font-style: normal;
      font-weight: 500;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px; }
      @media screen and (max-width: 896px) {
        .p-contact__form .p-contact__form-container form .label {
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 170%;
          /* 23.8px */
          letter-spacing: 0.7px; } }
    .p-contact__form .p-contact__form-container form .required {
      width: 41px;
      height: 21px;
      font-size: 12px;
      font-style: normal;
      font-weight: 700;
      line-height: 170%;
      /* 20.4px */
      letter-spacing: 0.6px;
      border-radius: 3px;
      background: #ec364c;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center; }
    .p-contact__form .p-contact__form-container form input[type="text"],
    .p-contact__form .p-contact__form-container form input[type="email"],
    .p-contact__form .p-contact__form-container form input[type="tel"],
    .p-contact__form .p-contact__form-container form select {
      display: flex;
      padding: 12px 16px 14px 16px;
      justify-content: center;
      align-items: center;
      width: 100%;
      gap: 10px;
      height: 52px;
      border-radius: 4px;
      border: 1px solid #bec3cb;
      background: #f6f7f8;
      box-sizing: border-box; }
      .p-contact__form .p-contact__form-container form input[type="text"]::placeholder,
      .p-contact__form .p-contact__form-container form input[type="email"]::placeholder,
      .p-contact__form .p-contact__form-container form input[type="tel"]::placeholder,
      .p-contact__form .p-contact__form-container form select::placeholder {
        color: #9ea4b1; }
    .p-contact__form .p-contact__form-container form select {
      background: #fff;
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 16px;
      padding-right: 40px; }
    .p-contact__form .p-contact__form-container form .p-contact__form-note {
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 20.4px */
      letter-spacing: 0.6px;
      padding-top: 8px; }
    .p-contact__form .p-contact__form-container form input[type="file"]::file-selector-button {
      font-weight: bold;
      color: #222;
      background: #fff;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px;
      border-radius: 4px;
      border: 1px solid #bec3cb;
      padding: 4px 12px;
      text-align: center;
      height: 36px;
      box-sizing: border-box; }
    .p-contact__form .p-contact__form-container form input[type="checkbox"] {
      width: 18px;
      height: 18px;
      border-radius: 4px;
      border: 1px solid #bec3cb;
      background: #f6f7f8; }
    .p-contact__form .p-contact__form-container form textarea {
      display: flex;
      padding: 12px 16px 14px 16px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      width: 100%;
      height: 156px;
      border-radius: 4px;
      border: 1px solid #bec3cb;
      background: #f6f7f8;
      box-sizing: border-box; }
    .p-contact__form .p-contact__form-container form .mwform-checkbox-field-text {
      display: none; }
    @media screen and (max-width: 896px) {
      .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-item-container {
        display: flex;
        align-items: center;
        gap: 10px; } }
    .p-contact__form .p-contact__form-container form .p-contact__form-birth-date {
      display: flex;
      align-items: center;
      gap: 8px; }
      @media screen and (max-width: 896px) {
        .p-contact__form .p-contact__form-container form .p-contact__form-birth-date {
          display: grid;
          grid-template-columns: 1fr 1fr;
          grid-template-areas: "year year" "month day";
          grid-gap: 8px; } }
      .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-item-container {
        display: flex;
        align-items: center;
        gap: 10px; }
        @media screen and (max-width: 576px) {
          .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-item-container:nth-child(1) {
            grid-area: year; } }
  @media screen and (max-width: 576px) and (max-width: 576px) {
    .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-item-container:nth-child(1) {
      width: calc(50% - 3px); } }
        @media screen and (max-width: 576px) {
          .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-item-container:nth-child(2) {
            grid-area: month; }
          .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-item-container:nth-child(3) {
            grid-area: day; } }
      .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-item {
        position: relative;
        flex: 1; }
        .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-item select {
          appearance: none;
          background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
          background-repeat: no-repeat;
          background-position: right 12px center;
          background-size: 16px;
          padding-right: 40px;
          width: 100%; }
      .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-label {
        color: #41454e;
        font-size: 15px;
        flex-shrink: 0; }
        @media screen and (max-width: 896px) {
          .p-contact__form .p-contact__form-container form .p-contact__form-birth-date-label {
            font-size: 14px; } }
    .p-contact__form .p-contact__form-container form .p-contact__form-checkbox-wrapper {
      padding: 16px 0;
      display: flex;
      align-items: center;
      justify-content: center; }
      .p-contact__form .p-contact__form-container form .p-contact__form-checkbox-wrapper a {
        color: #2843cf;
        text-decoration: underline; }
        .p-contact__form .p-contact__form-container form .p-contact__form-checkbox-wrapper a:hover {
          text-decoration: none; }
      .p-contact__form .p-contact__form-container form .p-contact__form-checkbox-wrapper .label {
        padding: 0 0 0 12px;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.75px;
        color: #222;
        gap: 0; }
        .p-contact__form .p-contact__form-container form .p-contact__form-checkbox-wrapper .label.--file {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 0 0 0 12px;
          font-size: 15px;
          font-style: normal;
          font-weight: 400; }

.p-contact__form-button.--double {
  margin-top: 16px;
  display: flex;
  gap: 24px; }
.p-contact__form-button.--complete {
  margin: 40px auto 0;
  width: 400px; }

.p-contact__confirm-value {
  padding: 12px 16px 14px;
  background: #f6f7f8;
  border-radius: 4px;
  border: 1px solid #bec3cb;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.75px;
  color: #222; }

.p-contact-complete__content {
  width: 552px;
  margin: 80px auto 240px;
  text-align: center; }
.p-contact-complete__message {
  color: #222222;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 25.5px */
  letter-spacing: 0.75px; }
.p-contact-complete__button-container {
  display: flex;
  justify-content: center; }

.p-layout__button {
  display: flex;
  padding: 9px 24px 8px 24px;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  height: 69px;
  position: relative;
  overflow: hidden;
  width: 100%;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.9px;
  transition: all 0.3s ease; }
  @media screen and (max-width: 896px) {
    .p-layout__button {
      display: flex;
      padding: 12px 32px;
      align-items: center;
      justify-content: space-between;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      letter-spacing: 0.8px;
      height: 48px;
      width: 100%; } }
  .p-layout__button span {
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 16px */
    letter-spacing: 0.8px; }
    @media screen and (max-width: 896px) {
      .p-layout__button span {
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 15px */
        letter-spacing: 0.75px; } }
  .p-layout__button.p-layout__button--outline {
    border: 1px solid #2c2f35;
    position: relative;
    z-index: 1;
    background: #fff; }
    .p-layout__button.p-layout__button--outline::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #2c2f35;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
      z-index: -1;
      border-radius: 9999px; }
    .p-layout__button.p-layout__button--outline:hover {
      color: #fff; }
      .p-layout__button.p-layout__button--outline:hover::before {
        transform: scaleX(1); }
  .p-layout__button.p-layout__button--primary {
    background: #2c2f35;
    color: #fff;
    border: 1px solid transparent;
    position: relative;
    z-index: 1; }
    .p-layout__button.p-layout__button--primary::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #fff;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
      z-index: -1;
      border-radius: 9999px; }
    .p-layout__button.p-layout__button--primary:hover {
      color: #2c2f35;
      border: 1px solid #2c2f35; }
      .p-layout__button.p-layout__button--primary:hover::before {
        transform: scaleX(1); }
  .p-layout__button.--entry {
    width: 308px; }
    @media screen and (max-width: 896px) {
      .p-layout__button.--entry {
        width: 100%; } }

.p-contact__form-note {
  padding-bottom: 16px;
  color: #41454e;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 20.4px */
  letter-spacing: 0.6px; }

/* プライバシーポリシーページ */
.p-policy {
  margin-bottom: 160px; }
  .p-policy .p-policy__header {
    margin-bottom: 40px; }
  .p-policy .p-policy__container {
    max-width: 748px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px; }
    @media screen and (max-width: 896px) {
      .p-policy .p-policy__container {
        width: 100%;
        padding: 0 24px; } }
  .p-policy .p-policy__introduction {
    width: 748px;
    margin: 0 auto 64px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px; }
    @media screen and (max-width: 896px) {
      .p-policy .p-policy__introduction {
        width: 100%;
        padding: 0 24px; } }
    .p-policy .p-policy__introduction.--security {
      margin-bottom: 40px;
      display: flex;
      justify-content: flex-end;
      color: #636977;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px; }
  .p-policy .p-policy__section-header {
    margin-bottom: 40px; }
    @media screen and (max-width: 896px) {
      .p-policy .p-policy__section-header {
        margin-bottom: 24px; } }
  .p-policy .p-policy__section-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 48px */
    letter-spacing: 1.6px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2c2f35; }
    @media screen and (max-width: 896px) {
      .p-policy .p-policy__section-title {
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 36px */
        letter-spacing: 1.2px;
        padding-bottom: 16px; } }
  .p-policy .p-policy__section-content {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* 25.5px */
    letter-spacing: 0.75px;
    color: #222222;
    display: flex;
    flex-direction: column;
    gap: 24px; }
    .p-policy .p-policy__section-content ul {
      list-style: disc; }
      .p-policy .p-policy__section-content ul li {
        margin-left: 25px; }
      .p-policy .p-policy__section-content ul.--number {
        display: flex;
        flex-direction: column;
        gap: 24px;
        list-style: decimal; }
    .p-policy .p-policy__section-content .p-policy__text-space {
      margin-bottom: -24px; }
  .p-policy .p-policy__section-ceo {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-direction: column; }
    .p-policy .p-policy__section-ceo p {
      text-align: right;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
      /* 25.5px */
      letter-spacing: 0.75px;
      color: #41454e; }
      .p-policy .p-policy__section-ceo p span {
        display: block;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 36px */
        letter-spacing: 1.2px;
        color: #222; }
        @media screen and (max-width: 896px) {
          .p-policy .p-policy__section-ceo p span {
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            /* 27px */
            letter-spacing: 0.9px; } }

@media screen and (min-width: 896px) {
  .isSp {
    display: none !important; } }
@media screen and (max-width: 896px) {
  .isSp {
    display: block; } }

.isPc {
  display: block; }
  @media screen and (max-width: 896px) {
    .isPc {
      display: none !important; } }

@media screen and (min-width: 576px) {
  .isSm {
    display: none !important; } }
@media screen and (max-width: 576px) {
  .isSm {
    display: block; } }

/* スクロールアニメーション */
.js-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease; }

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

.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0); }

.js-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.js-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0); }

.js-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.js-fade-right.is-visible {
  opacity: 1;
  transform: translateX(0); }

/* 初期表示時のちらつき防止 */
.js-animation-ready {
  visibility: hidden; }

.js-animation-complete {
  visibility: visible; }

/*# sourceMappingURL=style.css.map */
