@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Onest:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap");
:root {
  --brand-primary: var(--orange-700);
  --white: #ffffff;
  --white-opacity-900: rgba(255, 255, 255, 0.9);
  --gray-700: #323232;
  --gray-600: #5a5a5a;
  --gray-500: #6e6e6e;
  --gray-400: #bebebe;
  --gray-300: #d2d2d2;
  --gray-200: #e6e6e6;
  --gray-100: #f5f5f5;
  --gray-50: #f5f5f5;
  --orange-700: #f08300;
  --orange-600: #f39b33;
  --orange-500: #f6b466;
  --orange-400: #f9cd99;
  --orange-300: #fce6cc;
  --orange-200: #fef2e5;
  --orange-100: #fff9f2;
  --text-primary: var(--gray-700);
  --text-secondary: var(--gray-500);
  --text-tertiary: #bebebe;
  --border-primary: var(--gray-200);
  --external-link: #1558d6;
  --font-sans-jp: "Poppins", "Noto Sans JP", "Hiragino Sans", "メイリオ", sans-serif;
  --font-sans-en: "Poppins", "Hiragino Sans", "メイリオ", sans-serif;
  --fw-medium: 500;
  --fw-semibold: 600;
  --blue: #007bc7;
  --green: #267d00;
  --red: #f53c20;
  --red-2: #e86300;
  --yellow-100: #fde19d;

  /* シャドウ */
  --shadow: rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
  background-color: var(--orange-100);

  @media (max-width: 767px) {
    scroll-padding-top: 60px;
  }
}

[tabindex="-1"]:focus {
  outline: none;
}

body {
  font-family: var(--font-sans-jp);
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  line-height: 1.75;
  letter-spacing: 0.08em;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.4s ease;

  &.is-loaded {
    opacity: 1;
  }

  &.is-locked {
    overflow: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--text-primary);
  text-decoration: none;
}

i {
  font-style: normal;
}

button,
input,
textarea,
select {
  border: none;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  background-color: transparent;
}

button,
input[type="checkbox"],
input[type="radio"],
select {
  cursor: pointer;
}

textarea,
select {
  appearance: none;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

li {
  list-style: none;
}

/* ヘッダー */
.l-header {
  position: sticky;
  top: 0;
  z-index: 510;
  opacity: 0;
  transition: all 0.3s ease;

  &.is-visible {
    opacity: 1;
  }

  .l-header__inner {
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 32px 0 32px;
    margin: auto;
    transition: all 0.3s ease;

    @media (max-width: 767px) {
      padding: 0;
      background-color: var(--orange-100);
    }
  }

  .l-header__logo {
    @media (max-width: 767px) {
      padding: 0 0 0 20px;
    }

    a {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 20px;
      transition: all 0.3s ease;

      @media (max-width: 1279px) {
        font-size: 1.4vw;
        gap: 1.5vw;
      }

      @media (max-width: 768px) {
        gap: 8px;
        font-size: 14px;
        font-weight: var(--fw-semibold);
      }

      @media (any-hover: hover) {
        &:hover {
          color: var(--brand-primary);
        }
      }
    }

    img {
      transition: all 0.3s ease;

      @media (max-width: 1279px) {
        width: 4.03vw;
      }

      @media (max-width: 768px) {
        width: 34px;
      }
    }
  }

  .l-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;

    @media (max-width: 1279px) {
      gap: 1.4vw;
    }
  }

  .l-header__menu {
    list-style: none;
    display: flex;
    align-items: center;

    @media (max-width: 768px) {
      display: none;
    }

    .l-header__menu-item {
      position: relative;

      & > a {
        position: relative;
        display: block;
        font-size: 14px;
        font-weight: var(--fw-semibold);
        letter-spacing: 0.05em;
        line-height: 1;
        padding: 32px 24px;
        transition: all 0.2s ease;
        cursor: pointer;

        @media (any-hover: hover) {
          &:hover {
            color: var(--brand-primary);
          }

          &:hover::before {
            transform: translateX(3px);
          }
        }

        @media (max-width: 1279px) {
          font-size: 1.1vw;
          padding: 32px 24px 32px 1.4vw;
        }
        @media (max-width: 850px) {
          padding: 32px 18px 32px 1.4vw;
        }
      }

      &:has(.l-header__sub-menu) > a::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        content: "";
        display: block;
        width: 24px;
        height: 24px;
        margin: auto;
        background: url(../img/common/icon-arrowhead-orange.svg);
        background-repeat: no-repeat;
        background-size: 25%;
        background-position: center;
        transform: rotate(90deg);
        transition: all 0.2s ease;
        /* z-index: 1; */
        cursor: pointer;

        @media (max-width: 768px) {
          background-size: auto;
        }
      }

      @media (any-hover: hover) {
        &:has(.l-header__sub-menu) > a:hover::after {
          transform: rotate(90deg) translateX(3px);
        }
      }
    }
  }

  .l-header__sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 228px;
    background: var(--white);
    border: 1px solid var(--gray-600);
    border-radius: 10px;
    padding: 8px 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.3s ease-out,
      visibility 0.3s ease-out;

    @media (max-width: 1279px) {
      width: 22.8vw;
    }

    .l-header__sub-menu-item {
      & > a {
        position: relative;
        display: block;
        font-size: 14px;
        font-weight: var(--fw-semibold);
        padding: 14px 46px 14px 22px;
        transition: 0.3s ease;

        @media (max-width: 1279px) {
          font-size: 1.1vw;
          padding: 1vw 46px 1vw 22px;
        }

        @media (max-width: 768px) {
          font-size: 14px;
          padding: 14px 46px 14px 22px;
        }

        &::after {
          position: absolute;
          top: 50%;
          right: 22px;
          content: "";
          display: block;
          width: 24px;
          height: 24px;
          margin: auto;
          background: url(../img/common/icon-arrowhead-orange.svg);
          background-repeat: no-repeat;
          background-position: center;
          transform: translateY(-50%);
          transition: all 0.3s ease;
          cursor: pointer;
        }

        @media (any-hover: hover) {
          &:hover {
            color: var(--brand-primary);

            &::after {
              transform: translateY(-50%) translateX(3px);
            }
          }
        }

        span {
          display: inline-block;
        }
      }

      &:first-child > a {
        &::after {
          background: url(../img/common/icon-arrow-orange.svg);
        }
      }

      &:not(:last-child) {
        border-bottom: 1px solid var(--border-primary);
      }
    }
  }

  /* デスクトップでのサブメニュー表示 (JSでis-activeクラスを付与) */
  .l-header__menu-item.is-active > .l-header__sub-menu {
    opacity: 1;
    visibility: visible;
  }

  .l-header__entry {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;

    &::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
      border-radius: 9999px;
      z-index: -10;
    }

    &::after {
      position: absolute;
      top: 2px;
      left: 2px;
      content: "";
      display: block;
      width: calc(100% - 4px);
      height: calc(100% - 4px);
      border-radius: 9999px;
      background-color: var(--white);
      z-index: -10;
    }

    .c-button {
      @media (max-width: 1279px) {
        font-size: 1.1vw;
        height: 52px;
      }

      @media (max-width: 768px) {
        font-size: 12px;
        font-weight: var(--fw-semibold);
        padding: 8px 12px;
        height: auto;
        border: none;
        line-height: 1.2;

        &::before,
        &::after {
          display: none;
        }
      }
    }
  }

  /* スクロール後のスタイル */
  &.is-scroll {
    background-color: var(--white);

    .l-header__inner {
      padding: 0 32px 0 32px;
      @media (max-width: 767px) {
        padding: 0;
        background-color: var(--white);
      }
    }

    .l-header__menu-item > a {
      padding: 27px 24px;

      @media (max-width: 1279px) {
        padding: 32px 24px 32px 1.4vw;
      }
      @media (max-width: 850px) {
        padding: 32px 18px 32px 1.4vw;
      }
    }

    .l-header__logo a {
      font-size: 18px;

      @media (max-width: 1279px) {
        font-size: 1.4vw;
        gap: 1.5vw;
      }

      @media (max-width: 767px) {
        gap: 8px;
        font-size: 14px;
        font-weight: var(--fw-semibold);
      }
    }

    .l-header__logo img {
      width: 43px;
      height: 50px;

      @media (max-width: 1279px) {
        width: 4.03vw;
      }

      @media (max-width: 767px) {
        width: 34px;
      }
    }

    .l-header__entry {
      &::after {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
      }
    }

    .l-header__entry .c-button {
      height: 52px;

      @media (max-width: 768px) {
        height: auto;
      }
    }

    & + .l-main {
      margin: -78px 0 0 0;
    }
  }

  /* スマホ用 メニューボタン */
  .l-header__menu-button {
    display: none;

    @media (max-width: 768px) {
      display: block;
      width: 64px;
      height: 64px;
    }

    .l-header__menu-button-line {
      display: block;
      width: 28px;
      height: 2px;
      background-color: var(--brand-primary);
      margin: 4px auto;
      transition: all 0.3s;
    }

    &[aria-expanded="true"] {
      .l-header__menu-button-line {
        &.l-header__menu-button-line--01 {
          transform: translateY(6px) rotate(45deg);
        }
        &.l-header__menu-button-line--02 {
          opacity: 0;
        }
        &.l-header__menu-button-line--03 {
          transform: translateY(-6px) rotate(-45deg);
        }
      }
    }
  }

  /* モバイルナビゲーション全体のラッパー */
  .l-header__mobile-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    z-index: -10;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding: 64px 0 0;

    .l-header__menu {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding: 32px 20px;
    }

    .l-header__menu-item {
      width: 100%;
      border-bottom: 1px solid var(--border-primary);

      &:last-child {
        border-bottom: none;
      }

      & > a {
        padding: 24px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: var(--fw-semibold);
      }

      &.is-accordion-open > .js-mobile-accordion-trigger::after {
        background-size: auto;
        transform: rotate(270deg);
      }
    }

    .js-mobile-accordion-trigger::after {
      content: "";
      font-size: 12px;
      transition: transform 0.2s ease;
    }

    .js-mobile-accordion-content {
      position: relative;
      left: 0;
      width: 100%;
      max-width: 100%;
      padding: 0 0 0 20px;
      transform: translateY(0);
      border: none;
      visibility: visible;
      opacity: 1;

      .l-header__sub-menu-item {
        &:not(:last-child) {
          border-bottom: none;
        }
      }

      a {
        padding: 10px 0 10px 20px;
        &::after {
          right: 0;
          background-size: auto;
        }
      }
    }

    .l-header__entry {
      padding: 0px;
      justify-content: center;

      &::before {
        content: none;
      }

      .c-button--primary {
        font-size: 16px;
        padding: 19.5px 64px 19.5px 24px;

        &::before,
        &::after {
          display: block;
        }
      }
    }
  }

  @media (max-width: 768px) {
    .l-header__nav .l-header__menu {
      display: none;
    }
  }
}

