* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  }
  
  body {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    color: #1f2d3d;
    background: #f5f8fc;
    line-height: 1.7;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    font: inherit;
  }
  
  .container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
  }

  /* ローダー */
  .loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f6ef2 0%, #46d6f6 100%);
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .loader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .loader__logo {
    width: 64px;
    height: auto;
    object-fit: contain;
    animation: loaderLogo 1.2s ease-in-out infinite;
  }
  @keyframes loaderLogo {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }
  .loader__text {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    opacity: 0.95;
  }
  .loader__bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    overflow: hidden;
  }
  .loader__bar-inner {
    display: block;
    height: 100%;
    width: 40%;
    background: #fff;
    border-radius: 3px;
    animation: loaderBar 1.2s ease-in-out infinite;
  }
  @keyframes loaderBar {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(150%); }
    100% { transform: translateX(-100%); }
  }

  /* 表示アニメーション */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .hero__text {
    animation: fadeInUp 0.7s ease-out 0.1s both;
  }
  .hero__image-wrap {
    animation: fadeInUp 0.7s ease-out 0.2s both;
  }
  .hero__big-word {
    animation: fadeIn 0.6s ease-out 0.35s both;
  }

  .animate-inview {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .animate-inview.is-inview {
    opacity: 1;
    transform: translateY(0);
  }

  .promise-card,
  .chart-card,
  .stat-card,
  .strength-card,
  .flow-step,
  .benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .promise-card:hover,
  .chart-card:hover,
  .stat-card:hover,
  .strength-card:hover,
  .flow-step:hover,
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  /* -----------------------
     header (index.html と同じ)
  ------------------------ */
  .recruit-hero-header {
    padding-top: 56px;
  }

  .nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(90deg, #1f6ef2 0%, #46d6f6 100%);
    padding: 20px 0;
  }

  .wrap {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
  }

  .brand-logo {
    display: block;
    height: 36px;
    width: auto;
    object-fit: contain;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-left: auto;
  }

  .nav-links a {
    color: inherit;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
  }

  .nav-dropdown__trigger::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
    transition: transform 0.2s ease;
  }

  .nav-dropdown.is-open .nav-dropdown__trigger::after {
    transform: rotate(180deg);
  }

  .nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 200px;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown__menu a {
    display: block;
    padding: 10px 20px;
    color: #1f2d3d;
    font-size: 14px;
    transition: background 0.2s;
  }

  .nav-dropdown__menu a:hover {
    background: rgba(31, 111, 242, 0.08);
  }

  .header-entry {
    padding: 7px 16px;
    border-radius: 999px;
    background: #fff;
    color: #1f6be8;
    font-size: 11px;
    font-weight: 800;
  }

  .header-entry:hover {
    opacity: 0.9;
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
  }

  /* -----------------------
     common
  ------------------------ */
  .section {
    padding: 96px 0;
  }
  
  .section--light {
    background: #fff;
    border-radius: 32px 32px 0 0;
  }
  
  .section-title {
    text-align: center;
    font-size: clamp(2.4rem, 5vw, 5.6rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, #1f6ef2, #46d6f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
  }
  
  .section-title--white {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 5.6rem);
  }
  
  .section-subtitle {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 48px;
    color: #1f6ef2;
    font-size: 2rem;
    font-weight: 400;
  }
  
  .section-subtitle--white {
    color: rgba(255, 255, 255, 0.88);
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1f77dc, #47c4ff);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 24px rgba(45, 132, 223, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
  }
  
  .btn--small {
    min-width: 96px;
    height: 36px;
    font-size: 0.82rem;
  }
  
  /* -----------------------
     hero
  ------------------------ */
  .hero {
    position: relative;
    overflow: hidden;
    /* index.html の hero-body と同じ背景 */
    background: linear-gradient(90deg, #1f6ef2 0%, #46d6f6 100%);
    color: #fff;
    padding: 28px 0 36px;
  }
  
  .hero__bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(2px);
  }
  
  .hero__bg-circle--1 {
    width: 520px;
    height: 520px;
    right: -140px;
    top: -80px;
  }
  
  .hero__bg-circle--2 {
    width: 260px;
    height: 260px;
    right: 15%;
    top: 120px;
    background: rgba(255, 255, 255, 0.08);
  }
  
  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  
  .logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.95;
  }
  
  .nav a {
    transition: opacity 0.2s ease;
  }
  
  .nav a:hover {
    opacity: 0.75;
  }
  
  .hero__inner {
    position: relative;
  }
  
  .hero__content {
    display: grid;
    grid-template-columns: 1fr 580px;
    align-items: center;
    gap: 32px;
    min-height: 680px;
    position: relative;
    z-index: 2;
  }
  
  .hero__copy {
    font-size: clamp(1.5rem, 3.2vw, 3.5rem);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.03em;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  
  .hero__image-wrap {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
  }
  
  .hero__image-bg {
    position: absolute;
    inset: 12px 0 0 0;
    border-radius: 55% 45% 50% 50% / 45% 50% 50% 55%;
    background: rgba(255, 255, 255, 0.22);
  }
  
  .hero__image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
  }
  
  .hero__big-word {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    width: 100%;
    text-align: center;
    font-size: clamp(2rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    z-index: 1;
  }
  
  /* -----------------------
     promise
  ------------------------ */
  .promise {
    margin-top: -20px;
    position: relative;
    z-index: 3;
    background: #EBF5FF;
  }

  .promise .section-title {
    font-size: clamp(2.4rem, 5vw, 5.6rem);
  }

  .promise-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  .promise-card {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: center;
    background: #fff;
    padding: 28px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: visible;
    position: relative;
  }
  
  .promise-card--left {
    grid-template-columns: 300px 1fr;
  }

  .promise-list > article:nth-child(1) {
    margin-right: 10%;
  }

  .promise-list > article:nth-child(3) {
    margin-right: 10%;
  }

  .promise-list > article:nth-child(2) {
    margin-left: 10%;
  }
  
  .promise-card__number {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1;
    color: #2d84df;
    margin-top: -9rem;
    margin-bottom: -0.5rem;
  }
  
  .promise-card__label {
    margin-top: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #2d84df;
  }
  
  .promise-card__text h3 {
    margin-top: 8px;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2d3d;
  }
  
  .promise-card__text p {
    margin-top: 8px;
    color: #333333;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  
  .promise-card__image {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  
  .promise-card__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    display: block;
  }
  
  /* -----------------------
     data
  ------------------------ */
  .data {
    background: linear-gradient(135deg, #1d7de3 0%, #5ed3ff 100%);
    position: relative;
    overflow: hidden;
    border-radius: 34px 34px 0 0;
  }
  
  .data::before,
  .data::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
  }
  
  .data::before {
    width: 300px;
    height: 300px;
    left: -80px;
    top: 40px;
  }
  
  .data::after {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: -100px;
  }
  
  .data-chart-grid,
  .data-stats {
    position: relative;
    z-index: 1;
  }
  
  .data-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 28px;
  }
  
  .chart-card,
  .stat-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(14, 66, 122, 0.16);
  }
  
  .chart-card {
    padding: 24px;
  }
  
  .chart-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 2rem;
    color: #27486f;
  }
  
  .chart-card h3::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2d84df;
    flex-shrink: 0;
  }
  
  .chart-card__desc {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #667d97;
    min-height: 52px;
  }
  
  .chart-card__image {
    margin-top: 16px;
    text-align: center;
    min-width: 0;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .chart-card__image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }
  
  .data-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(45, 132, 223, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .stat-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.5rem;
    color: #5d7ea6;
    order: 1;
  }
  
  .stat-card h3::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2d84df;
    flex-shrink: 0;
  }
  
  .stat-card__value {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    color: #2d84df;
    line-height: 1.1;
    order: 2;
  }
  
  .stat-card__value span {
    font-size: 0.45em;
    margin-left: 4px;
  }
  
  .stat-card__icon {
    order: 3;
    margin-top: 4px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  
  .stat-card__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* -----------------------
     strengths（添付画像通り：白カード内に円形画像・英語ラベル・番号）
  ------------------------ */
  .strengths {
    background: #EBF5FF;
    border-radius: 34px 34px 0 0;
    overflow: hidden;
  }
  
  .strength-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }
  
  .strength-card {
    display: grid;
    grid-template-rows: 0.5rem 1fr;
    grid-template-columns: 460px 1fr;
    gap: 0 24px;
    align-items: start;
    background: #fff;
    border-radius: 20px;
    padding: 14px 24px;
    padding-top: 6px;
    box-shadow: 0 10px 30px rgba(37, 84, 146, 0.08);
    overflow: visible;
    position: relative;
  }
  
  .strength-card--02 {
    grid-template-columns: 1fr 460px;
  }
  
  .strength-card__number {
    grid-row: 1;
    grid-column: 1 / -1;
    justify-self: end;
    align-self: end;
    transform: translateY(40px);
    font-size: 7rem;
    font-weight: 400;
    background: linear-gradient(90deg, #1f6ef2 0%, #46d6f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    position: relative;
    z-index: 1;
  }
  
  .strength-card--02 .strength-card__number {
    justify-self: start;
  }
  
  .strength-card__images {
    grid-row: 2;
    grid-column: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: -10px;
    margin-top: -24px;
    margin-bottom: -24px;
    overflow: visible;
  }
  
  .strength-card--02 .strength-card__images {
    grid-column: 2;
    justify-content: flex-end;
    margin-left: 0;
    margin-right: -10px;
    margin-top: -24px;
    margin-bottom: -24px;
    transform: translateY(10px);
  }
  
  .strength-card--02 .strength-card__content {
    grid-column: 1;
  }
  
  .strength-card__images--double {
    position: relative;
    width: 416px;
    height: 260px;
  }
  
  .strength-card__circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .strength-card__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .strength-card__images--double .strength-card__circle {
    position: absolute;
    width: 260px;
    height: 260px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .strength-card__images--double .strength-card__circle--back {
    left: 0;
    z-index: 0;
  }
  
  .strength-card--01 .strength-card__circle--back {
    transform: translateY(calc(-50% - 12px));
  }
  
  .strength-card__images--double .strength-card__circle--front {
    left: 116px;
    z-index: 1;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
  
  .strength-card--01 .strength-card__circle--front {
    transform: translateY(calc(-50% + 80px));
  }
  
  .strength-card__content {
    grid-row: 2;
    grid-column: 2;
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .strength-card__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #89a7cc;
    margin-bottom: 6px;
    line-height: 1.4;
  }
  
  .strength-card__content h3 {
    font-size: 2rem;
    color: #1f2d3d;
    line-height: 1.75;
    font-weight: 550;
  }
  
  .strength-card--02 .strength-card__number {
    text-align: left;
  }
  
  .strength-card--01 .strength-card__number,
  .strength-card--03 .strength-card__number {
    text-align: right;
  }
  
  /* -----------------------
     flow
  ------------------------ */
  .flow {
    background: #fff;
    border-radius: 34px 34px 0 0;
    overflow: hidden;
  }
  
  .flow-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  
  .flow-step {
    background: #fff;
    border: 2px solid #d6e5f7;
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .flow-step__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flow-step__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .flow-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #e9f4ff;
    color: #2d84df;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .flow-step__title {
    font-size: 1rem;
    font-weight: 300;
    color: #2d84df;
    margin-bottom: 8px;
  }
  
  .flow-step__desc {
    color: #5a7089;
    font-size: 0.82rem;
    line-height: 1.5;
    font-weight: 500;
  }
  
  /* -----------------------
     benefits
  ------------------------ */
  .benefits {
    background: #EBF5FF;
    border-radius: 34px 34px 0 0;
    overflow: hidden;
  }
  
  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(38, 78, 130, 0.08);
  }
  
  .benefit-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f77dc, #4bcaff);
  }
  
  .benefit-card__icon img {
    width: 56%;
    height: 56%;
    object-fit: contain;
    display: block;
    min-width: 0;
    min-height: 0;
  }
  
  .benefit-card h3 {
    color: #2e4f75;
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .benefit-card p {
    font-size: 0.88rem;
    color: #667d97;
    line-height: 1.8;
  }
  
  /* -----------------------
     recruit（参考デザイン通り）
  ------------------------ */
  .recruit {
    background: #ffffff;
    border-radius: 34px 34px 0 0;
    overflow: hidden;
  }
  
  .recruit .section-subtitle {
    color: #1f2d3d;
    font-size: 2rem;
  }
  
  .recruit-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  
  .recruit-tabs__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid #2588ff;
    background: #fff;
    color: #2588ff;
    border-radius: 999px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 700;
    font-size: 0.95rem;
  }
  
  .recruit-tabs__btn.is-active,
  .recruit-tabs__btn:hover {
    background: #2588ff;
    color: #fff;
    border-color: #2588ff;
  }
  
  .recruit-tabs__chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    margin-left: 2px;
    vertical-align: middle;
  }
  
  .recruit-card {
    width: min(900px, 100%);
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 0 0 36px;
    box-shadow: none;
    border: none;
  }
  
  .recruit-content {
    display: none;
  }
  
  .recruit-content.is-visible {
    display: block;
  }
  
  .recruit-card__title,
  .recruit-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2d3d;
    text-align: left;
    margin-bottom: 20px;
  }
  
  .recruit-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8eef5;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .recruit-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-top: 1px solid #e8eef5;
  }
  
  .recruit-row:first-child {
    border-top: none;
  }
  
  .recruit-row dt,
  .recruit-row dd {
    padding: 18px 20px;
  }
  
  .recruit-row dt {
    color: #24456c;
    font-weight: 700;
    font-size: 0.9rem;
    background: #f5f9fd;
  }
  
  .recruit-row dd {
    color: #5f758e;
    font-size: 0.92rem;
    line-height: 1.7;
    background: #fff;
  }
  
  .recruit-btn-wrap {
    margin-top: 32px;
    text-align: center;
  }
  
  .recruit-apply-btn {
    min-width: 280px;
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  /* -----------------------
     footer（index.html と同じ）
  ------------------------ */
  .site-footer {
    background: #111e34;
    color: #fff;
    padding: 28px 0 40px;
    border-radius: 34px 34px 0 0;
    overflow: visible;
  }
  
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
  
  .footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .footer-brand {
    color: inherit;
  }
  
  .footer-brand-logo {
    display: block;
    height: 36px;
    width: auto;
    object-fit: contain;
  }
  
  .footer-icons {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .footer-icons a:nth-child(1) {
    background: #06c755;
  }
  
  .footer-icons a:nth-child(2),
  .footer-icons a:nth-child(3) {
    background: #fff;
  }
  
  .footer-icon-img {
    display: block;
    height: 24px;
    width: auto;
    object-fit: contain;
  }
  
  .footer-icon-img--line {
    height: 26px;
  }
  
  .footer-copy {
    margin: 0;
    font-size: 10px;
    opacity: 0.72;
  }
  
  .footer-copy a {
    color: inherit;
    opacity: 0.9;
  }
  
  .footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
  }
  
  .footer-links a {
    color: inherit;
  }

  .footer-dropdown {
    position: relative;
  }
  .footer-dropdown.is-open {
    z-index: 100;
  }

  .footer-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
  }

  .footer-dropdown__trigger::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
    transition: transform 0.2s ease;
  }

  .footer-dropdown.is-open .footer-dropdown__trigger::after {
    transform: rotate(180deg);
  }

  .footer-dropdown__menu {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 101;
  }

  .footer-dropdown.is-open .footer-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .footer-dropdown__menu a {
    display: block;
    padding: 10px 20px;
    color: #1f2d3d;
    font-size: 14px;
    transition: background 0.2s;
  }

  .footer-dropdown__menu a:hover {
    background: rgba(31, 111, 242, 0.08);
  }

  /* -----------------------
     responsive
  ------------------------ */
  @media (max-width: 1024px) {
    .nav {
      position: relative;
    }
    .nav-toggle {
      display: flex;
      margin-left: auto;
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
      opacity: 0;
      transform: translateY(-4px);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
      opacity: 1;
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
      opacity: 0;
      transform: translateY(4px);
    }
    .header-entry {
      display: none;
    }
    .nav-links {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      left: auto;
      min-width: 260px;
      margin: 0;
      flex-direction: column;
      gap: 0;
      padding: 12px 0 16px;
      background: rgba(255, 255, 255, 0.98);
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.8);
      overflow: hidden;
    }
    .nav-links a {
      display: block;
      padding: 14px 24px;
      font-size: 15px;
      color: #1f2d3d;
      font-weight: 700;
      transition: background 0.2s;
    }
    .nav-links a:not(.nav-links-entry):hover {
      background: rgba(31, 111, 242, 0.08);
    }
    .nav-links a.nav-links-entry {
      color: #fff;
    }
    .nav-links-entry {
      margin: 12px 16px 0;
      padding: 16px 24px 14px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      text-align: center;
      background: linear-gradient(90deg, #1f6ef2 0%, #46d6f6 100%);
      color: #fff;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 4px 14px rgba(31, 111, 242, 0.35);
    }
    body.nav-open .nav-links {
      display: flex;
    }
    .nav-dropdown {
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .nav-dropdown__trigger {
      width: 100%;
      text-align: left;
      padding: 14px 24px;
      justify-content: space-between;
      color: black;
    }
    .nav-dropdown__menu {
      position: static;
      min-width: auto;
      transform: none;
      box-shadow: none;
      background: rgba(0, 0, 0, 0.04);
      border-radius: 0;
      padding: 0 0 8px 0;
      margin: 0 24px 0 12px;
      max-height: 0;
      overflow: hidden;
    }
    .nav-dropdown.is-open .nav-dropdown__menu {
      max-height: 180px;
    }
    .nav-dropdown__menu a {
      padding: 10px 12px;
    }

    /* hero（固定ヘッダーで隠れないよう上余白を確保） */
    .hero.recruit-hero-header {
      padding-top: 100px;
    }
    .hero__content {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 40px 0 60px;
    }
    .hero__image-wrap {
      max-width: 520px;
      margin: 0 auto;
    }
    .hero__text {
      text-align: center;
    }
    .hero__copy br {
      display: none;
    }
    .hero__big-word {
      position: static;
      margin-top: 24px;
      font-size: clamp(1.5rem, 6vw, 4rem);
      white-space: normal;
    }

    /* section common */
    .section {
      padding: 56px 0 64px;
    }
    .section-subtitle {
      margin-bottom: 32px;
      font-size: 1.5rem;
    }

    /* promise */
    .promise-list > article:nth-child(1),
    .promise-list > article:nth-child(2),
    .promise-list > article:nth-child(3) {
      margin-left: 0;
      margin-right: 0;
    }
    .promise-list {
      gap: 40px;
    }
    .promise-card,
    .promise-card--left {
      grid-template-columns: 1fr;
      padding: 24px 20px;
    }
    .promise-card__number {
      margin-top: 0;
      font-size: 3.5rem;
    }
    .promise-card__image {
      order: -1;
      height: 180px;
      max-width: 280px;
      margin: 0 auto;
    }
    .promise-card__text h3 {
      font-size: 1.5rem;
    }
    .promise-card__text p {
      font-size: 1rem;
    }

    /* data */
    .data-chart-grid {
      grid-template-columns: 1fr;
      margin-bottom: 24px;
    }
    .data-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .chart-card h3 {
      font-size: 1.25rem;
    }
    .chart-card__desc {
      font-size: 0.95rem;
      min-height: auto;
    }
    .stat-card {
      padding: 20px 16px;
    }
    .stat-card h3 {
      font-size: 0.95rem;
    }
    .stat-card__value {
      font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    .stat-card__icon {
      width: 56px;
      height: 56px;
    }

    /* strengths */
    .strength-list {
      gap: 48px;
    }
    .strength-card,
    .strength-card--02 {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      gap: 16px;
      padding: 20px 18px;
    }
    .strength-card__number {
      grid-row: 1;
      grid-column: 1;
      justify-self: start;
      transform: none;
      font-size: 4rem;
    }
    .strength-card--02 .strength-card__number {
      justify-self: start;
    }
    .strength-card__images,
    .strength-card--02 .strength-card__images {
      grid-row: 2;
      grid-column: 1;
      margin: 0;
      transform: none;
      justify-content: center;
    }
    .strength-card__images--double {
      width: 100%;
      max-width: 320px;
      height: 260px;
      margin: 0 auto;
      justify-content: center;
    }
    .strength-card__circle {
      width: 260px;
      height: 260px;
      margin: 0 auto;
    }
    .strength-card__images--double .strength-card__circle {
      width: 240px;
      height: 240px;
    }
    .strength-card__images--double .strength-card__circle--back {
      left: 50%;
      transform: translate(-50%, -50%);
    }
    .strength-card--01 .strength-card__images--double .strength-card__circle--back {
      transform: translate(-50%, -50%);
    }
    .strength-card__images--double .strength-card__circle--front {
      display: none;
    }
    .strength-card__content,
    .strength-card--02 .strength-card__content {
      grid-row: 3;
      grid-column: 1;
    }
    .strength-card__content h3 {
      font-size: 1.25rem;
    }
    .strength-card__label {
      font-size: 0.7rem;
    }

    /* flow */
    .flow-list {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .flow-step {
      padding: 20px 16px;
    }
    .flow-step__title {
      font-size: 0.95rem;
    }
    .flow-step__desc {
      font-size: 0.8rem;
    }

    /* benefits */
    .benefit-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .benefit-card {
      padding: 20px 16px;
    }
    .benefit-card h3 {
      font-size: 0.9rem;
    }
    .benefit-card p {
      font-size: 0.82rem;
    }

    /* recruit */
    .recruit-tabs {
      gap: 8px;
      margin-bottom: 20px;
    }
    .recruit-tabs__btn {
      padding: 10px 16px;
      font-size: 0.88rem;
    }
    .recruit-row {
      grid-template-columns: 1fr;
    }
    .recruit-row dt {
      border-bottom: 1px solid #e8eef5;
    }
    .recruit-row dd {
      border-top: none;
    }
    .recruit-apply-btn {
      min-width: 100%;
      max-width: 280px;
    }

    /* footer */
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand-block {
      align-items: center;
    }
    .footer-links {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .footer-dropdown__menu {
      bottom: calc(100% + 8px);
      top: auto;
      left: 50%;
      transform: translateX(-50%) translateY(4px);
    }
    .footer-dropdown.is-open .footer-dropdown__menu {
      transform: translateX(-50%) translateY(0);
    }
  }

  @media (max-width: 600px) {
    .container {
      width: calc(100% - 24px);
    }
    .wrap {
      width: calc(100% - 24px);
    }
    .section {
      padding: 40px 0 48px;
    }
    .section-title {
      font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    .section-subtitle {
      font-size: 1.25rem;
      margin-bottom: 24px;
    }
    .data-stats {
      grid-template-columns: 1fr;
    }
    .benefit-grid {
      grid-template-columns: 1fr;
    }
    .promise-card__image {
      height: 160px;
    }
  }