  @charset "UTF-8";

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

  a {
      text-decoration: none;
  }

  .recruit-main {
      font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
      line-height: 1.7;
      color: #333;
      min-height: 100vh;
      padding: 20px 0;
      counter-reset: section;
  }

  .recruit-container {
      max-width: 1000px;
      margin: 0 auto;
      background: white;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-radius: 15px;
      overflow: hidden;
  }

  .recruit-header {
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      color: white;
      padding: 40px 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .recruit-header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: url(../../images/saiyou-top.webp);
      background-position: center;
      background-size: 80%;
      pointer-events: none;
  }

  .recruit-header::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.7);

  }

  .recruit-header h1 {
      font-size: 2.2em;
      margin-bottom: 10px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 2;
  }

  .recruit-header .recruit-subtitle {
      font-size: 1.5em;
      opacity: 0.9;
      position: relative;
      z-index: 2;
      font-weight: 600;
  }

  .recruit-content {
      padding: 40px 30px;
  }

  .recruit-section {
      margin-bottom: 40px;
      background: #f8f9fa;
      border-radius: 12px;
      padding: 30px;
      border-left: 5px solid #ff6b6b;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .recruit-section h2 {
      color: #2c3e50;
      font-size: 1.5em;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #ff6b6b;
      display: flex;
      align-items: center;
  }

  .recruit-section h2::before {
      content: counter(section);
      counter-increment: section;
      background: #ff6b6b;
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 16%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      font-weight: bold;
      font-size: 0.9em;
      min-width: 30px;
  }

  .recruit-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .recruit-th,
  .recruit-td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid #e0e0e0;
  }

  .recruit-w5 {
      width: 5%;
  }

  .recruit-w20 {
      width: 20%;
  }

  .recruit-w40 {
      width: 40%;
  }

  .recruit-w45 {
      width: 45%;
  }

  .recruit-w100 {
      width: 100%;
  }

  .recruit-t-center {
      text-align: center;
  }

  .recruit-ver-rl {
      writing-mode: vertical-lr;
  }

  .recruit-pad-10 {
      padding-left: 10%;
  }

  .recruit-tbody p {
      font-size: 0.6em;
  }

  .recruit-procedure-table {
      table-layout: auto;
      width: 100%;
  }

  .recruit-procedure-table th,
  .recruit-procedure-table td {
      word-break: break-word;
      font-size: clamp(12px, 2.5vw, 16px);
      /* 画面に応じて縮小 */
      padding: 10px 8px;
  }

  .recruit-th {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }


  .recruit-highlight {
      background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
      padding: 15px;
      border-radius: 8px;
      margin: 15px 0;
      border-left: 4px solid #e17055;
      font-weight: 500;
  }

  .recruit-important {
      background: linear-gradient(135deg, #fd79a8, #e84393);
      color: white;
      padding: 15px;
      border-radius: 8px;
      margin: 15px 0;
      font-weight: 500;
  }

  .recruit-note {
      background: #e3f2fd;
      padding: 15px;
      border-radius: 8px;
      margin: 15px 0;
      border-left: 4px solid #2196f3;
      font-size: 0.95em;
  }

  .recruit-ul,
  .recruit-ol {
      margin: 15px 0;
      padding-left: 25px;
  }

  .recruit-li {
      margin: 8px 0;
      position: relative;
  }

  .recruit-li::marker {
      color: #ff6b6b;
      font-weight: bold;
  }

  .recruit-contact-info {
      background: linear-gradient(135deg, #00b894, #00a085);
      color: white;
      padding: 25px;
      border-radius: 12px;
      margin: 25px 0;
      text-align: center;
  }

  .recruit-bg-blue {
      background: linear-gradient(135deg, #0040b8, #000ba0);

  }

  .recruit-contact-info h3 {
      margin-bottom: 15px;
      font-size: 1.3em;
  }

  .recruit-contact-info a,
  .recruit-flow-step a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      border-bottom: 2px solid rgba(255, 255, 255, 0.3);
      transition: border-color 0.3s ease;
  }

  .recruit-contact-info a:hover {
      border-color: #fff;
  }

  .recruit-salary-example {
      background: linear-gradient(135deg, #a29bfe, #6c5ce7);
      color: white;
      padding: 20px;
      border-radius: 12px;
      margin: 20px 0;
      font-weight: 600;
  }

  .recruit-process-flow {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 30px 0;
      flex-wrap: wrap;
  }

  .recruit-process-step {
      background: white;
      border: 3px solid #ff6b6b;
      border-radius: 50px;
      padding: 15px 25px;
      margin: 10px;
      font-weight: bold;
      color: #ff6b6b;
      position: relative;
      flex: 1;
      min-width: 150px;
      text-align: center;
      transition: all 0.3s ease;
  }

  .recruit-process-step:hover {
      background: #ff6b6b;
      color: white;
      transform: scale(1.05);
  }

  .recruit-process-step::after {
      content: '→';
      position: absolute;
      right: -20px;
      color: #ff6b6b;
      font-size: 1.5em;
      font-weight: bold;
  }

  .recruit-process-step:last-child::after {
      display: none;

  }

  .recruit-flow-container {
      padding: 30px 20px;
      background: #fafafa;
  }

  .recruit-flow-chart {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
  }

  .recruit-flow-step {
      background: #6366f1;
      color: white;
      padding: 12px 20px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      width: 95%;
      min-width: 180px;
      box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
      position: relative;
  }

  .recruit-flow-step h3 {
      font-size: clamp(14px, 1.8vw, 30px);
  }

  .recruit-flow-step p {
      font-size: clamp(10px, 1.8vw, 18px);
      margin-top: 10px;
  }

  .recruit-arrow {
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 12px solid #6366f1;
      opacity: 0.8;
  }

  .recruit-footer {
      background: #2d3436;
      color: white;
      padding: 30px;
      text-align: center;
      margin-top: 40px;
  }

  .recruit-tab-br {
      display: none;
  }

  .srecruit-p-br {
      display: none;
  }

  .recruit-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      display: flex;
      align-items: center;
      z-index: 100;
      text-align: center;
  }

  .recruit-sidebar-item {
      margin-bottom: 5px;
      border-radius: 3px;
      width: 60px;
      height: 200px;
  }

  .recruit-sidebar-item a {
      width: 100%;
      height: 100%;
      display: inline-block;
      transition: 0.5s;
      font-size: 1em;
      display: flex;
      /* ← ここをinline-blockからflexに */
      justify-content: center;
      /* 横中央 */
      align-items: center;
      text-decoration: none;
      color: white;
  }

  .recruit-sidebar-item:nth-child(1) {
      background-color: #0040b8;
      border: solid 1px #0040b8;
      transition: 0.5s;
  }

  .recruit-sidebar-item:nth-child(2) {
      background-color: #377954;
      border: solid 1px #377954;
  }

  .recruit-sidebar-item:nth-child(3) {
      background-color: #ff6b6b;
      border: solid 1px #ff6b6b;
  }

  .recruit-sidebar-item:hover {
      transition: 0.5s;
      background-color: white;
  }

  /* 1番目のボックス */
  .recruit-sidebar-item:nth-child(1):hover {
      background-color: white;
      transition: 0.5s;

  }

  .recruit-sidebar-item:nth-child(1):hover a {
      color: #0040b8;
      transition: 0.5s;

  }

  /* 2番目のボックス */
  .recruit-sidebar-item:nth-child(2):hover {
      background-color: white;
      transition: 0.5s;

  }

  .recruit-sidebar-item:nth-child(2):hover a {
      color: #377954;
      transition: 0.5s;

  }

  /* 3番目のボックス */
  .recruit-sidebar-item:nth-child(3):hover {
      background-color: white;
      transition: 0.5s;

  }

  .recruit-sidebar-item:nth-child(3):hover a {
      color: #ff6b6b;
      transition: 0.5s;

  }
          .copy-write {
            text-align: center;
            font-size: 8px;
        }


  @media (max-width: 1020px) {
      .recruit-sidebar {
          display: none;
      }
  }

  @media (max-width: 768px) {
      .recruit-container {
          margin: 10px;
          border-radius: 10px;
      }

      .recruit-contact-info h3 {
          margin-bottom: 10px;
          font-size: 1em;
      }

      .recruit-contact-info p {
          font-size: 0.8em;
      }

      .recruit-header {
          padding: 30px 20px;
      }

      .recruit-header h1 {
          font-size: 1.8em;
      }

      .recruit-content {
          padding: 30px 20px;
      }

      .recruit-section {
          padding: 20px;
      }

      .recruit-section h2 {
          font-size: 1.2em;
      }

      .recruit-process-flow {
          flex-direction: column;
      }

      .recruit-process-step::after {
          content: '↓';
          right: auto;
          bottom: -20px;
      }

      .recruit-table {
          font-size: 0.9em;
      }

      .recruit-th,
      .recruit-td {
          padding: 10px 8px;
      }

      .recruit-tab-br {
          display: block;
      }


  }

  @media (max-width: 480px) {
      .recruit-sp-br {
          display: block;
      }

      .recruit-section h2 {
          font-size: 0.8em;
      }

      .recruit-contact-info {
          padding: 15px;
      }

      .recruit-contact-info h3 {
          margin-bottom: 6px;
          font-size: 0.8em;
      }

      .recruit-contact-info p {
          font-size: 0.6em;
      }

      .recruit-flow-step p {
          text-align: left;
      }
  }

  .recruit-qr-placeholder {
      width: 80px;
      height: 80px;
      background: #ddd;
      border: 2px dashed #999;
      display: inline-block;
      margin: 10px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8em;
      color: #666;
      text-align: center;
  }

  .recruit-table-wrapper {
      width: 100%;
      overflow-x: auto;
  }

  @media (max-width: 480px) {
      #recruit-table {
          min-width: 600px;
          /* 任意の見やすい幅に調整 */
      }
  }