/* フッター */
.l-footer {
  position: relative;
  z-index: 500;
  background-color: var(--white);
  padding: 78px 24px 50px 24px;

  @media (max-width: 767px) {
    padding: 40px 0 25px 0;
  }

  .l-footer__inner {
    max-width: 1160px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: space-between;

    @media (max-width: 767px) {
      flex-direction: column;
      padding: 0 20px;
      margin: 0 0 32px 0;
    }
  }

  .l-footer__logo {
    a {
      display: flex;
      flex-direction: column;
      gap: 21px;

      span {
        font-weight: var(--fw-semibold);
      }

      @media (max-width: 1279px) {
        img {
          width: 5.5vw;
        }

        span {
          font-size: 1.25vw;
        }
      }

      @media (max-width: 767px) {
        flex-direction: row;
        align-items: center;
        margin: 0 0 32px 0;

        img {
          width: 50px;
        }

        span {
          font-size: 16px;
        }
      }
    }
  }

  .l-footer__nav-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 0;

    @media (max-width: 1279px) {
      grid-column-gap: 3.2vw;
    }

    @media (max-width: 767px) {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 0.75fr);
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      column-gap: 16px;
    }
  }

  .l-footer__nav {
    width: 160px;

    @media (max-width: 1279px) {
      width: 12.87vw;
    }

    @media (max-width: 767px) {
      width: 100%;
    }

    &:first-of-type {
      grid-area: 1/1/3/2;

      @media (max-width: 767px) {
        grid-area: 1/1/2/2;
      }
    }
    &:nth-child(2) {
      grid-area: 1/2/3/3;

      @media (max-width: 767px) {
        grid-area: 1/2/2/3;
        margin: 0 0 32px 0;
      }
    }
    &:nth-child(3) {
      grid-area: 1/3/2/4;
      margin: 0 0 32px 0;

      @media (max-width: 767px) {
        grid-area: 2/1/3/2;
        margin: 0;
      }
    }
    &:nth-child(4) {
      grid-area: 2/3/3/4;

      @media (max-width: 767px) {
        grid-area: 2/2/3/3;
      }
    }

    .l-footer__nav-heading {
      display: block;
      font-size: 16px;
      font-weight: var(--fw-semibold);
      line-height: 1.3;
      margin: 0 0 24px 0;

      @media (max-width: 1279px) {
        font-size: 1.3vw;
      }

      @media (max-width: 767px) {
        font-size: 16px;
        margin: 0 0 16px 0;
      }
    }
  }

  .l-footer__menu {
    list-style: none;
    display: grid;
    line-height: 1.3;
    gap: 16px;

    @media (max-width: 767px) {
      gap: 8px;
    }

    .l-footer__menu-item {
      a {
        font-size: 14px;
        letter-spacing: 0.1em;
        transition: 0.2s ease;
        color: var(--text-secondary);

        @media (max-width: 1279px) {
          font-size: 1.1vw;
        }

        @media (max-width: 767px) {
          font-size: 13px;
        }

        @media (any-hover: hover) {
          &:hover {
            color: var(--brand-primary);
          }
        }
      }
    }
  }

  .l-footer__actions {
    width: 100%;
    max-width: 260px;

    .l-footer__actions-link {
      display: grid;
      gap: 24px;
      list-style: none;
      line-height: 1.3;

      @media (max-width: 1279px) {
        font-size: 1.27vw;
      }

      @media (max-width: 767px) {
        font-size: 16px;
        gap: 16px;
      }

      a {
        width: fit-content;
      }
    }
  }

  .l-footer__copyright {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.08em;

    @media (max-width: 767px) {
      font-size: 13px;
    }
  }

  @media (any-hover: hover) {
    a {
      &:hover {
        color: var(--brand-primary);
      }
    }
  }

  .l-footer__page-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 700;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s,
      visibility 0.3s;

    @media (max-width: 767px) {
      right: 20px;
      bottom: 60px;
    }

    &.is-visible {
      opacity: 1;
      visibility: visible;
    }

    a {
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
      border-radius: 50%;

      &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../img/common/icon-arrow-white.svg);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        transform: rotate(-90deg);
        transition: 0.3s ease;
      }

      @media (any-hover: hover) {
        &:hover:before {
          background-position: 65% 50%;
          transition: 0.3s ease;
        }
      }
    }
  }
}

/* メイン */
.l-main {
  margin: -84px 0 0 0;
  background-color: var(--orange-100);
  transition: 0.3s ease;

  @media (max-width: 767px) {
    margin: -64px 0 0 0;
  }
}

/* セクション */
.l-section {
  padding: 160px 0 0 0;

  &.l-section--top {
    position: relative;
    margin: 0 0 107px 0;
    padding: 136px 0 0 0;
    z-index: 10;
    overflow-x: clip;

    @media (max-width: 767px) {
      padding: 80px 0 0 0;
      margin: 0 0 39px 0;
    }
  }

  &.l-section--lower-top {
    position: relative;
    margin: 0 0 64px 0;
    z-index: 10;

    @media (max-width: 767px) {
      padding: 88px 0 0 0;
      margin: 0 0 39px 0;
    }

    &::before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: -10;
      content: "";
      display: block;
      width: 100%;
      max-width: 1548px;
      aspect-ratio: 1548/647;
      margin: auto;
      background-image: url(../img/common/bg_lower-top.webp);
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center 0;

      @media (max-width: 767px) {
        aspect-ratio: 1/1;
        background-image: url(../img/common/bg_lower-top_sp.webp);
      }
    }
    &.l-section--lower-top-404 {
      margin: 0;
    }
  }

  &.l-section--panel {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1452px;
    margin: auto;
    padding: 0 30px;

    @media (max-width: 767px) {
      padding: 0;
    }

    .l-section--panel__inner {
      padding: 48px 24px 91px 24px;
      background-color: var(--white);
      border-radius: 10px;

      @media (max-width: 767px) {
        border-radius: 0;
        padding: 40px 20px 44px 20px;
      }
    }

    &:has(.l-content--hero-image) {
      padding: 321px 30px 0;

      @media (max-width: 1279px) {
        padding: 25vw 30px 0;
      }

      @media (max-width: 768px) {
        padding: 95px 0 0;
      }
    }
  }

  &.l-section--panel-medium {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1220px;
    margin: auto;
    padding: 0 30px;

    @media (max-width: 767px) {
      padding: 0;
    }

    .l-section--panel__inner {
      padding: 48px 24px 91px 24px;
      background-color: var(--white);
      border-radius: 10px;

      @media (max-width: 767px) {
        border-radius: 0;
        padding: 40px 20px 44px 20px;
      }
    }
  }

  &.l-section--cta-area {
    padding: 120px 24px 140px 24px;

    @media (max-width: 767px) {
      padding: 40px 0 80px 0;
    }
  }

  &.l-section--bg-white {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: auto;
    padding: 120px 30px 120px;
    background-color: var(--white);

    @media (max-width: 767px) {
      padding: 40px 20px;
    }
  }
  &.l-section--bg-orange {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: auto;
    padding: 120px 30px 120px;

    @media (max-width: 768px) {
      padding: 40px 20px;
    }
  }
}

/* コンテナ */
.l-container {
  width: 100%;
  max-width: 1208px;
  margin: auto;
  padding: 0 32px;

  @media (max-width: 767px) {
    padding: 0 20px;
  }

  &.l-container--hero {
    position: relative;
    max-width: 1224px;
    display: grid;
    gap: 103px;
    padding: 0 32px;

    @media (max-width: 767px) {
      gap: 32px;
      padding: 35px 20px 0;
    }

    &:has(.p-people-hero) {
      gap: 80px;

      @media (max-width: 767px) {
        gap: 32px;
      }
    }
  }

  &.l-container--cta-area {
    position: relative;
    width: 100%;
    max-width: 1296px;
    padding: 0;
    z-index: 500;

    @media (max-width: 767px) {
      padding: 0 20px;
    }
  }
  &.l-container--404 {
    display: grid;
    gap: 50px;
    .p-main-slider__caption-link {
      margin: 0;
    }
    @media (max-width: 768px) {
      gap: 32px;
    }
  }
}

/* コンテンツ */
.l-content {
  margin: auto;

  &.l-content--large {
    width: 100%;
    max-width: 1160px;
  }

  &.l-content--medium {
    width: 100%;
    max-width: 968px;
  }

  &.l-content--hero-image {
    width: 100%;
    max-width: 1160px;
    margin: -368px auto 0;

    @media (max-width: 1279px) {
      margin: -29vw auto 0;
    }

    @media (max-width: 768px) {
      display: grid;
      gap: 24px;
      margin: -135px auto 0;

      img {
        border-radius: 10px;
      }
    }
  }
}

