@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@300;400&display=swap');
    .site-header {
      position: sticky;
      top: 0;
      background-color: #ffffff;
      border-bottom: 1px solid #dddddd;
      color: black;
      width: 100%;
      z-index: 100;
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      min-height: 25px;
    }
    .header-inner {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }
    .logo-area {
        display: flex;
        align-items: center;
        position: fixed;
        text-decoration: none;
        top: 10px;
        left: 30px;
        height: 50px;
        z-index: 100;
    }
    .site-logo {
        position: static;
        margin-right: 10px;
        height: 50px;
    }
    .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
        align-items: center;
    }
    .company-name {
      font-size: 1.5em;
      font-family: 'Orbitron', sans-serif;
      font-weight: bold;
      color: gray;
    }
    .recruit-text {
      font-size: 1.2em;
      font-family: 'Orbitron', sans-serif;
      font-weight: bold;
      color: gray;
    }
    .no-hero .site-header {
      position: fixed;
      top: 0;
      background-color: #ffffff;
      border-bottom: 1px solid #dddddd;
    }
    .main-nav {
      display: flex;
      gap: 20px;
      position: absolute;
      top: 20px;
      right: 30px;
    }
    .main-nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: bold;
      transition: color 0.2s;
    }
    .main-nav a:hover {
      color: #ff6600;
    }
    .dropdown {
      position: relative;
      display: inline-block;
    }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #ffffff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      min-width: 160px;
      z-index: 1000;
      flex-direction: column;
      padding: 8px 0;
      border: 1px solid #eee;
    }
    .dropdown-menu a {
      display: block;
      padding: 10px 0 10px 0;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }
    .dropdown-menu a:hover {
      background-color: #f5f5f5;
    }
    .dropdown:hover .dropdown-menu {
      display: block;
    }
    .hamburger, .mobile-nav {
      display: none;
    }
    body {
      font-family: sans-serif;
      padding: 0;
      /* max-width: 800px; */
      margin: auto;
      background: #fff;
    }
    body.no-hero {
      padding-top: 80px;
    }
    a.back-link {
      display: inline-block;
      margin-bottom: 20px;
      color: #FF6600;
      text-decoration: none;
      font-weight: bold;
    }
    .profile {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
      padding: 20px;
    }
    .profile img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
    }
    .profile-info h2 {
      margin: 0;
      font-size: 1.6em;
      color: #333;
    }
    .profile-info p {
      margin: 6px 0;
      font-size: 0.95em;
      color: #666;
    }
    .qa {
      margin-bottom: 40px;
    }
    .qa h3 {
      font-size: 1.2em;
      color: #FF6600;
      margin-bottom: 8px;
    }
    .qa p {
      font-size: 1em;
      line-height: 1.6;
      color: #333;
    }
    .gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }
    .gallery img {
      width: calc(50% - 5px);
      border-radius: 8px;
      margin-bottom: 30px;
    }
    .interview-nav {
      display: flex;
      justify-content: space-between;
      margin: 60px auto 20px;
      max-width: 800px;
      padding: 20px;
      border-top: 1px solid #ccc;
      font-size: 1em;
    }
    .interview-nav a {
      text-decoration: none;
      color: #FF6600;
      font-weight: bold;
      transition: color 0.2s;
    }
    .interview-nav a:hover {
      color: #e55500;
    }
    .section-wrapper {
      max-width: 800px;
      margin: 0 auto;
    }
    footer {
      background-color: #1a73e8;
      color: #ffffff;
      text-align: center;
      padding: 40px 20px;
      position: relative;
    }
    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
    }
    .footer-logo {
      max-height: 40px;
      margin-bottom: 15px;
    }
    footer p {
      font-size: 0.95em;
      line-height: 1.6;
    }
    .corporate-link {
      position: absolute;
      bottom: 10px;
      right: 20px;
    }
    .corporate-link a {
      color: #ffffff;
      font-weight: underline;
      text-decoration: underline;
      font-size: 1.2em;
    }
    .corporate-link a:hover {
      color: #e55500;
    }
    .corporate-link a[target=_blank][rel=nofollow] {
      padding-right: 20px;
      background: url(../images/icons8-外部リンク-24.png) right center/11px auto no-repeat;
      text-decoration: underline;
    }

    @media (max-width: 1280px) {
      .site-header {
        padding: 8px 0;
      }
      .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        min-height: 60px;
      }
      .main-nav {
        display: none !important;
      }
      .hamburger {
        display: block;
        font-size: 2em;
        cursor: pointer;
        color: #333;
        position: absolute;
        top: 12px;
        right: 16px;
        z-index: 1100;
      }
      .mobile-nav {
        display: none;
        flex-direction: column;
        background: #ffffff;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 150;
      }
      .mobile-nav a {
        padding: 15px;
        text-decoration: none;
        color: #333;
        border-bottom: 1px solid #eee;
        font-weight: bold;
      }
      .mobile-nav a:hover {
        background-color: #f9f9f9;
      }
      .mobile-nav.active {
        display: flex;
      }
      .main-nav.active {
        display: flex;
      }
      .main-nav a {
        margin: 10px 0;
      }
      .site-logo {
        height: 35px;
      }
      .logo-text {
        line-height: 1.1;
      }
      .company-name {
        font-size: 1.3em;
      }
      .recruit-text {
        font-size: 0.9em;
      }
      .interview-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
      }
      .interview-nav .list {
        order: 3;
      }
      .interview-nav .prev {
        order: 1;
      }
      .interview-nav .next {
        order: 2;
      }
    }