    /* ========== Reset & Base ========== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: #333;
      background: #fff;
      line-height: 1.8;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    .sp-only { display: none !important; }
    .pc-only { display: block !important; }
    a { text-decoration: none; color: inherit; }

    /* ========== CSS Variables ========== */
    :root {
      --orange: #F7931E;
      --orange-light: #FFF8ED;
      --orange-pale: #FDF0DD;
      --orange-dark: #E07B00;
      --blue: #2B6CB0;
      --dark: #333333;
      --gray: #666666;
      --light-gray: #F5F5F5;
      --white: #FFFFFF;
      --beige: #FDF0DD;
      --font-en: 'Montserrat', sans-serif;
      --font-jp: 'Noto Sans JP', sans-serif;
      --max-width: 1100px;
    }

    /* ========== Header ========== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      padding: 12px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .header-logo img {
      height: 32px;
      width: auto;
      display: block;
    }
    .header-nav {
      display: flex;
      gap: 30px;
      align-items: center;
    }
    .header-nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      transition: color 0.3s;
    }
    .header-nav a:hover { color: var(--orange); }
    .header-entry-btn {
      background: var(--orange);
      color: #fff !important;
      padding: 8px 24px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 14px;
      transition: background 0.3s;
    }
    .header-entry-btn:hover { background: var(--orange-dark); }

    /* ========== Hero / FV ========== */
    .hero {
      margin-top: 56px;
    }
    .hero img {
      width: 100%;
      display: block;
    }

    /* ========== Section Images ========== */
    .section-img {
      width: 68%;
      line-height: 0;
      margin: auto;
    }
    .section-img img {
      width: 100%;
      display: block;
    }

    /* ========== About Section ========== */
    #about {
      position: relative;
      overflow: hidden;
      padding: 60px 0 0;
    }
    .about-bg-text {
      position: absolute;
      left: -10px;
      top: 16%;
      transform: translateY(-50%);
      height: auto;
      width: 7%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.7;
    }
    .about-header {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto 0;
      padding: 0 60px;
    }
    .about-title-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 16px;
    }
    .about-title-row h2 {
      font-size: 32px;
      font-weight: 900;
      color: var(--orange);
      white-space: nowrap;
    }
    .about-title-row .about-line {
      flex: 1;
      height: 2px;
      background: var(--orange);
    }
    .about-subtitle {
      font-size: 15px;
      color: #2f2e2c;
      line-height: 2;
      margin-bottom: 20px;
      font-weight: 700;
    }
    #about .section-img {
      position: relative;
      z-index: 1;
    }

    /* ========== Numbers Section ========== */
    .numbers-section {
    position: relative;
    background: url(../recruit-image/back.png) top center / cover no-repeat;
    padding-bottom: 80px;
    padding-top: 4rem;
    margin-top: 4rem;
}
    .numbers-wrapper {
      position: relative;
      overflow: hidden;
    }
    .numbers-header {
      position: relative;
      z-index: 1;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
      margin-top: 5rem;
    }
    .numbers-title-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 16px;
    }
    .numbers-title-row h2 {
      font-size: 32px;
      font-weight: 900;
      color: var(--orange);
      white-space: nowrap;
    }
    .numbers-title-row .numbers-line {
      flex: 1;
      height: 2px;
      background: var(--orange);
    }
    .numbers-bg-text {
      position: absolute;
      left: -10px;
      top: 0%;
      height: auto;
      width: 7%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.7;
    }
    .numbers-content {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
      width: 80%;
    }
    .numbers-sub-heading {
      text-align: center;
      font-size: 22px;
      font-weight: 700;
      color: var(--blue);
      margin: 28px 0 32px;
      letter-spacing: 4px;
    }
    .section-heading {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 50px;
      padding-left: 60px;
    }
    .section-heading h2 {
      font-size: 32px;
      font-weight: 900;
      color: var(--orange);
      white-space: nowrap;
    }
    .section-heading .line {
      flex: 1;
      height: 2px;
      background: var(--orange);
    }
    .sub-heading {
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 40px;
      letter-spacing: 3px;
    }

    /* ===== Data Cards Grid ===== */
    .data-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 70px;
    }
    .data-card {
      background: rgba(255,255,255,0.93);
      border-radius: 16px;
      padding: 32px 28px 28px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      position: relative;
      overflow: hidden;
    }
    .data-card-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .data-card-title .q-icon {
      font-family: var(--font-en);
      font-size: 36px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
    }
    .data-card-title h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
    }

    /* ----- Card 1: 男女比 ----- */
    .gender-visual {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 36px;
      margin: 20px 0 20px;
    }
    .gender-figure {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .gender-figure .figure-body {
      position: relative;
      width: 90px;
      height: 140px;
    }
    .gender-figure .figure-body svg {
      width: 100%;
      height: 100%;
    }
    .gender-figure .fill-rect {
      transition: y 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  height 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .gender-figure .figure-num {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 24px;
      font-weight: 900;
      color: #fff;
      text-shadow: 0 1px 3px rgba(0,0,0,0.15);
      margin-top: 8px;
      opacity: 0;
      transition: opacity 0.5s ease 1.2s;
    }
    .data-card.animated .gender-figure .figure-num {
      opacity: 1;
    }
    .gender-figure .figure-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--gray);
      margin-top: 6px;
    }
    .gender-big-nums {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-top: 8px;
    }
    .gender-big-nums .gnum {
      text-align: center;
    }
    .gender-big-nums .gnum span {
      font-size: 42px;
      font-weight: 900;
      line-height: 1;
    }
    .gender-big-nums .gnum small {
      font-size: 22px;
      font-weight: 700;
    }
    .gender-big-nums .gnum.female span,
    .gender-big-nums .gnum.female small { color: var(--orange); }
    .gender-big-nums .gnum.male span,
    .gender-big-nums .gnum.male small { color: #5B7BA5; }

    /* ----- Card 2: 年齢 ----- */
    .age-visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }
    .pie-chart {
      position: relative;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: conic-gradient(var(--orange) 0deg 0deg, #888 0deg 360deg);
      box-shadow: 2px 4px 12px rgba(0,0,0,0.1);
      transition: background 0s;
    }
    .pie-label {
      position: absolute;
      font-weight: 700;
      line-height: 1.2;
    }
    .pie-label-20 {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      opacity: 0;
      transition: opacity 0.5s ease 1s;
    }
    .data-card.animated .pie-label-20 { opacity: 1; }
    .pie-label-20 .pie-age {
      font-size: 16px;
    }
    .pie-label-20 .pie-pct {
      font-size: 28px;
      font-weight: 900;
    }
    .pie-label-30 {
      top: 4px;
      right: -52px;
      color: var(--dark);
      font-size: 12px;
      white-space: nowrap;
    }
    .pie-label-30::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: #888;
      vertical-align: middle;
      margin-right: 4px;
    }
    .age-avg-block {
      text-align: center;
      margin-top: 18px;
    }
    .age-avg-block .avg-label {
      font-size: 14px;
      color: var(--gray);
      font-weight: 500;
    }
    .age-avg-block .avg-num {
      font-size: 42px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1.1;
    }
    .age-avg-block .avg-num small {
      font-size: 20px;
      font-weight: 700;
    }

    /* ----- Card 3: 経験者率 ----- */
    .exp-visual {
      margin: 16px 0 18px;
    }
    .exp-bar-row {
      margin-bottom: 14px;
    }
    .exp-bar-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--gray);
      margin-bottom: 5px;
    }
    .exp-bar-track {
      width: 100%;
      height: 30px;
      background: #EDEDED;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }
    .exp-bar-fill {
      height: 100%;
      border-radius: 4px;
      display: flex;
      align-items: center;
      padding-left: 12px;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      width: 0% !important;
      transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .data-card.animated .exp-bar-fill.exp-gray { width: 18% !important; }
    .data-card.animated .exp-bar-fill.exp-orange { width: 90% !important; }
    .exp-bar-fill.exp-gray { background: #B0B0B0; }
    .exp-bar-fill.exp-orange { background: var(--orange); }
    .exp-note {
      margin-top: 16px;
      text-align: center;
    }
    .exp-note .note-highlight {
      font-size: 22px;
      font-weight: 900;
      color: var(--dark);
      line-height: 1.5;
    }
    .exp-note .note-highlight em {
      color: var(--orange);
      font-style: normal;
    }

    /* ----- Card 4: 運動部比率 ----- */
    .sport-visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 14px;
    }
    .sport-pie {
      position: relative;
      width: 180px;
      height: 130px;
      overflow: visible;
    }
    .sport-pie-ellipse {
      width: 180px;
      height: 130px;
      border-radius: 50%;
      background: conic-gradient(#C0A060 0deg 0deg, var(--orange) 0deg 0deg, #ddd 0deg 360deg);
      box-shadow: 0 8px 0 rgba(0,0,0,0.08);
      position: relative;
      transition: background 0s;
    }
    .sport-pie-label {
      position: absolute;
      font-weight: 800;
      color: #fff;
      text-shadow: 0 1px 3px rgba(0,0,0,0.2);
      line-height: 1.2;
      text-align: center;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .data-card.animated .sport-pie-label {
      opacity: 1;
    }
    .sport-pie-label .spl-name {
      font-size: 11px;
      font-weight: 600;
    }
    .sport-pie-label .spl-pct {
      font-size: 22px;
      font-weight: 900;
    }
    .sport-note {
      margin-top: 18px;
      text-align: center;
    }
    .sport-note .note-highlight {
      font-size: 20px;
      font-weight: 900;
      color: var(--dark);
      line-height: 1.5;
    }
    .sport-note .note-highlight em {
      color: var(--orange);
      font-style: normal;
    }

    /* ========== Performance Data ========== */
    .perf-section {
      margin-top: 24px;
    }
    .perf-img-row {
      margin-bottom: 16px;
    }
    .perf-img-row img {
      width: 100%;
      display: block;
      border-radius: 12px;
    }
    .perf-row-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .perf-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .perf-bottom-left img {
      width: 100%;
      border-radius: 12px;
      display: block;
    }
    .perf-bottom-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .perf-bottom-right img {
      width: 100%;
      border-radius: 12px;
      display: block;
    }
    .perf-link-img {
      display: block;
      transition: opacity 0.3s;
    }
    .perf-link-img:hover {
      opacity: 0.8;
    }
    .perf-link-img img {
      width: 100%;
      display: block;
      border-radius: 12px;
    }

    /* ========== Interview Section ========== */
    .interview-section {
      position: relative;
      padding: 80px 0 100px;
      background: #fff;
      overflow: hidden;
    }
    .interview-inner {
      position: relative;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
    }
    .member-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
    .member-card {
      cursor: pointer;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      background: #fff;
      position: relative;
    }
    .member-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
    .member-card img {
      width: 100%;
      display: block;
    }
    .member-card .tap-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      pointer-events: none;
      animation: tapPulse 2.2s ease-in-out infinite;
    }
    .member-card .tap-badge .tap-circle {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgb(255 255 255 / 45%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 8px rgba(247, 147, 30, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    .member-card .tap-badge .tap-circle svg {
      width: 30px;
      height: 30px;
      fill: #fff;
    }
    .member-card .tap-badge .tap-text {
      font-family: var(--font-en);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 3px;
      color: #fff;
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }
    @keyframes tapPulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
      50% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.8; }
    }
    .member-hint {
      display: none;
    }

    /* ========== Modal ========== */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    .modal-overlay.active {
      display: flex;
    }
    .modal-content {
      background: #fff;
      border-radius: 16px;
      max-width: 600px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      position: relative;
      animation: modalIn 0.3s ease;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.95) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: none;
      background: rgba(0,0,0,0.1);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #333;
      z-index: 10;
      transition: background 0.3s;
    }
    .modal-close:hover { background: rgba(0,0,0,0.2); }
    .modal-photo {
      display: none;
    }
    .modal-body {
      flex: 1;
      padding: 36px 32px;
      overflow-y: auto;
    }
    .modal-name {
      font-size: 14px;
      color: var(--orange);
      font-weight: 700;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--orange);
    }
    .modal-qa-item {
      margin-bottom: 20px;
    }
    .modal-qa-item .qa-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .modal-qa-item .qa-label::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 2px;
    }
    .modal-qa-item .qa-text {
      font-size: 14px;
      line-height: 1.8;
      color: var(--dark);
      padding-left: 14px;
    }
    .modal-message {
      margin-top: 20px;
      padding: 20px;
      background: var(--orange-light);
      border-radius: 10px;
    }
    .modal-message .qa-label {
      font-size: 14px;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 10px;
    }
    .modal-message .qa-text {
      font-size: 14px;
      line-height: 2;
      color: var(--dark);
      white-space: pre-line;
    }

    /* ========== CEO Message ========== */
    .ceo-header {
      position: relative;
      padding: 40px 60px 40px;
      overflow: hidden;
    }
    .ceo-message-bg {
      position: absolute;
      top: 24px;
      left: 8%;
      width: 32%;
      max-width: 21%;
      pointer-events: none;
    }
    .ceo-title-row {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .ceo-title-row h2 {
      font-size: 28px;
      font-weight: 900;
      color: var(--orange);
      white-space: nowrap;
    }
    .ceo-title-row .ceo-line {
      flex: 1;
      height: 2px;
      background: var(--orange);
    }
    .ceo-body {
      position: relative;
      overflow: hidden;
    }
    .ceo-body-bg {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .ceo-body-bg::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 10%;
      height: 100%;
      background: #fff;
    }
    .ceo-body-bg::after {
      content: '';
      position: absolute;
      top: 0; left: 10%;
      width: 90%;
      height: 100%;
      background: #fdf2e0;
    }
    .ceo-body-inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 60px 60px;
      display: flex;
      gap: 40px;
    }
    .ceo-photo-col {
      position: relative;
      width: 40%;
      flex-shrink: 0;
      padding-top: 20%;
    }
    .ceo-photo-frame {
      width: 100%;
      overflow: hidden;
    }
    .ceo-photo-frame img {
      width: 100%;
      display: block;
    }
    .ceo-text-col {
      flex: 1;
      padding-top: 40px;
    }
    .ceo-chubby-bg {
      position: absolute;
      right: 0;
      bottom: 5%;
      height: auto;
      width: 5%;
      opacity: 0.6;
      pointer-events: none;
      z-index: 2;
    }
    .ceo-text {
      position: relative;
      z-index: 1;
      font-size: 18px;
      line-height: 1.9;
      color: #222222;
      font-weight: 600;
    }
    .ceo-text p {
      margin-bottom: 1em;
    }
    .ceo-text p:last-child {
      margin-bottom: 0;
    }
    .ceo-signature {
      position: relative;
      z-index: 1;
      margin-top: 24px;
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
    }

    /* ========== Positions Section ========== */
    .positions-section {
      position: relative;
      padding: 80px 0 60px;
      background: #fff;
      overflow: hidden;
    }
    .positions-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
    }
    .positions-heading {
      text-align: center;
      margin-bottom: 48px;
    }
    .positions-heading .heading-en {
      font-family: var(--font-en);
      font-size: 36px;
      font-weight: 700;
      color: #2B3A4E;
      letter-spacing: 4px;
      line-height: 1.2;
    }
    .positions-heading .heading-jp {
      font-size: 14px;
      color: var(--gray);
      margin-top: 4px;
      letter-spacing: 3px;
    }
    .positions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
    .position-card {
      text-align: left;
      cursor: pointer;
      transition: opacity 0.3s;
    }
    .position-card:hover { opacity: 0.75; }
    .position-thumb {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 10px;
      overflow: hidden;
      background: #E8E8E8;
      margin-bottom: 12px;
    }
    .position-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .position-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.5;
      margin-bottom: 8px;
      min-height: 42px;
    }
    .position-link {
      font-family: var(--font-en);
      font-size: 13px;
      font-weight: 600;
      color: #2B3A4E;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid #2B3A4E;
      padding-bottom: 2px;
    }
    .position-link::after {
      content: '→';
      transition: transform 0.3s;
    }
    .position-card:hover .position-link::after {
      transform: translateX(4px);
    }

    /* ========== Company Section ========== */
    .company-section {
      padding: 80px 0;
      background: #fff;
    }
    .company-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
    }
    .company-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 40px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .company-table tr {
      border-bottom: 1px solid #f0f0f0;
    }
    .company-table tr:last-child {
      border-bottom: none;
    }
    .company-table th {
      background: #2B3A4E;
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 18px 24px;
      text-align: left;
      width: 230px;
      vertical-align: top;
    }
    .company-table td {
      padding: 18px 24px;
      font-size: 15px;
      line-height: 1.8;
      vertical-align: top;
    }
    .company-table td a {
      color: var(--blue);
      text-decoration: underline;
    }

    /* ========== Entry Form Modal ========== */
    .entry-modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 3000;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    .entry-modal-overlay.active {
      display: flex;
    }
    .entry-modal {
      background: #fff;
      border-radius: 16px;
      max-width: 600px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      position: relative;
      animation: modalIn 0.3s ease;
      padding: 40px 36px;
    }
    .entry-modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: none;
      background: rgba(0,0,0,0.08);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #333;
      z-index: 10;
      transition: background 0.3s;
    }
    .entry-modal-close:hover { background: rgba(0,0,0,0.15); }
    .entry-modal-title {
      font-size: 20px;
      font-weight: 900;
      color: var(--orange);
      margin-bottom: 24px;
      text-align: center;
    }
    /* -- CF7 Custom Design -- */
    #entryFormArea .wpcf7-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    #entryFormArea .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    #entryFormArea .form-group label {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    #entryFormArea .form-group .required {
      background: var(--orange);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 3px;
      line-height: 1.4;
    }
    #entryFormArea .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 15px;
      font-family: var(--font-jp);
      color: var(--dark);
      background: #fafafa;
      transition: border-color 0.3s, box-shadow 0.3s;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }
    #entryFormArea .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(247,147,30,0.15);
      background: #fff;
    }
    #entryFormArea .wpcf7-form-control::placeholder {
      color: #bbb;
      font-size: 14px;
    }
    #entryFormArea select.wpcf7-form-control {
      background: #fafafa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 16px center;
      padding-right: 40px;
      cursor: pointer;
    }
    #entryFormArea textarea.wpcf7-form-control {
      min-height: 120px;
      resize: vertical;
    }
    #entryFormArea .wpcf7-list-item {
      margin: 0;
    }
    #entryFormArea .wpcf7-acceptance .wpcf7-list-item-label {
      font-size: 13px;
      color: var(--gray);
      cursor: pointer;
    }
    #entryFormArea .wpcf7-acceptance input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin-right: 8px;
      accent-color: var(--orange);
      cursor: pointer;
      vertical-align: middle;
    }
    #entryFormArea .wpcf7-submit {
      width: 100%;
      padding: 16px;
      background: var(--orange);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      font-family: var(--font-jp);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      letter-spacing: 2px;
      transition: all 0.3s;
      box-shadow: 0 4px 16px rgba(247,147,30,0.3);
    }
    #entryFormArea .wpcf7-submit:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(247,147,30,0.45);
    }
    #entryFormArea .wpcf7-submit:disabled {
      background: #ccc;
      box-shadow: none;
      cursor: not-allowed;
      transform: none;
    }
    #entryFormArea .wpcf7-spinner {
      display: block;
      margin: 8px auto 0;
    }
    #entryFormArea .wpcf7-response-output {
      border: none !important;
      padding: 12px 16px !important;
      margin: 8px 0 0 !important;
      border-radius: 8px;
      font-size: 14px;
      text-align: center;
    }
    #entryFormArea .wpcf7-mail-sent-ok,
    #entryFormArea .wpcf7 form.sent .wpcf7-response-output {
      background: #e8f5e9;
      color: #2e7d32;
    }
    #entryFormArea .wpcf7-validation-errors,
    #entryFormArea .wpcf7 form.invalid .wpcf7-response-output {
      background: #ffeef0;
      color: #d32f2f;
    }
    #entryFormArea .wpcf7-not-valid-tip {
      color: #d32f2f;
      font-size: 12px;
      margin-top: 4px;
      display: block;
    }
    #entryFormArea .wpcf7-not-valid {
      border-color: #d32f2f !important;
    }
    #entryFormArea .privacy-note {
      text-align: center;
      margin-top: -8px;
    }
    #entryFormArea .privacy-note a {
      color: var(--orange);
      text-decoration: underline;
      font-size: 13px;
    }
    #entryFormArea .privacy-note a:hover {
      color: var(--orange-dark);
    }

    @media (max-width: 768px) {
      .entry-modal-overlay { padding: 16px; }
      .entry-modal { padding: 32px 20px; max-height: 90vh; }
      #entryFormArea .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
        font-size: 16px;
        padding: 10px 14px;
      }
      #entryFormArea .wpcf7-submit {
        font-size: 15px;
        padding: 14px;
      }
    }

    /* ========== Entry CTA ========== */
    .entry-section {
      position: relative;
      padding: 60px 60px;
      background: #555 url(../recruit-image/cta-back.webp) center / cover no-repeat;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .entry-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(50, 50, 50, 0.7);
      pointer-events: none;
    }
    .entry-left {
      position: relative;
      z-index: 1;
    }
    .entry-left h2 {
      font-family: var(--font-en);
      font-size: 42px;
      font-weight: 900;
      font-style: italic;
      color: #fff;
      line-height: 1.2;
      letter-spacing: 1px;
    }
    .entry-left .entry-sub {
      font-family: var(--font-en);
      font-size: 14px;
      font-weight: 600;
      color: var(--orange);
      margin-top: 8px;
      letter-spacing: 2px;
    }
    .entry-right {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-end;
    }
    .entry-btn-positions {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: #fff;
      color: var(--orange);
      font-size: 15px;
      font-weight: 700;
      padding: 14px 20px 14px 28px;
      border-radius: 50px;
      transition: all 0.3s;
      border-left: 5px solid var(--orange);
      min-width: 220px;
      justify-content: space-between;
    }
    .entry-btn-positions:hover {
      transform: translateX(-4px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .entry-btn-positions .arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--orange);
      transition: all 0.3s;
    }
    .entry-btn-positions:hover .arrow {
      background: var(--orange);
      color: #fff;
    }
    .entry-btn {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: linear-gradient(135deg, #5ECBC5, #3BB8B0);
      color: #fff;
      font-family: var(--font-en);
      font-size: 20px;
      font-weight: 800;
      padding: 16px 20px 16px 32px;
      border-radius: 50px;
      transition: all 0.3s;
      letter-spacing: 3px;
      min-width: 220px;
      justify-content: space-between;
    }
    .entry-btn .arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.3s;
    }
    .entry-btn:hover {
      transform: translateX(-4px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    /* ========== Footer ========== */
    .footer {
      background: #fdf2e0;
      color: #fff;
      padding: 40px 0 24px;
      text-align: center;
    }
    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
    }
    .footer-logo {
      margin-bottom: 16px;
    }
    .footer-logo img {
      height: 32px;
      width: auto;
      margin: 0 auto;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: rgb(247, 147, 30);
      font-size: 13px;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-copy {
      font-size: 12px;
      color: rgb(247, 147, 30);
      margin-top: 16px;
    }

    /* ========== Animations ========== */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ================================================
       RESPONSIVE — Tablet (max-width: 1024px)
       ================================================ */
    @media (max-width: 1024px) {
      .header { padding: 10px 24px; }
      .header-nav { gap: 20px; }
      .header-nav a { font-size: 13px; }

      /* --- About --- */
      .about-header { padding: 0 40px; }
      .about-title-row h2 { font-size: 28px; }
      .numbers-title-row h2 { font-size: 28px; }

      .numbers-section { margin-top: 10rem; padding-top: 3rem; }
      .numbers-content { padding: 0 24px; }
      .data-card { padding: 28px 22px 24px; }

      .interview-section { padding: 60px 0 70px; }
      .interview-inner { padding: 0 24px; }
      .section-heading { padding-left: 24px; margin-bottom: 36px; }
      .section-heading h2 { font-size: 28px; }

      .positions-section { padding: 60px 0 50px; }
      .positions-inner { padding: 0 24px; }
      .positions-grid { gap: 18px; margin-top: 32px; }
      .position-title { font-size: 13px; }

      /* --- CEO --- */
      .ceo-header { padding: 32px 40px; }
      .ceo-title-row h2 { font-size: 24px; }
      .ceo-body-inner { padding: 0 40px 48px; gap: 30px; }

      .company-section { padding: 60px 0; }
      .company-inner { padding: 0 24px; }

      .entry-section { padding: 50px 24px; }
      .entry-left h2 { font-size: 36px; }

      .footer-inner { padding: 0 24px; }
    }

    /* ================================================
       RESPONSIVE — SP (max-width: 768px)
       ================================================ */
    @media (max-width: 768px) {

      /* --- PC/SP画像 切り替え --- */
      .pc-only { display: none !important; }
      .sp-only { display: block !important; }

      .section-img { width: 100%; }

      /* --- Header --- */
      .header { padding: 10px 16px; }
      .header-logo img { height: 26px; }
      .header-nav a:not(.header-entry-btn) { display: none; }
      .header-entry-btn {
        font-size: 18px;
        padding: 14px 60px;
        letter-spacing: 2px;
        box-shadow: 0 4px 0 var(--orange-dark), 0 6px 12px rgba(0,0,0,0.15);
      }
      .header-entry-btn:active {
        transform: translateY(3px);
        box-shadow: 0 1px 0 var(--orange-dark), 0 2px 4px rgba(0,0,0,0.1);
      }

      .hero { margin-top: 46px; }

      /* --- About --- */
      #about { padding: 40px 0 0; }
      .about-header { padding: 0 20px; }
      .about-title-row h2 { font-size: 24px; }
      .numbers-header { padding: 0 16px; }
      .numbers-title-row h2 { font-size: 24px; }
      .numbers-bg-text { left: 0px; top: 3%; width: 8%; }
      .about-subtitle { font-size: 14px; margin-bottom: 16px; }
      .about-subtitle br { display: none; }
      .about-bg-text { display: none; }
      .about-header { display: none; }

      /* --- Numbers --- */
      .numbers-section { margin-top: 2rem; padding-top: 2rem; padding-bottom: 40px; }
      .numbers-content { padding: 0 40px; width: 100%; }
      .numbers-sub-heading { font-size: 18px; margin: 24px 0 20px; }
      .data-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
      }
      .data-card { padding: 24px 20px 20px; }
      .gender-visual { gap: 24px; }
      .gender-figure .figure-body { width: 75px; height: 120px; }
      .gender-figure .figure-num { font-size: 20px; }
      .gender-big-nums .gnum span { font-size: 34px; }
      .gender-big-nums .gnum small { font-size: 18px; }
      .pie-chart { width: 140px; height: 140px; }
      .pie-label-20 .pie-pct { font-size: 22px; }
      .age-avg-block .avg-num { font-size: 34px; }

      /* perf images */
      .perf-section { margin-top: 16px; }
      .perf-img-row { margin-bottom: 12px; }
      .perf-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .perf-bottom-right { gap: 12px; }

      /* --- Interview --- */
      .interview-section { padding: 50px 0 60px; }
      .interview-inner { padding: 0 16px; }
      .section-heading { padding-left: 0; margin-bottom: 30px; }
      .section-heading h2 { font-size: 24px; }
      .member-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 40px;
        width: 100%;
      }
      .member-card .tap-badge .tap-circle { width: 48px; height: 48px; }
      .member-card .tap-badge .tap-circle svg { width: 22px; height: 22px; }
      .member-card .tap-badge .tap-text { font-size: 11px; letter-spacing: 2px; }

      /* --- Modal --- */
      .modal-overlay { padding: 16px; }
      .modal-content { max-width: 100%; max-height: 90vh; }
      .modal-body { padding: 24px 20px; }

      /* --- Positions --- */
      .positions-section { padding: 50px 0 40px; }
      .positions-inner { padding: 0 16px; }
      .positions-heading .heading-en { font-size: 26px; }
      .positions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 24px;
      }
      .position-thumb { aspect-ratio: 4/3; }
      .position-title { font-size: 13px; min-height: 36px; }

      /* --- CEO --- */
      .ceo-header { padding: 28px 20px; }
      .ceo-title-row h2 { font-size: 22px; }
      .ceo-body-inner {
        flex-direction: column;
        padding: 0 20px 40px;
        gap: 24px;
      }
      .ceo-photo-col {
        width: 60%;
        padding-top: 10%;
        margin: auto;
      }
      .ceo-text-col { padding-top: 0; padding-left: 10px; }
      .ceo-text { font-size: 14px; line-height: 2; }
      .ceo-chubby-bg { width: 8%; bottom: 3%; }
      .ceo-body-bg::before { width: 5%; }
      .ceo-body-bg::after { left: 5%; width: 95%; }

      /* --- Company --- */
      .company-section { padding: 50px 0; }
      .company-inner { padding: 0 16px; }
      .company-table th { width: 110px; padding: 14px 12px; font-size: 13px; }
      .company-table td { padding: 14px 12px; font-size: 13px; }

      /* --- Entry --- */
      .entry-section {
        padding: 40px 20px;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        text-align: center;
      }
      .entry-left h2 { font-size: 28px; }
      .entry-right { align-items: center; width: 70%; }
      .entry-btn-positions, .entry-btn {
        display: flex;
        width: 100%;
        min-width: auto;
        padding: 14px 20px 14px 28px;
        justify-content: space-between;
      }
      .entry-btn-positions { border-left: none; }
      .entry-btn { font-size: 16px; }

      /* --- Footer --- */
      .footer-inner { padding: 0 16px; }
      .footer-logo { font-size: 22px; }
    }

    /* ================================================
       RESPONSIVE — Small SP (max-width: 480px)
       ================================================ */
    @media (max-width: 480px) {
      .about-header { padding: 0 16px; }
      .about-title-row h2 { font-size: 20px; }
      .numbers-title-row h2 { font-size: 20px; }

      .positions-grid { grid-template-columns: 1fr; gap: 20px; }
      .member-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .data-card-title .q-icon { font-size: 28px; }
      .data-card-title h3 { font-size: 17px; }
      .entry-left h2 { font-size: 24px; }
      .entry-btn { font-size: 14px; padding: 14px 20px; padding-left: 30px; }
      .company-table th { width: 90px; padding: 12px 8px; font-size: 12px; }
      .company-table td { padding: 12px 8px; font-size: 12px; }
    }