/* ボタン */
.c-button {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 30px;
  padding: 21px 64px 21px 24px;
  transition: 0.2s ease;

  &.c-button--primary {
    background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
    color: var(--white);

    &::before {
      position: absolute;
      right: 22px;
      content: "";
      width: 28px;
      height: 28px;
      border-radius: 14px;
      background: url(../img/common/icon-arrowhead-orange.svg);
      background-color: var(--white);
      background-repeat: no-repeat;
      background-size: 25%;
      background-position: 54% 50%;
      transition: 0.3s ease;
      z-index: 10;
    }

    &::after {
      position: absolute;
      right: 22px;
      content: "";
      width: 28px;
      height: 28px;
      border-radius: 14px;
    }

    @media (any-hover: hover) {
      &:hover {
        background: transparent;
        color: var(--brand-primary);

        &::before {
          background: url(../img/common/icon-arrowhead-white.svg);
          background-repeat: no-repeat;
          background-size: 25%;
          background-position: center;
          background-position: 70% 50%;
        }

        &::after {
          background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
        }
      }
    }
  }

  &.c-button--primary-target {
    background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
    color: var(--white);

    &::before {
      position: absolute;
      right: 22px;
      content: "";
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: url(../img/common/icon-target-link.svg);
      background-color: var(--white);
      background-repeat: no-repeat;
      background-position: 50% 50%;
      z-index: 10;
    }

    &::after {
      position: absolute;
      right: 22px;
      content: "";
      width: 32px;
      height: 32px;
      border-radius: 50%;
      transition: 0.3s ease;
    }

    @media (any-hover: hover) {
      &:hover {
        background: transparent;
        color: var(--brand-primary);

        &::before {
          background: url(../img/common/icon-target-link-white.svg);
          background-repeat: no-repeat;
          background-position: center;
        }

        &::after {
          background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
        }
      }
    }
  }

  &.c-button--arrow {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 0;
    font-size: 18px;
    transition: 0.3s ease;

    @media (max-width: 767px) {
      font-size: 16px;
      line-height: 1.5;
    }

    &::before {
      z-index: 10;
      display: block;
      content: "";
      width: 46px;
      height: 46px;
      background: url(../img/common/icon-arrow-white.svg);
      background-repeat: no-repeat;
      background-position: 50% 50%;
      transition: 0.3s ease;

      @media (max-width: 767px) {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
      }
    }

    &::after {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      content: "";
      width: 46px;
      height: 46px;
      background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
      border-radius: 50%;

      @media (max-width: 767px) {
        width: 36px;
        height: 36px;
        top: 50%;
        transform: translateY(-50%);
      }
    }

    @media (any-hover: hover) {
      &:hover {
        color: var(--brand-primary);

        &::before {
          background-position: 70% 50%;
        }
      }
    }
  }

  &.c-button--filter-label {
    display: flex;
    align-items: center;
    height: auto;
    font-size: 16px;
    font-weight: var(--fw-semibold);
    line-height: 1.2;
    letter-spacing: 0.05em;
    padding: 11px 13px;
    background-color: var(--white);
    border: 1px solid var(--text-primary);
    border-radius: 9999px;
    transition: 0.3s ease;

    @media (max-width: 767px) {
      font-size: 14px;
      padding: 6px 12px;
    }

    &.is-active {
      background-color: var(--brand-primary);
      color: var(--white);
      border-color: var(--brand-primary);
    }

    @media (any-hover: hover) {
      &:hover {
        background-color: var(--brand-primary);
        color: var(--white);
        border-color: var(--brand-primary);
      }
    }
  }
}

/* アイコン */
.c-icon {
  position: relative;
  display: flex;
  align-items: center;

  &::before,
  &::after {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    flex-shrink: 0;
    transition: 0.3s ease;
  }
  &::before {
    content: "";
    margin: 0 8px 0 0;
  }
  &::after {
    content: none;
  }

  &.c-icon--circle-orange {
    &::before {
      z-index: 10;
    }
  }

  &.c-icon--after::before {
    content: none;
  }
  &.c-icon--after::after {
    content: "";
    margin: 0 0 0 8px;
  }

  &.c-icon--large::before,
  &.c-icon--large::after {
    width: 46px;
    height: 46px;
  }
  &.c-icon--small::before,
  &.c-icon--small::after {
    width: 20px;
    height: 20px;
  }
  &.c-icon--margin-r17::before {
    margin: 0 17px 0 0;
  }

  &.c-icon--arrow::before,
  &.c-icon--arrow::after {
    background: url(../img/common/icon-arrow-orange.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-icon--arrow-white::before,
  &.c-icon--arrow-white::after {
    background: url(../img/common/icon-arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-icon--arrow-down::before,
  &.c-icon--arrow-down::after {
    background: url(../img/common/icon-arrow-orange.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
  }
  &.c-icon--target-link::before,
  &.c-icon--target-link::after {
    background: url(../img/common/icon-target-link.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-icon--target-link-white::before,
  &.c-icon--target-link-white::after {
    background: url(../img/common/icon-target-link-white.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-icon--after.c-icon--target-link-circle-orange {
    position: relative;
    &::before {
      position: absolute;
      top: 50%;
      right: 0;
      content: "";
      background: url(../img/common/icon-target-link-white.svg);
      background-repeat: no-repeat;
      background-position: center;
      transform: translateY(-50%);
      padding: 6px;
    }
    &::after {
      width: 20px;
      height: 20px;
      display: inline-block;
      flex-shrink: 0;
      background-color: var(--brand-primary);
      border-radius: 50%;
      padding: 6px;
    }
  }
  &.c-icon--note::before,
  &.c-icon--note::after {
    background: url(../img/common/icon-note.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-icon--blog::before,
  &.c-icon--blog::after {
    background: url(../img/common/icon-blog.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-icon--youtube::before,
  &.c-icon--youtube::after {
    background: url(../img/common/icon-youtube.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-icon--facebook::before,
  &.c-icon--facebook::after {
    background: url(../img/common/icon-facebook.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-icon--x::before,
  &.c-icon--x::after {
    background: url(../img/common/icon-x.svg);
    background-repeat: no-repeat;
    background-position: center;
  }

  &.c-icon--circle-white {
    background-color: var(--white);
  }
  &.c-icon--circle-orange {
    &::after {
      position: absolute;
      left: 0;
      content: "";
      background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
      border-radius: 50%;
    }
  }

  &.c-icon--inline {
    display: inline;

    &::before {
      vertical-align: sub;

      @media (max-width: 767px) {
        vertical-align: text-bottom;
      }
    }
  }
}

/* スキップリンク */
.c-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--orange-700);
  color: var(--white);
  font-size: 14px;
  font-weight: var(--fw-semibold);

  &:focus {
    left: 0;
    color: var(--white);
  }
}

/* パンくず */
.c-breadcrumbs {
  position: relative;
  width: 100%;
  padding: 0 0 0 16px;

  &::before {
    position: absolute;
    left: 0;
    top: 12px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 0;
    background-color: var(--brand-primary);
    border-radius: 50%;
  }

  .c-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    list-style: none;
  }
  .c-breadcrumbs__item {
    position: relative;
    font-size: 14px;
    letter-spacing: 0.08em;

    &:not(:last-child) {
      padding: 0 72px 0 0;

      @media (max-width: 767px) {
        padding: 0 40px 0 0;
      }

      &::before {
        position: absolute;
        right: 16px;
        top: 50%;
        content: "";
        display: block;
        width: 40px;
        height: 1px;
        background-color: var(--gray-500);

        @media (max-width: 767px) {
          right: 8px;
          width: 24px;
        }
      }
    }

    a {
      transition: 0.3s ease;

      @media (any-hover: hover) {
        &:hover {
          color: var(--brand-primary);
        }
      }
    }

    &.c-breadcrumbs__item--current {
      color: var(--brand-primary);
    }
  }
}

/* 見出し */
.c-heading {
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  letter-spacing: 0.08em;

  &.c-heading--large {
    font-size: 40px;

    @media (max-width: 767px) {
      font-size: 32px;
    }
  }
  &.c-heading--medium {
    font-size: 32px;

    @media (max-width: 767px) {
      font-size: 28px;
    }
  }
  &.c-heading--small {
    font-size: 28px;

    @media (max-width: 767px) {
      font-size: 24px;
    }
  }
  &.c-heading--xsmall {
    font-size: 24px;

    @media (max-width: 767px) {
      font-size: 20px;
    }
  }
  &.c-heading--xxsmall {
    font-size: 18px;
  }

  &.c-heading--white {
    color: var(--white);
  }

  &.c-heading--accent {
    display: flex;
    align-items: center;
    gap: 16px;

    @media (max-width: 767px) {
      gap: 12px;
    }

    &::before {
      content: "";
      width: 48px;
      height: 2px;
      background-color: var(--brand-primary);

      @media (max-width: 767px) {
        width: 32px;
        flex-shrink: 0;
      }
    }
  }

  &.c-heading--dot {
    display: flex;
    align-items: center;
    gap: 12px;

    @media (max-width: 767px) {
      gap: 8px;
    }

    &::before {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--brand-primary);
    }
  }

  &.c-heading--eyebrow {
    display: grid;
    gap: 16px;
    font-size: 40px;
    .c-heading__eyebrow {
      font-size: 12px;
      line-height: 1;
      letter-spacing: 0.08em;
      font-weight: bold;
      font-family: var(--font-sans-en);
      color: var(--brand-primary);
    }

    @media (max-width: 767px) {
      font-size: 32px;
    }
  }
}

/* 見出し用 wrap */
.c-heading-wrap--block {
  margin: 136px 0 80px 0;

  @media (max-width: 767px) {
    margin: 80px 0 56px 0;
  }

  &:has(.c-heading--dot) {
    margin: 104px 0 56px 0;

    @media (max-width: 767px) {
      margin: 48px 0 32px 0;
    }
  }
  &:has(.c-heading--xsmall) {
    margin: 48px 0 40px 0;

    @media (max-width: 767px) {
      margin: 40px 0 24px 0;
    }
  }
  &:has(.c-heading--xxsmall) {
    margin: 40px 0 24px 0;
  }
}

.c-heading-wrap--bottom {
  margin: 0 0 56px 0;

  @media (max-width: 767px) {
    margin: 0 0 32px 0;
  }
}

/* リスト */
.c-list-dot {
  padding: 0 0 0 20px;
  list-style: none;

  .c-list-dot__item {
    position: relative;
    font-size: 16px;
    line-height: 1.8;

    &::before {
      position: absolute;
      left: -13px;
      top: 14px;
      content: "";
      width: 5px;
      height: 5px;
      margin: -4px 0 0 0;
      background-color: var(--text-primary);
      border-radius: 50%;
    }
  }

  &.c-list-dot--small {
    .c-list-dot__item {
      font-size: 14px;

      &::before {
        width: 4px;
        height: 4px;
      }
    }
  }
}

.c-list--news {
  width: 100%;
  max-width: 968px;
  margin: auto;
  display: grid;
  gap: 8px;
  list-style: none;

  .c-list--news__item {
    list-style: none;

    @media (max-width: 767px) {
      padding: 8px 12px;
    }

    a {
      display: flex;
      align-items: center;
      gap: 40px;
      border-radius: 10px;
      transition: 0.3s ease;

      @media (max-width: 767px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      @media (any-hover: hover) {
        &:hover {
          background-color: var(--orange-100);

          .c-list--news__title {
            color: var(--brand-primary);
          }
        }
      }
    }
  }

  .c-list--news__date {
    width: 100px;
    padding: 34px 0 34px 16px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    color: var(--text-secondary);

    @media (max-width: 767px) {
      padding: 0;
    }
  }

  .c-list--news__title {
    position: relative;
    width: 100%;
    padding: 34px 84px 34px 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.08em;

    @media (max-width: 767px) {
      padding: 0 40px 0 0;
    }

    &::after {
      position: absolute;
      top: 50%;
      right: 16px;
      content: "";
      width: 20px;
      height: 20px;
      display: inline-block;
      flex-shrink: 0;
      background: url(../img/common/icon-target-link-white.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-color: var(--brand-primary);
      border-radius: 50%;
      padding: 6px;
      transform: translateY(-50%);
      transition: 0.3s ease;

      @media (max-width: 767px) {
        right: 0;
      }
    }
  }
}

.c-list-entry {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;

  @media (max-width: 1279px) {
    gap: 3.12vw;
  }
  @media (max-width: 767px) {
    flex-direction: column;
    gap: 12px;
  }

  .c-list-entry__item {
    width: calc(50% - 20px);
    background-color: var(--white);
    border-radius: 10px;

    @media (max-width: 767px) {
      width: 100%;
    }

    h4 {
      height: 100%;
      font-weight: var(--fw-medium);
    }

    a {
      position: relative;
      display: grid;
      align-content: baseline;
      gap: 24px;
      height: 100%;
      padding: 32px 68px 32px 24px;
      border: 1px solid transparent;
      border-radius: 10px;
      transition: 0.25s ease;

      @media (max-width: 767px) {
        padding: 16px 75px 16px 16px;
      }

      &::after {
        position: absolute;
        top: 50%;
        right: 12px;
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        flex-shrink: 0;
        background: url(../img/common/icon-target-link-white.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-color: var(--brand-primary);
        border-radius: 50%;
        padding: 6px;
        transform: translateY(-50%);
        transition: 0.3s ease;

        @media (max-width: 767px) {
          right: 16px;
        }
      }

      @media (any-hover: hover) {
        &:hover {
          color: var(--brand-primary);
          border-color: var(--brand-primary);
        }
      }
    }

    .c-list-entry__year {
      font-size: 14px;
      line-height: 1.2;
      letter-spacing: 0.05em;
      color: var(--brand-primary);
    }
    .c-list-entry__title {
      font-size: 20px;
      line-height: 1.3;
      letter-spacing: 0.1em;
      font-weight: var(--fw-semibold);
      transition: 0.3s ease;

      @media (max-width: 1279px) {
        font-size: clamp(18px, 1.56vw, 20px);
      }
      @media (max-width: 767px) {
        font-size: 18px;
      }

      span {
        min-width: 100px;
        display: inline-block;

        @media (max-width: 767px) {
          min-width: auto;
        }
      }
    }
  }
}

.c-list-job {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;

  @media (max-width: 767px) {
    gap: 12px;
  }

  .c-list-job__item {
    width: calc(33.3333333333% - 26.7px);
    border: 1px solid var(--gray-200);
    border-radius: 10px;

    @media (max-width: 1023px) {
      width: calc(50% - 20px);
    }
    @media (max-width: 767px) {
      width: 100%;
    }

    a {
      position: relative;
      display: grid;
      align-content: baseline;
      gap: 16px;
      height: 100%;
      padding: 24px 72px 24px 24px;
      transition: 0.3s ease;
      border-radius: 10px;

      @media (max-width: 767px) {
        gap: 12px;
        padding: 16px 60px 16px 16px;
      }

      &::after {
        position: absolute;
        top: 50%;
        right: 24px;
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        flex-shrink: 0;
        background: url(../img/common/icon-target-link-white.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-color: var(--brand-primary);
        border-radius: 50%;
        padding: 6px;
        transform: translateY(-50%);
        transition: 0.3s ease;

        @media (max-width: 767px) {
          right: 16px;
        }
      }

      &:hover {
        background-color: var(--orange-100);
      }
    }

    .c-list-job__tag-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .c-list-job__tag-label {
      flex-shrink: 0;
      font-size: 14px;
      line-height: 1.2;
      letter-spacing: 0.05em;
      padding: 4px 10px;
      border: 1px solid var(--brand-primary);
      border-radius: 30px;
      color: var(--white);
      background-color: var(--brand-primary);
    }

    .c-list-job__tag-label--location {
      flex-shrink: 0;
      font-size: 14px;
      line-height: 1.2;
      letter-spacing: 0.05em;
      padding: 4px 10px;
      border: 1px solid var(--gray-200);
      border-radius: 30px;
      background-color: var(--white);
    }

    .c-list-job__text {
      font-weight: var(--fw-semibold);
      line-height: 1.3;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
}

/* リスト用 wrap */
.c-list-entry-wrap {
  display: grid;
  grid-template-columns: 168px 1fr;
  align-items: center;
  padding: 32px 44px;
  background-color: var(--orange-200);
  border-radius: 10px;
  transition: 0.3s ease;

  @media (max-width: 1279px) {
    grid-template-columns: 13vw 1fr;
    padding: 3vw 4vw;
  }

  @media (max-width: 767px) {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: 24px 20px;
  }

  & + .c-list-entry-wrap {
    margin: 32px 0 0 0;

    @media (max-width: 767px) {
      margin: 24px 0 0 0;
    }
  }

  .c-list-entry-graduation {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    font-weight: var(--fw-semibold);

    @media (max-width: 1279px) {
      font-size: clamp(18px, 1.56vw, 20px);
    }
  }
}

.c-list-job-wrap {
  display: grid;
  gap: 40px;

  .c-list-job__heading {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: var(--fw-semibold);

    .c-list-job__count {
      font-size: 48px;
      color: var(--brand-primary);
      margin: 0 8px 0 7px;
    }
  }
}

/* ページネーション */
.c-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 53px 0 0 0;

  .c-pagination__list {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
  }

  .c-pagination__item {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    &.is-current {
      color: var(--brand-primary);
    }
    a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      font-size: 16px;
      line-height: 1;
      color: var(--gray-700);
      text-decoration: none;

      @media (any-hover: hover) {
        &:hover {
          color: var(--brand-primary);
        }

      }
    }

    &.is-current a {
      color: var(--gray-500);
      pointer-events: none;
      cursor: none;
    }
  }

  .c-pagination__item--prev,
  .c-pagination__item--next {
    position: relative;

    a {
      &::before {
        content: "";
        display: inline-block;
        width: 24px;
        height: 24px;
        transition: background-color 0.3s ease;
        z-index: 10;
      }

      &::after {
        position: absolute;
        content: "";
        display: inline-block;
        width: 44px;
        height: 44px;
        border: 1px solid var(--brand-primary);
        border-radius: 50%;
        transition: 0.3s ease;
      }
    }
  }

  .c-pagination__item--prev {
    width: 46px;
    height: 46px;
    margin: 0 16px 0 0;

    a {
      &::before {
        background: url(../img/common/icon-arrow-orange.svg);
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(180deg);
        padding: 10px;
        transition: 0.3s ease;
      }
    }

    @media (any-hover: hover) {
      &:hover a::before {
        background: url(../img/common/icon-arrow-white.svg);
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(180deg) translateX(3px);
      }
      &:hover a::after {
        background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
      }
    }
  }

  .c-pagination__item--next {
    width: 46px;
    height: 46px;
    margin: 0 0 0 16px;

    a {
      &::before {
        background: url(../img/common/icon-arrow-white.svg);
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(0deg);
        padding: 10px;
        transition: 0.3s ease;
      }
      &::after {
        background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
      }
    }

    @media (any-hover: hover) {
      &:hover a::before {
        background: url(../img/common/icon-arrow-orange.svg);
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(0deg) translateX(3px);
      }
      &:hover a::after {
        background: var(--white);
      }
    }
  }
}

/* グリッド */
.c-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;

  &.c-grid--align-center {
    align-items: center;
  }
  &.c-grid--justify-items-start {
    justify-items: start;
  }
  &.c-grid--justify-items-end {
    justify-items: end;
  }

  &.c-grid--col-2 {
    grid-template-columns: repeat(2, 1fr);

    @media (max-width: 767px) {
      grid-template-columns: 1fr;
    }
  }
  &.c-grid--col-3 {
    grid-template-columns: repeat(3, 1fr);

    @media (max-width: 1023px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 767px) {
      grid-template-columns: 1fr;
    }
  }

  &.c-grid--gap-0 {
    gap: 0;
  }
  @media (max-width: 767px) {
    &.c-grid--gap-0-sp {
      gap: 0;
    }
    &.c-grid--gap-8-sp {
      gap: 8px;
    }
    &.c-grid--gap-24-sp {
      gap: 24px;
    }
    &.c-grid--gap-32-sp {
      gap: 32px;
    }
  }
}

/* テキスト */
.c-text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;

  &.c-text--xlarge {
    font-size: 20px;

    @media (max-width: 767px) {
      font-size: 18px;
    }
  }

  &.c-text--large {
    font-size: 18px;
    line-height: 2;

    @media (max-width: 767px) {
      font-size: 16px;
      line-height: 1.8;
    }
  }

  &.c-text--bold {
    font-weight: var(--fw-semibold);
  }

  &.c-text--small {
    font-size: 14px;

    @media (max-width: 767px) {
      font-size: 12px;
    }
  }
}

.c-text-wrap {
  display: block;

  .c-text:has(+ .c-text) {
    margin: 0 0 28px 0;
  }
}

.c-note {
  font-size: 12px;
  line-height: 1.5;

  &::before {
    content: "※";
  }
}
.c-note--large {
  font-size: 14px;
  line-height: 1.3;

  &::before {
    content: "※";
  }
}

/* リンク */
.c-link {
  color: var(--external-link);
  text-decoration: underline;
  transition: 0.3s ease;

  @media (any-hover: hover) {
    &:hover {
      color: var(--brand-primary);
      text-decoration: none;
    }
  }
}

.c-link-anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 24px;

  @media (max-width: 767px) {
    gap: 16px;
  }

  .c-link-anchor__item {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.05em;

    @media (max-width: 767px) {
      width: calc(50% - 8px);
      font-size: 14px;
    }
  }

  a {
    transition: 0.3s ease;
    @media (any-hover: hover) {
      &:hover {
        color: var(--brand-primary);

        .c-icon--arrow-down {
          &::before {
            transform: translateY(3px) rotate(90deg);
          }
        }
      }
    }
  }
}

.c-link-external-link {
  display: flex;
  align-items: center;
  gap: 3px;
  width: fit-content;
  color: var(--external-link);
  transition: 0.3s ease;
  text-decoration: underline;

  &::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;
    background: url(../img/common/icon-target-link.svg);
    background-repeat: no-repeat;
    background-position: center;
  }

  @media (any-hover: hover) {
    &:hover {
      text-decoration: none;
    }
  }

  &.c-link-external-link--inline {
    display: inline;

    &::after {
      vertical-align: sub;
    }
  }
}

.c-link-external-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
  margin: 32px 0 0 0;
  padding: 0 0 0 36px;
  font-weight: var(--fw-semibold);

  @media (max-width: 767px) {
    margin: 24px 0 0 0;
  }

  &::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    flex-shrink: 0;
    display: block;
    content: "";
    width: 28px;
    height: 28px;
    background: url(../img/common/icon-arrowhead-white.svg);
    background-repeat: no-repeat;
    background-position: 55% 50%;
    transition: 0.3s ease;
  }
  &::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 28px;
    height: 28px;
    background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
    border-radius: 50%;
  }

  .c-icon--target-link {
    display: inline;
    &::after {
      margin: 0;
      transform: translateY(0.24em);
    }
  }

  @media (any-hover: hover) {
    &:hover {
      color: var(--brand-primary);
      &::before {
        background-position: 70% 50%;
      }
    }
  }
}

.c-link-icon {
  width: 100%;
  border-bottom: 1px solid var(--border-primary);

  a {
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: var(--fw-semibold);

    &::before {
      content: "";
      width: 80px;
      height: 80px;
      display: inline-block;
      flex-shrink: 0;
      background: url(../img/common/icon-job-dummy.svg);
      background-repeat: no-repeat;
      background-position: center;
    }

    .c-icon--arrow {
      justify-content: space-between;
      width: 100%;
    }

    @media (any-hover: hover) {
      &:hover {
        color: var(--brand-primary);

        .c-icon--arrow {
          &::after {
            transform: translateX(3px);
          }
        }
      }
    }
  }

  &.c-link-icon--sales a::before {
    background: url(../img/common/icon-sales.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-link-icon--marketing a::before {
    background: url(../img/common/icon-marketing.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-link-icon--planning a::before {
    background: url(../img/common/icon-planning.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-link-icon--designer a::before {
    background: url(../img/common/icon-designer.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-link-icon--corporate a::before {
    background: url(../img/common/icon-corporate.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  &.c-link-icon--engineer a::before {
    background: url(../img/common/icon-engineer.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
}

.c-link-arrow {
  width: 100%;
  border-bottom: 1px solid var(--border-primary);

  a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 32px 0 24px 0;
    transition: color 0.3s ease;
    font-weight: var(--fw-semibold);

    @media (max-width: 767px) {
      font-size: 14px;
      padding: 24px 0 16px 0;

      .c-icon--arrow {
        &::after {
          width: 20px;
          height: 20px;
        }
      }
    }

    .c-icon--arrow {
      justify-content: space-between;
      width: 100%;
    }

    @media (any-hover: hover) {
      &:hover {
        color: var(--brand-primary);

        .c-icon--arrow {
          &::after {
            transform: translateX(3px);
          }
        }
      }
    }
  }
}

/* パネルリンク */
.c-panel-link-target {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  row-gap: 16px;
  list-style: none;

  .c-panel-link-target__item {
    width: calc(50% - 20px);
    min-width: 464px;

    @media (max-width: 767px) {
      width: 100%;
      min-width: auto;
    }

    a {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 40px 32px;
      font-size: 20px;
      line-height: 1.3;
      font-weight: var(--fw-semibold);
      border: 1px solid transparent;
      border-radius: 10px;
      background-color: var(--orange-100);
      transition: 0.3s ease;

      @media (any-hover: hover) {
        &:hover {
          color: var(--brand-primary);
          border-color: var(--brand-primary);

          .c-icon--blog {
            &::before {
              background: url(../img/common/icon-blog-orange.svg);
              background-repeat: no-repeat;
              background-position: center;
            }
          }
        }
      }

      &::before {
        position: absolute;
        top: 50%;
        right: 32px;
        content: "";
        width: 32px;
        height: 32px;
        display: inline-block;
        flex-shrink: 0;
        background: url(../img/common/icon-target-link-white.svg);
        background-repeat: no-repeat;
        background-position: center;
        transition: 0.25s ease;
        transform: translateY(-50%);
        z-index: 10;
      }
      &::after {
        display: block;
        content: "";
        width: 32px;
        height: 32px;
        background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
        border-radius: 50%;
      }
    }
  }
}

.c-panel-link-arrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  row-gap: 16px;
  list-style: none;

  .c-panel-link-arrow__item {
    width: calc(50% - 20px);
    min-width: 464px;

    @media (max-width: 767px) {
      width: 100%;
      min-width: auto;
    }

    a {
      position: relative;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 32px;
      font-size: 20px;
      line-height: 1.3;
      font-weight: var(--fw-semibold);
      border: 1px solid transparent;
      border-radius: 10px;
      background-color: var(--orange-100);
      transition: 0.3s ease;

      @media (max-width: 767px) {
        gap: 8px;
        padding: 24px;
        font-size: 16px;
      }

      @media (any-hover: hover) {
        &:hover {
          border-color: var(--brand-primary);
        }
      }

      &::before {
        content: "";
        width: 46px;
        height: 46px;
        display: inline-block;
        flex-shrink: 0;
        background: url(../img/common/icon-arrow-white.svg);
        background-repeat: no-repeat;
        background-position: center;
        transition: 0.25s ease;
        z-index: 10;

        @media (max-width: 767px) {
          width: 36px;
          height: 36px;
        }
      }
      &::after {
        position: absolute;
        top: 50%;
        left: 32px;
        display: block;
        content: "";
        width: 46px;
        height: 46px;
        background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
        border-radius: 50%;
        transform: translateY(-50%);

        @media (max-width: 767px) {
          left: 24px;
          width: 36px;
          height: 36px;
        }
      }

      @media (any-hover: hover) {
        &:hover {
          color: var(--brand-primary);
          &::before {
            background-position: 80% 50%;
          }
        }
      }
    }
  }
}

.c-panel-link-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  row-gap: 16px;

  @media (max-width: 1279px) {
    gap: 3.1vw;
  }
  @media (max-width: 767px) {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .c-panel-link-icon__item {
    display: grid;
    grid-template-rows: subgrid;

    @media (max-width: 767px) {
      width: 100%;
      min-width: auto;
    }

    a {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 24px;
      padding: 32px;
      border: 1px solid transparent;
      border-radius: 10px;
      background-color: var(--orange-100);
      transition: 0.3s ease;

      @media (max-width: 1279px) {
        padding: 2.5vw;
      }
      @media (max-width: 767px) {
        gap: 10px;
        padding: 14px;
      }

      @media (any-hover: hover) {
        &:hover {
          border-color: var(--brand-primary);

          .c-panel-link-icon__title {
            color: var(--brand-primary);

            &::before {
              background-position: 80% 50%;
            }
          }
        }
      }

      &:not(:has(.c-text)) {
        align-items: center;
      }
    }
  }
  .c-panel-link-icon__item--center a {
    align-items: center;
  }
  .c-panel-link-icon__icon {
    display: flex;
    text-align: center;

    @media (max-width: 1279px) {
      width: 9vw;
    }
    @media (max-width: 767px) {
      width: 80px;
    }
  }
  .c-panel-link-icon__content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 110px - 24px);

    @media (max-width: 1279px) {
      width: calc(100% - 9vw - 24px);
    }
    @media (max-width: 767px) {
      gap: 8px;
    }
  }
  .c-panel-link-icon__title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: var(--fw-semibold);
    transition: 0.25s ease;

    @media (max-width: 1279px) {
      gap: 1.26vw;
      font-size: 1.45vw;
    }
    @media (max-width: 767px) {
      gap: 8px;
      font-size: 16px;
    }

    &::before {
      content: "";
      width: 46px;
      height: 46px;
      display: inline-block;
      flex-shrink: 0;
      background: url(../img/common/icon-arrow-white.svg);
      background-repeat: no-repeat;
      background-position: center;
      transition: 0.25s ease;
      z-index: 10;

      @media (max-width: 1279px) {
        width: 3.6vw;
        height: 3.6vw;
      }
      @media (max-width: 767px) {
        width: 36px;
        height: 36px;
      }
    }
    &::after {
      position: absolute;
      top: 50%;
      left: 0;
      display: block;
      content: "";
      width: 46px;
      height: 46px;
      background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
      border-radius: 50%;
      transform: translateY(-50%);

      @media (max-width: 1279px) {
        width: 3.6vw;
        height: 3.6vw;
      }
      @media (max-width: 767px) {
        width: 36px;
        height: 36px;
      }
    }
  }
  .c-text {
    @media (max-width: 1279px) {
      font-size: 1.26vw;
    }
    @media (max-width: 767px) {
      font-size: 14px;
    }
  }
}

.c-panel-frame {
  padding: 40px;
  background-color: var(--orange-100);
  border-radius: 10px;

  &:has(.p-education-program),
  &:has(.p-evaluation-system) {
    border-radius: 0;
  }

  @media (max-width: 767px) {
    padding: 24px;
  }

  &:has(.p-evaluation-system) {
    padding: 40px 64px;

    @media (max-width: 767px) {
      padding: 24px;
    }
  }

  .c-panel-frame__img-r {
    display: flex;
    gap: 40px;

    @media (max-width: 767px) {
      flex-direction: column;
      gap: 24px;
    }
  }

  .c-panel-frame__title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: var(--fw-semibold);
  }
  .c-panel-frame__image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1/1;

    @media (max-width: 767px) {
      max-width: unset;
    }
    img {
      @media (max-width: 767px) {
        width: 100%;
      }
    }
  }
  .c-panel-frame__content {
    display: grid;
    gap: 24px;
    width: calc(100% - 300px - 40px);

    @media (max-width: 767px) {
      gap: 16px;
      width: 100%;
    }
  }

  .c-panel-frame__text-box {
    display: grid;
    gap: 16px;

    .c-panel-frame__title {
      font-size: 24px;
      line-height: 1.3;
      font-weight: var(--fw-semibold);
    }
  }
}

.c-panel-frame--white {
  background-color: var(--white);
  border-radius: 10px;

  &:has(.p-content-column) {
    padding: 80px 60px;
    box-shadow: 0 0 20px 2px var(--shadow);

    @media (max-width: 768px) {
      padding: 24px;
    }
  }
}

/* チェックボックス */
.c-checkbox {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  /* transition: 0.3s ease; */
  cursor: pointer;

  &::before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: var(--white);
    border: 1px solid var(--brand-primary);
    flex-shrink: 0;
  }

  &:has(input:checked)::before {
    border: 1px solid var(--brand-primary);
  }

  &:has(input:checked)::after {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 6px;
    height: 9px;
    transform: translateY(-65%) rotate(45deg);
    border-right: 2px solid var(--brand-primary);
    border-bottom: 2px solid var(--brand-primary);
    content: "";
  }

  &:has(input:focus-visible) {
    outline: 2px solid var(--gray-700);
    outline-offset: 2px;
    border-radius: 2px;
  }

  .c-checkbox__input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  .c-checkbox__text {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    line-height: 1;
  }
}

/* ラベル */
.c-label {
  display: inline-block;
  flex-shrink: 0;
  padding: 4px 8px;
  border: 1px solid var(--gray-200);
  border-radius: 25px;
  background-color: var(--white);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: var(--fw-semibold);
}

.c-label-square {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: var(--fw-semibold);
  border-radius: 10px;
  margin: 0 0 24px 0;

  &.c-label-square--orange {
    color: var(--white);
    background-color: var(--brand-primary);
  }
  &.c-label-square--red {
    color: var(--white);
    background-color: var(--red-2);
  }
  &.c-label-square--yellow {
    color: var(--text-primary);
    background-color: var(--yellow-100);
  }
}

/* Youtube */
.c-youtube-embed {
  width: 100%;
  max-width: 628px;
  margin: auto;

  .c-youtube-embed-inner {
    position: relative;
    aspect-ratio: 628/357;

    iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      border: 0;
    }
  }
}

/* speakerdeck */
.c-speakerdeck-embed-wrap {
  width: 100%;
  max-width: 628px;
  aspect-ratio: 628/362;
  margin: auto;

  .speakerdeck-embed,
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
}

/* テーブル */
.c-table {
  width: 100%;
  table-layout: auto;
  border-spacing: 0;

  tr {
    font-size: 16px;
    &:first-child {
      th,
      td {
        padding: 0 0 32px 0;

        @media (max-width: 767px) {
          padding: 0 0 16px 0;
        }
      }
    }

    @media (max-width: 767px) {
      width: 100%;
      display: block;
      font-size: 16px;
    }
  }
  th {
    width: 288px;
    padding: 32px 0;
    vertical-align: text-top;
    text-align: inherit;
    border-bottom: 1px solid var(--border-primary);

    @media (max-width: 767px) {
      width: 100%;
      display: block;
      padding: 24px 0 16px 0;
      border-bottom: none;
    }
  }
  td {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-primary);

    @media (max-width: 767px) {
      width: 100%;
      display: block;
      padding: 0 0 24px 0;
    }
  }
}

/* ロゴ */
.c-logo {
  display: block;
  &.c-logo--140 {
  }
}

/* ボックス */
.p-box-cta-area {
  padding: 56px 128px 47px;
  background: url(../img/common/bg_cta-area.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 40px;

  @media (max-width: 1279px) {
    padding: 56px 8vw 47px;
  }
  @media (max-width: 767px) {
    background: url(../img/common/bg_cta-area_sp.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 32px 20px 38px;
  }

  .c-heading {
    text-align: center;
    line-height: 1;
    margin: 0 0 48px 0;

    @media (max-width: 767px) {
      font-size: 24px;
      line-height: 1.5;
      margin: 0 0 24px 0;
    }
  }

  .c-grid {
    @media (max-width: 1279px) {
      gap: 3.2vw;
    }
    @media (max-width: 767px) {
      gap: 24px;
    }
  }

  .p-card {
    @media (max-width: 1279px) {
      padding: 2.5vw 3.2vw;
    }
    @media (max-width: 767px) {
      padding: 20px;
    }
  }
}

.p-box-filter {
  padding: 32px 50px;
  background-color: var(--orange-200);
  border-radius: 10px;
  margin: 0 0 48px 0;

  @media (max-width: 767px) {
    padding: 24px;
    border-radius: 10px;
  }

  &:has(.p-box-filter__label-group) {
    margin: 0 0 64px 0;
  }

  .p-box-filter__fieldset:not(:last-child) {
    margin: 0 0 40px 0;
  }

  .p-box-filter__item {
    display: flex;
    row-gap: 10px;

    @media (max-width: 767px) {
      flex-direction: column;
      row-gap: 24px;
    }

    &:not(:last-child) {
      margin: 0 0 32px 0;
    }

    p {
      flex-shrink: 0;
      width: 110px;
      font-size: 20px;
      line-height: 1;
      letter-spacing: 0.08em;
    }

    &:has(.p-box-filter__label-group) {
      p {
        padding: 12px 0 0 0;

        @media (max-width: 767px) {
          padding: 0;
        }
      }
    }

    .p-box-filter__group-wrap {
      display: grid;
      gap: 24px;
    }

    .p-box-filter__group {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      row-gap: 8px;

      @media (max-width: 767px) {
        gap: 16px;
        row-gap: 12px;

        .c-checkbox__text {
          font-size: 14px;
        }
      }
    }

    .p-box-filter__group--sub {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      row-gap: 8px;
      padding: 16px 24px;
      background-color: var(--white);
      border-radius: 10px;

      @media (max-width: 767px) {
        gap: 16px;
        row-gap: 12px;

        .c-checkbox__text {
          font-size: 14px;
        }
      }
    }

    .p-box-filter__label-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      row-gap: 8px;

      @media (max-width: 767px) {
        gap: 8px;
        row-gap: 8px;

        .c-checkbox {
          width: calc(50% - 16px);
        }
        .c-checkbox__text {
          font-size: 14px;
        }
      }
    }
  }
}

.p-box-philosophy {
  display: grid;
  gap: 12px;
  .p-box-philosophy__item {
    display: grid;
    gap: 12px;
    padding: 32px 40px;
    background-color: var(--orange-100);
    border-radius: 10px;

    @media (max-width: 767px) {
      padding: 24px;
    }
  }

  .p-box-philosophy__heading {
    font-size: 20px;
    font-weight: var(--fw-medium);

    @media (max-width: 767px) {
      font-size: 18px;
    }
  }

  .p-box-philosophy__lead {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: var(--fw-semibold);
    color: var(--brand-primary);

    @media (max-width: 767px) {
      font-size: 22px;
    }
  }
}

/* カード */
.p-card-cta {
  width: 100%;
  height: 100%;
  padding: 31px 40px;
  background-color: var(--white);
  border-radius: 10px;

  @media (max-width: 767px) {
    padding: 20px;
  }

  .p-card-cta__title {
    font-size: 24px;
    line-height: 1.5;
    margin: 0 0 32px 0;

    @media (max-width: 767px) {
      font-size: 20px;
      line-height: 1.6;
      margin: 0 0 20px 0;
    }

    & + .c-button--arrow {
      width: fit-content;
    }
  }

  .p-card-cta__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 24px 0 0 0;

    @media (max-width: 767px) {
      flex-direction: column;
      gap: 16px;
      margin: 20px 0 0 0;
    }
  }

  .p-card-cta__link-item {
    width: calc(50% - 20px);
    min-width: 150px;
    font-weight: var(--fw-semibold);

    @media (max-width: 767px) {
      width: 100%;
      font-size: 14px;
    }

    @media (any-hover: hover) {
      a:hover {
        color: var(--brand-primary);
      }
    }
  }

  .p-card-cta__link-item a .c-icon {
    justify-content: space-between;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--border-primary);

    @media (max-width: 767px) {
      padding: 0 6px 8px 6px;
      line-height: 1;
    }
  }
}

.p-card-link {
  display: block;

  .p-card-link__inner {
    display: grid;
    align-content: baseline;
    margin: 0 0 16px 0;
  }

  .p-card-link__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
    padding: 32px 0 24px 0;
    border-bottom: 1px solid var(--border-primary);
    font-size: 16px;
    font-weight: var(--fw-semibold);
    line-height: 1.3;

    @media (max-width: 767px) {
      font-size: 14px;
      padding: 24px 0 16px 0;
    }

    .c-icon--target-link {
      justify-content: space-between;
      width: 100%;

      &::before {
        margin: 0;
        padding: 4px;
      }
    }
  }

  .p-card-link__text {
    font-size: 14px;
    line-height: 1.8;

    @media (max-width: 767px) {
      font-size: 12px;
    }
  }

  @media (any-hover: hover) {
    a {
      &:hover {
        .p-card-link__head {
          color: var(--brand-primary);
        }
      }
    }
  }
}

.p-card-number {
  display: grid;
  gap: 16px;
  counter-reset: number;

  .p-card-number__item {
    display: flex;
    gap: 32px;
    padding: 24px 44px;
    border-radius: 10px;
    background-color: var(--orange-100);

    @media (max-width: 767px) {
      gap: 16px;
      padding: 12px;
    }

    &::before {
      counter-increment: number 1;
      content: counter(number, decimal-leading-zero) " ";
      min-width: 55px;
      font-size: 40px;
      line-height: 1.2;
      letter-spacing: 0.08em;
      color: var(--brand-primary);

      @media (max-width: 767px) {
        min-width: 46px;
        font-size: 34px;
      }
    }
  }

  .p-card-number__content {
    display: grid;
    gap: 16px;

    .p-card-number__title {
      font-size: 24px;
      font-weight: var(--fw-semibold);
      line-height: 1.8;
      letter-spacing: 0.1em;
      color: var(--brand-primary);

      @media (max-width: 767px) {
        font-size: 20px;
      }
    }
  }
}

.p-card-interview a {
  display: grid;
  align-content: baseline;
  gap: 16px;
  height: 100%;

  .p-card-interview__image {
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: 10px;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.3s ease;
    }
  }

  .p-card-interview__content {
    display: grid;
    gap: 16px;

    .p-card-interview__meta {
      display: flex;
      align-items: baseline;
      gap: 6px;
      font-size: 13px;
      line-height: 1.2;
      letter-spacing: 0.05em;
      font-weight: var(--fw-semibold);
    }

    .p-card-interview__tag {
      flex-shrink: 0;
      padding: 2px 8px;
      border: 1px solid var(--gray-200);
      border-radius: 25px;
      background-color: var(--white);
    }

    .p-card-interview__button {
      position: relative;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      padding: 0;
      font-size: 18px;
      font-weight: var(--fw-semibold);
      line-height: 1.5;
      transition: 0.3s ease;

      &::before {
        z-index: 10;
        flex-shrink: 0;
        display: block;
        content: "";
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background-image: url(../img/common/icon-arrowhead-white.svg), linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
        background-repeat: no-repeat, no-repeat;
        background-position:
          55% 50%,
          center center;
        transition: 0.3s ease;

        @media (max-width: 767px) {
          flex-shrink: 0;
        }
      }
    }

    .p-card-interview__text {
      font-weight: var(--fw-semibold);
      transition: 0.3s ease;
    }
  }

  @media (any-hover: hover) {
    &:hover {
      .p-card-interview__image {
        img {
          transform: scale(1.1);
        }
      }
      .p-card-interview__button {
        color: var(--brand-primary);
      }
      .p-card-interview__button::before {
        background-position: 70% 50%;
      }
      .p-card-interview__text {
        color: var(--brand-primary);
      }
    }
  }
}

.p-card-media {
  a,
  .p-card-media__inner {
    display: grid;
    align-content: baseline;
    gap: 16px;
    height: 100%;

    .p-card-media__image {
      width: 100%;
      aspect-ratio: 2/1;
      border-radius: 10px;
      overflow: hidden;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.3s ease;
      }
    }

    .p-card-media__content {
      display: grid;
      gap: 16px;

      .p-card-media__button {
        position: relative;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        padding: 0;
        font-size: 18px;
        font-weight: var(--fw-semibold);
        line-height: 1;
        transition: 0.3s ease;

        @media (max-width: 767px) {
          font-size: 16px;
          line-height: 1.5;
        }

        &::before {
          z-index: 10;
          flex-shrink: 0;
          display: block;
          content: "";
          width: 28px;
          height: 28px;
          background: url(../img/common/icon-arrowhead-white.svg);
          background-repeat: no-repeat;
          background-position: 55% 50%;
          transition: 0.3s ease;

          @media (max-width: 767px) {
            flex-shrink: 0;
          }
        }

        &::after {
          position: absolute;
          top: 0;
          left: 0;
          display: block;
          content: "";
          width: 28px;
          height: 28px;
          background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
          border-radius: 50%;

          @media (max-width: 767px) {
            top: 50%;
            transform: translateY(-50%);
          }
        }
      }

      .p-card-media__button--arrow {
        position: relative;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        padding: 0;
        font-size: 18px;
        font-weight: var(--fw-semibold);
        line-height: 1;
        transition: 0.3s ease;

        @media (max-width: 767px) {
          gap: 8px;
          font-size: 16px;
          line-height: 1.5;
        }

        &::before {
          z-index: 10;
          flex-shrink: 0;
          display: block;
          content: "";
          width: 46px;
          height: 46px;
          background: url(../img/common/icon-arrow-white.svg);
          background-repeat: no-repeat;
          background-position: 55% 50%;
          transition: 0.3s ease;

          @media (max-width: 767px) {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            background-size: 60%;
          }
        }

        &::after {
          position: absolute;
          top: 0;
          left: 0;
          display: block;
          content: "";
          width: 46px;
          height: 46px;
          background: linear-gradient(90deg, rgba(240, 131, 0, 1) 0%, rgba(243, 155, 51, 1) 100%);
          border-radius: 50%;

          @media (max-width: 767px) {
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
          }
        }
      }

      .p-card-media__title {
        font-size: 20px;
        font-weight: var(--fw-semibold);
        line-height: 1.5;

        @media (max-width: 767px) {
          font-size: 18px;
        }

        & + .p-card-media__text {
          font-size: 16px;
          line-height: 1.8;
          font-weight: var(--fw-medium);
        }

        &:has(.c-icon) {
          font-size: 18px;
        }
        .c-icon {
          &::before {
            margin: 0 16px 0 0;
          }
        }

        &:has(+ .p-card-media__button--arrow) {
          font-size: 24px;

          & + .p-card-media__button--arrow {
            font-size: 18px;
          }
        }
      }

      .p-card-media__text {
        font-size: 14px;
        transition: 0.3s ease;
      }

      .p-card-media__position {
        font-size: 14px;
      }
    }

    @media (any-hover: hover) {
      &:not(div):hover {
        .p-card-media__image {
          img {
            transform: scale(1.1);
          }
        }
        .p-card-media__button,
        .p-card-media__button--arrow {
          color: var(--brand-primary);
        }
        .p-card-media__button::before,
        .p-card-media__button--arrow::before {
          background-position: 70% 50%;
        }
      }
    }
  }
}

.p-card-external {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background-color: var(--orange-100);
  padding: 40px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.3s;

  @media (max-width: 767px) {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  @media (any-hover: hover) {
    &:hover {
      border-color: var(--brand-primary);

      .p-card-external__image img {
        transform: scale(1.1);
      }
      .p-card-external__title {
        color: var(--brand-primary);
      }
    }
  }

  .p-card-external__image {
    width: 100%;
    max-width: 340px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2/1;

    @media (max-width: 767px) {
      max-width: 100%;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
  }

  .p-card-external__content {
    display: flex;
    gap: 8px;

    &::after {
      flex-shrink: 0;
      content: "";
      width: 46px;
      height: 46px;
      background: url(../img/common/icon-target-link-white.svg) no-repeat center;
      background-color: var(--brand-primary);
      border-radius: 50%;
      transition: 0.3s ease;

      @media (max-width: 767px) {
        top: 24px;
        right: 24px;
      }
    }
  }

  .p-card-external__text-wrap {
    display: grid;
    gap: 8px;
  }

  .p-card-external__meta {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .p-card-external__title {
    font-size: 24px;
    font-weight: var(--fw-semibold);
    line-height: 1.5;
    transition: 0.25s ease;

    @media (max-width: 767px) {
      font-size: 18px;
    }
  }

  .p-card-external__text {
    font-size: 16px;
    line-height: 1.8;
  }
}

.p-card-feature {
  display: grid;
  justify-items: center;
  align-content: baseline;
  gap: 24px;

  .p-card-feature__title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: var(--fw-semibold);
    text-align: center;
    @media (max-width: 850px) {
      font-size: 18px;
    }
  }
  .p-card-feature__note {
    display: block;
    margin: 8px 0 0 0;
    font-size: 10px;
    font-weight: var(--fw-medium);
  }
}

/* アコーディオン */
.p-accordion {
  display: grid;
  gap: 12px;

  .p-accordion__item {
    border-radius: 10px;
    transition: 0.3s ease;

    @media (any-hover: hover) {
      &:hover {
        background-color: var(--orange-100);
      }
    }

    &:has(.is-open) {
      background-color: var(--orange-100);
    }
  }

  .p-accordion__button {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    width: 100%;
    padding: 24px 32px;
    font-size: 20px;
    font-weight: var(--fw-semibold);
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: left;
    transition: 0.3s ease;

    @media (max-width: 767px) {
      gap: 8px;
      font-size: 18px;
      line-height: 1.5;
      padding: 12px 7px 12px 12px;
    }

    .p-accordion__button-icon {
      position: relative;
      display: flex;
      justify-content: center;
      flex-shrink: 0;
      width: 24px;
      height: 2px;

      @media (max-width: 767px) {
        padding: 0 2px;
      }

      &::before,
      &::after {
        content: "";
        display: block;
        width: 14px;
        height: 2px;
        background-color: var(--brand-primary);
      }
      &::after {
        position: absolute;
        top: 0;
        transform: rotate(-90deg);
        transition: 0.3s ease;
      }
    }

    &.is-open .p-accordion__button-icon::after {
      transform: rotate(0deg);
    }
  }

  .p-accordion__content {
    display: none;

    .p-accordion__content-inner {
      position: relative;
      padding: 24px 84px 24px 32px;

      @media (max-width: 767px) {
        font-size: 14px;
        padding: 12px 26px 12px 12px;
      }

      .c-text {
        font-size: 14px;

        &:has(+ .c-list-dot--small) {
          margin: 0 0 8px 0;
        }
      }
      .c-heading--xxsmall {
        font-size: 16px;
      }
      .c-list-dot--small {
        .c-list-dot__item {
          font-size: 13px;
        }
      }
    }
  }

  &.p-accordion--faq {
    .p-accordion__button {
      font-size: 16px;
      font-weight: var(--fw-medium);
      padding: 24px 24px 24px 75px;

      @media (max-width: 767px) {
        font-size: 14px;
        padding: 12px 12px 12px 39px;
      }
      &::before {
        position: absolute;
        top: 50%;
        left: 24px;
        content: "Q";
        font-family: var(--font-sans-en);
        font-size: 24px;
        font-weight: var(--fw-semibold);
        line-height: 1.5;
        color: var(--brand-primary);
        transform: translateY(-50%);

        @media (max-width: 767px) {
          left: 12px;
          font-size: 18px;
        }
      }
    }

    .p-accordion__content {
      .p-accordion__content-inner {
        padding: 24px 84px 24px 75px;

        @media (max-width: 767px) {
          padding: 12px 48px 12px 39px;
        }
        &::before {
          position: absolute;
          top: 50%;
          left: 24px;
          content: "A";
          font-family: var(--font-sans-en);
          font-size: 24px;
          font-weight: var(--fw-semibold);
          line-height: 1.5;
          color: var(--text-primary);
          transform: translateY(-50%);

          @media (max-width: 767px) {
            left: 12px;
            font-size: 18px;
            line-height: 1.5;
          }
        }
      }
    }
  }
}

/* Utility */

/* --- マージン --- */
/* -- top -- */
.u-mt--80 {
  margin: 80px 0 0 0;
}

/* -- bottom -- */
.u-mb--10 {
  margin: 0 0 10px 0;
}
.u-mb--16 {
  margin: 0 0 16px 0;
}
.u-mb--24 {
  margin: 0 0 24px 0;
}
.u-mb--28 {
  margin: 0 0 28px 0;
}
.u-mb--32 {
  margin: 0 0 32px 0;
}
.u-mb--34 {
  margin: 0 0 34px 0;
}
.u-mb--40 {
  margin: 0 0 40px 0;
}
.u-mb--48 {
  margin: 0 0 48px 0;
}
.u-mb--64 {
  margin: 0 0 64px 0;
}
.u-mb--80 {
  margin: 0 0 80px 0;
}
.u-mb--120 {
  margin: 0 0 120px 0;
}
@media (max-width: 767px) {
  /* -- top -- */
  .u-mt--44_sp {
    margin: 44px 0 0 0;
  }
  /* -- bottom -- */
  .u-mb--8-sp {
    margin: 0 0 8px 0;
  }
  .u-mb--15-sp {
    margin: 0 0 15px 0;
  }
  .u-mb--16-sp {
    margin: 0 0 16px 0;
  }
  .u-mb--22-sp {
    margin: 0 0 22px 0;
  }
  .u-mb--24-sp {
    margin: 0 0 24px 0;
  }
  .u-mb--32-sp {
    margin: 0 0 32px 0;
  }
  .u-mb--40-sp {
    margin: 0 0 40px 0;
  }
}

/* --- パディング --- */
.u-p--0 {
  padding: 0;
}

/* -- left -- */
.u-pl--32 {
  padding: 0 0 0 32px;
}

@media (max-width: 767px) {
  /* -- left -- */
  .u-pl--24-sp {
    padding: 0 0 0 24px;
  }
}

/* テキスト水平方向 */
.u-align-left {
  text-align: left !important;
}
.u-align-center {
  text-align: center !important;
}
.u-align-right {
  text-align: right !important;
}
@media (max-width: 767px) {
  .u-align-center-pc {
    text-align: center !important;
  }
}

/* --- インデント --- */
.u-ti-half-width {
  text-indent: 0.5em;
}

.u-ti-half-1 {
  text-indent: 1em;
}

/* --- テキストカラー --- */
.u-fc-orange-700 {
  color: var(--orange-700);
}
.u-fc-blue {
  color: var(--blue);
}
.u-fc-green {
  color: var(--green);
}
.u-fc-red {
  color: var(--red);
}
.u-fc-orange {
  color: var(--brand-primary);
}

/* --- 角丸 --- */
.u-border-radius-0 {
  border-radius: 0 !important;
}

/* --- 改行切り替え --- */
.u-br-pc {
  display: block;
}
.u-br-sp {
  display: none;
}
@media (max-width: 767px) {
  .u-br-pc {
    display: none;
  }
  .u-br-sp {
    display: block;
  }
}

.u-inline-block {
  display: inline-block;
}

/* --- コンテンツ非表示切り替え --- */
.u-pc-none {
  display: none;
}
.u-sp-none {
  display: block;
}
@media (max-width: 767px) {
  .u-pc-none {
    display: block;
  }
  .u-sp-none {
    display: none;
  }
}

/* --- 非表示コンテンツ --- */
.u-visually-hidden {
  overflow: hidden !important;
  position: absolute !important;
  width: 0.1rem !important;
  height: 0.1rem !important;
  margin: -0.1rem !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}
/* ==========================================
  インタビュー用：グレー背景のハイライトボックス
========================================== */
.p-interview-box {
  background-color: #f5f5f5;
  padding: 50px;
  border-radius: 8px;
  margin-bottom: 40px;
  @media (max-width: 767px) {
    padding: 30px;
  }
}

.single-people .p-interview-box h3 {
  color: #323232;
  font-size: 18px;
  margin-top: 0;
  padding-left: 0;
}
.single-people .p-interview-box h3:not(:first-of-type) {
  margin-top: 35px;
  @media (max-width: 767px) {
    margin-top: 32px;
  }
}
.single-people .p-interview-box {
  & p {
    margin-top: 16px;
    &:not(:last-child) {
      margin-top: 16px;
      margin-bottom: 0;
    }
  }
}

.single-people .p-interview-box h3::before {
  display: none;
}

/* ==========================================
  Q付き見出し
========================================== */
.p-qa-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 48px 0;
  @media (max-width: 767px) {
    margin: 0 0 32px 0;
  }
}

.p-qa-heading-wrap .p-qa-mark {
  color: #f08300;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 !important;
}

.p-qa-heading-wrap .p-qa-markh2 {
  color: #f08300;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 !important;
}

.single-people .p-qa-heading-wrap h3.p-qa-text {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  padding: 0;
  border: none;
}

.single-people .p-qa-heading-wrap h2.p-qa-text {
  margin: 0;
}

.single-people .p-qa-heading-wrap h3.p-qa-text::before {
  display: none;
}
.p-error-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-error-list__item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.8em;
  line-height: 1.6;
}

.p-error-list__item:last-child {
  margin-bottom: 0;
}

.p-error-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  border-radius: 50%;
  top: 0.6em;
}
