
    :root {
      --ink: #004b7d;
      --ink-deep: #003d68;
      --text: #101820;
      --muted: #61737b;
      --paper: #f2ffff;
      --white: #ffffff;
      --accent-pink: #df6fa4;
      --accent-yellow: #fff34a;
      --accent-green: #6bb273;
      --font-sans: "游ゴシック体", "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
      --font-body: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS PGothic", sans-serif;
      --font-mincho: "Shippori Mincho", serif;
      --radius: 22px;
      --content: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      background: var(--paper);
      font-family: var(--font-sans);
      font-size: 15px;
      letter-spacing: .05em;
      line-height: 1.7;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font: inherit; }

    .site-header {
      position: fixed;
      z-index: 20;
      inset: 0 0 auto;
      height: 88px;
      padding: 14px clamp(18px, 4vw, 52px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(242, 255, 255, .84);
      border-bottom: 1px solid rgba(0, 75, 125, .08);
      backdrop-filter: blur(12px);
    }

    #recruitPage .recruitHeader-logo {
      width: 40px;
      height: 40px;
      margin: 10px 0;
      flex: 0 0 40px;
      line-height: 0;
    }
    #recruitPage .recruitHeader-logo a,
    #recruitPage .recruitHeader-logo img {
      display: block;
      width: 100%;
      height: 100%;
    }
    #recruitPage .recruitHeader-logo img { object-fit: cover; }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
    }

    .brand__mark {
      width: 62px;
      height: 62px;
      display: block;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(0, 75, 125, .14);
    }
    .brand__mark img { width: 100%; height: 100%; object-fit: cover; }

    .global-nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 46px); }
    .global-nav a {
      position: relative;
      color: var(--ink-deep);
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.8;
      letter-spacing: .05em;
      white-space: nowrap;
    }
    .global-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -7px;
      height: 2px;
      background: var(--ink);
      transition: right .25s ease;
    }
    .global-nav a:hover::after { right: 0; }

    .hero,
    .site-main { position: relative; }

    .hero {
      min-height: 1120px;
      padding: 90px 20px 50px;
      isolation: isolate;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      z-index: -2;
      inset: 0 -12vw 0 -10vw;
      background:
        linear-gradient(155deg, transparent 19%, rgba(83, 197, 213, .12) 19.2% 22%, transparent 22.2%),
        linear-gradient(155deg, transparent 28%, rgba(54, 172, 208, .17) 28.2% 30%, transparent 30.2%),
        linear-gradient(155deg, transparent 36%, rgba(151, 220, 187, .17) 36.2% 37.5%, transparent 37.7%);
      transform: rotate(-1deg);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: -1;
      width: 240px;
      height: 170px;
      right: 4%;
      bottom: 8%;
      opacity: .32;
      background: url("../images/texture-blue.png") center / cover;
      filter: saturate(.7);
    }

    .hero__copy { max-width: 1000px; margin: 0 auto 50px; text-align: center; }
    .hero__copy h1 {
      margin: 0;
      color: #050505;
      font-family: var(--font-mincho);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 600;
      letter-spacing: .05em;
      line-height: 1.55;
    }
    .hero__copy h1 span { display: block; }

    .hero__visual { max-width: 890px; margin: 0 auto; position: relative; }
    .video-gallery {
      width: min(100%, 680px);
      height: 498px;
      position: relative;
      margin: 0 auto;
    }
    .video-card {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 50%;
      width: 280px;
      height: 100%;
      overflow: hidden;
      border-radius: 0;
      background: #dfe9eb;
      box-shadow: 0 18px 40px rgba(0, 56, 85, .13);
      transition: transform .6s cubic-bezier(.22, .61, .36, 1), opacity .6s ease;
      transform-origin: center center;
      cursor: pointer;
    }
    .video-card { margin: 0; }
    .video-card > img { width: 100%; height: 100%; object-fit: cover; }
    .video-card__movie { position: absolute; z-index: 2; inset: 0; display: none; background: #000; }
    .video-card__movie iframe { display: block; width: 100%; height: 100%; border: 0; }
    .video-card.is-playing .video-card__movie { display: block; }
    .video-card--left { opacity: 1; transform: translateX(-360px) scale(.7); }
    .video-card--center { z-index: 100; opacity: 1; transform: translateX(-50%) scale(1); }
    .video-card--right { opacity: 1; transform: translateX(80px) scale(.7); }
    .video-card--off { opacity: 0; transform: translateX(300px) scale(.7); }
    .video-card--main img { object-position: center; }
    .video-gallery.is-next .video-card--left { transform: translateX(-580px) scale(.7); opacity: 0; }
    .video-gallery.is-next .video-card--center { transform: translateX(-360px) scale(.7); opacity: 1; }
    .video-gallery.is-next .video-card--right { transform: translateX(-50%) scale(1); opacity: 1; }
    .video-gallery.is-next .video-card--off { transform: translateX(80px) scale(.7); opacity: 1; }
    .video-gallery.is-prev .video-card--left { transform: translateX(-50%) scale(1); opacity: 1; }
    .video-gallery.is-prev .video-card--center { transform: translateX(80px) scale(.7); opacity: 1; }
    .video-gallery.is-prev .video-card--right { transform: translateX(300px) scale(.7); opacity: 0; }
    .video-gallery.is-prev .video-card--off { transform: translateX(-360px) scale(.7); opacity: 1; }
    .video-gallery.is-prev-setup .video-card--off { transform: translateX(-580px) scale(.7); opacity: 0; }
    .video-gallery.is-resetting .video-card { transition: none; }
    .gallery-arrow {
      position: absolute;
      z-index: 4;
      top: 50%;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 50%;
      color: var(--white);
      background: var(--ink);
      font-size: 16px;
      font-weight: 700;
      transform: translateY(-50%);
      cursor: pointer;
    }
    .gallery-arrow--prev { left: 22%; }
    .gallery-arrow--next { right: 22%; }
    .hero__person { position: absolute; z-index: 0; pointer-events: none; filter: drop-shadow(0 16px 12px rgba(0, 55, 80, .1)); }
    .hero__person img { width: 100%; height: 100%; object-fit: contain; }
    .hero__person--phone { width: 140px; left: -17%; top: 24%; }
    .hero__person--woman { width: 128px; right: -20%; top: 7%; }
    .hero__person--manager { width: 130px; right: -19%; top: 55%; }
    .hero__person--run { width: 150px; left: -17%; top: 68%; }
    .hero__person--standing { width: 103px; right: -12%; top: 34%; }
    .hero__person--fist { width: 120px; right: -23%; top: 76%; }

    .hero__message {
      width: min(100%, 900px);
      margin: 100px auto 0;
      text-align: center;
      writing-mode: horizontal-tb;
      font-family: var(--font-sans);
      font-weight: 600;
      letter-spacing: .12em;
    }
    .hero__message p { margin: 0; font-size: 24px; font-weight: inherit; line-height: 1.8; }
    .hero__message p + p { margin-top: 32px; }
    .hero__message .idea-list {
      margin: 40px 0;
      color: var(--ink-deep);
      font-size: 28px;
      font-weight: 700;
      line-height: 1.7;
      letter-spacing: .16em;
    }
    .hero__message .idea-list span { display: block; }
    .hero__message .hero__message-catch {
      margin-top: 48px;
      font-size: 30px;
      font-weight: 700;
    }

    .hero__message-catch span { display: inline-block; }

    .news {
      width: min(100%, 860px);
      margin: 48px auto 0;
      padding: 20px 34px 18px;
      background: rgba(255, 255, 255, .92);
      border: 1px solid rgba(0, 0, 0, .45);
      font-family: var(--font-sans);
    }
    #recruitPage .news h2,
    #recruitPage .news__item,
    #recruitPage .news__item time,
    #recruitPage .news__item span { font-family: var(--font-sans); }
    .news h2 { margin: 0 0 12px; text-align: center; font-size: 24px; font-weight: 700; line-height: 1.5; }
    .news__item,
    .news__item:link,
    .news__item:visited,
    .news__item:hover,
    .news__item:active { text-decoration: none !important; }
    .news__item { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 10px 0; color: inherit; border-bottom: 1px solid #a9a9a9; font-size: 15px; line-height: 1.7; }
    .news__item:hover { color: var(--ink); background: rgba(255, 255, 255, .55); }
    .news__item:last-child { border-bottom: 0; }

    .content-section { position: relative; padding: 50px 20px; overflow: hidden; }
    .content-section::before {
      content: "";
      position: absolute;
      z-index: -1;
      width: 170px;
      height: 170px;
      left: 2%;
      top: 22%;
      opacity: .22;
      background: url("../images/texture-blue.png") center / cover;
      transform: rotate(-8deg);
    }
    .section-heading { margin-bottom: 44px; text-align: center; }
    .section-heading h2 { margin: 0; color: var(--ink); font-family: var(--font-sans); font-size: clamp(32px, 3.6vw, 45px); font-weight: 700; line-height: 1.8; letter-spacing: 0; }
    .section-heading p { margin: 10px 0 0; font-size: 15px; line-height: 1.8; }
    .section-inner { width: min(100%, var(--content)); margin: auto; }
    .section-visual { width: min(100%, 820px); margin: auto; }
    .photo-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; }
    .photo-pair img { width: 100%; aspect-ratio: 1.48; object-fit: cover; }
    .detail-button {
      width: min(100%, 760px);
      min-height: 58px;
      margin: 38px auto 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: #666;
      background: rgba(255, 255, 255, .18);
      border: 1px solid #777;
      border-radius: 999px;
      font-size: 15px;
      line-height: 1.8;
      transition: background .2s ease, color .2s ease;
    }
    .detail-button::after { content: "▶"; position: absolute; right: 27px; font-size: .8em; }
    .detail-button:hover { color: var(--ink); background: rgba(255, 255, 255, .72); }

    .work-section { padding-top: 50px; }
    .media-placeholder {
      display: block;
      width: 100%;
      height: auto;
      margin: auto;
      object-fit: contain;
      box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    }

    .team-section { padding-top: 50px; }
    .team-list { display: grid; grid-template-columns: repeat(5, minmax(160px, 1fr)); gap: 22px; }
    .team-card { position: relative; min-width: 0; overflow: hidden; background: #e4f3f4; }
    .team-card img { display: block; width: 100%; height: auto; }
    .team-card__label { position: absolute; left: 0; right: 12px; bottom: 12px; padding: 6px 14px; color: var(--white); background: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.8; }

    .benefits-section {
      padding-top: 50px;
      padding-bottom: 50px;
      background: linear-gradient(180deg, transparent 0 8%, rgba(221, 246, 207, .28) 8% 88%, transparent 88%);
    }
    .benefits-section::after {
      content: "";
      position: absolute;
      z-index: -1;
      width: min(1200px, 100vw);
      height: 470px;
      left: 50%;
      top: 66px;
      border-radius: 50% 50% 0 0;
      background: url("../images/gradient-circle.png") center / cover no-repeat;
      opacity: .34;
      transform: translateX(-50%);
    }
    .benefit-grid { width: min(100%, 1000px); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .benefit-card { min-height: 330px; padding: 12px; background: rgba(255, 255, 255, .86); box-shadow: 0 8px 18px rgba(0, 70, 85, .08); }
    .benefit-card__inner { height: 100%; padding: 8px; border: 2px dashed #999; }
    .benefit-card--personnel,
    .benefit-card--personnel .benefit-card__inner { background: #fdf9f3; }
    .benefit-card--environment,
    .benefit-card--environment .benefit-card__inner { background: #fdfaf2; }
    .benefit-card--welfare,
    .benefit-card--welfare .benefit-card__inner { background: #fdfcf5; }
    .benefit-card--personnel .benefit-card__inner,
    .benefit-card--environment .benefit-card__inner,
    .benefit-card--welfare .benefit-card__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
    .benefit-card__image { display: block; width: 200px; height: 200px; object-fit: cover; border-radius: 12px; }
    .benefit-card h3 { margin: 0; color: #626262; text-align: center; font-size: 27px; font-weight: 700; line-height: 1.8; }

    .recruit-section { padding-top: 50px; padding-bottom: 50px; }
    .recruit-section .section-heading { margin-bottom: 0; }
    .recruit-section .detail-button { margin-top: 28px; }

    .social-section { padding-top: 50px; padding-bottom: 50px; }
    .social-block { margin: 0 auto 64px; }
    .social-block:last-child { margin-bottom: 0; }
    .social-heading { position: relative; padding: 14px 20px 11px; text-align: center; background: var(--white); border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-image: linear-gradient(90deg, var(--accent-pink), var(--accent-yellow), var(--accent-green)) 1; }
    .social-heading--note { border-image: linear-gradient(90deg, var(--ink), #4ea5c8, var(--ink)) 1; }
    .social-heading h2 { margin: 0; font-size: 27px; font-weight: 700; line-height: 1.8; }
    .social-heading p { margin: 5px 0 0; font-size: 15px; line-height: 1.8; }
    .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 26px; }
    .social-grid--note { grid-template-columns: repeat(3, 1fr); }
    .social-card { display: block; min-height: 260px; position: relative; overflow: hidden; color: inherit; text-decoration: none; border-radius: 14px; background: #b9b9b9; box-shadow: 0 10px 20px rgba(0, 0, 0, .18); }
    .social-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .social-grid--note .social-card { min-height: 0; }
    .social-grid--note .social-card img { position: static; width: 100%; height: auto; object-fit: contain; }
    .social-grid--note .social-card::after { content: none; }
    .social-grid--instagram .social-card { min-height: 0; aspect-ratio: 4 / 5; background: transparent; border-radius: 0; box-shadow: none; }
    .social-grid--instagram .social-card img { object-fit: contain; background: none; }
    .social-grid--instagram .social-card::after { content: none; }
    .social-card::after { content: ""; position: absolute; right: 0; bottom: 0; border-bottom: 40px solid var(--white); border-left: 40px solid transparent; }
    .social-card--accent { background: linear-gradient(145deg, #f3d3e4, #c7f4e7); }

    .site-footer { padding: 40px 20px 54px; color: var(--white); text-align: center; background: var(--ink-deep); }
    .site-footer p { margin: 0; font-size: 13px; letter-spacing: .08em; }

    @media (max-width: 900px) {
      .hero { padding-top: 56px; min-height: 980px; }
      .hero__person--phone { left: -8%; }
      .hero__person--woman { right: -7%; }
      .hero__person--manager { right: -3%; }
      .hero__person--run { left: -7%; }
      .hero__person--standing { right: -2%; }
      .hero__person--fist { right: -8%; }
      .team-list { grid-template-columns: repeat(5, minmax(145px, 1fr)); overflow-x: auto; padding-bottom: 12px; }
    }

    @media (max-width: 768px) {
      #recruitPage .recruitHeader-logo { margin: 11px 0 11px; }
      .hero { padding-top: 106px; }
    }

    @media (max-width: 620px) {
      .hero { min-height: 960px; padding: 106px 14px 60px; }
      .hero__copy { margin-bottom: 34px; }
      .hero__copy h1 { font-size: 30px; letter-spacing: .01em; }
      .video-gallery { display: block; width: 75%; height: min(100vw, 420px); }
      .video-card { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }
      .video-card--left,
      .video-card--right,
      .video-card--off { opacity: 0; transform: translateX(120%) scale(.88); }
      .video-card--center { opacity: 1; transform: translateX(0) scale(1); }
      .video-gallery.is-next .video-card--left { transform: translateX(-120%) scale(.88); opacity: 0; }
      .video-gallery.is-next .video-card--center { transform: translateX(-120%) scale(1); opacity: 0; }
      .video-gallery.is-next .video-card--right { transform: translateX(0) scale(1); opacity: 1; }
      .video-gallery.is-next .video-card--off { transform: translateX(120%) scale(.88); opacity: 0; }
      .video-gallery.is-prev .video-card--left { transform: translateX(0) scale(1); opacity: 1; }
      .video-gallery.is-prev .video-card--center { transform: translateX(120%) scale(1); opacity: 0; }
      .video-gallery.is-prev .video-card--right { transform: translateX(120%) scale(.88); opacity: 0; }
      .video-gallery.is-prev .video-card--off { transform: translateX(-120%) scale(.88); opacity: .3; }
      .video-gallery.is-prev-setup .video-card--off { transform: translateX(-240%) scale(.88); opacity: 0; }
      .gallery-arrow--prev { left: 0; }
      .gallery-arrow--next { right: 0; }
      .gallery-arrow { width: 34px; height: 34px; font-size: 18px; }
      .hero__person { opacity: .88; }
      .hero__person--phone { width: 72px; left: -3%; top: 16%; }
      .hero__person--woman { width: 74px; right: -2%; top: 8%; }
      .hero__person--manager { width: 73px; right: 0; top: 41%; }
      .hero__person--run { width: 80px; left: -3%; top: 52%; }
      .hero__person--standing { width: 65px; right: -1%; top: 29%; }
      .hero__person--fist { width: 65px; right: -3%; top: 59%; }
      .hero__message {
        width: 100%;
        height: auto;
        margin-top: 34px;
        text-align: center;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        display: block;
        letter-spacing: .05em;
      }
      .hero__message p { font-size: 17px; }
      .hero__message p { margin: 0 0 26px; }
      .hero__message p + p { margin-top: 34px; }
      .hero__message .hero__message-catch { margin: 38px 0 0; font-size: 21px; }
      .hero__message .idea-list {
        margin: 30px 0;
        font-size: 17px;
        line-height: 1.65;
        letter-spacing: .05em;
      }
      .news { margin-top: 30px; padding: 14px 15px; }
      .news h2 { font-size: 20px; }
      .news__item { grid-template-columns: 96px 1fr; gap: 8px; font-size: 11px; }
      .content-section { padding: 62px 14px; }
      .section-heading { margin-bottom: 28px; }
      .section-heading h2 { font-size: 34px; }
      .section-heading p { font-size: 14px; }
      .photo-pair { gap: 10px; }
      .detail-button { min-height: 48px; margin-top: 24px; font-size: 20px; }
      .detail-button::after { right: 16px; }
      .team-list { gap: 12px; grid-template-columns: repeat(5, 132px); }
      .team-card__label { right: 0; bottom: 6px; padding: 4px 6px; font-size: 9px; }
      .benefits-section { padding-top: 96px; padding-bottom: 76px; }
      .benefits-section::after { height: 300px; top: 34px; }
      .benefit-grid { grid-template-columns: 1fr; gap: 14px; }
      .benefit-card { min-height: 160px; }
      .benefit-card__image { width: 105px; height: 105px; border-radius: 8px; }
      .benefit-card h3 { font-size: 22px; }
      .recruit-section { padding-top: 52px; }
      .social-section { padding-bottom: 74px; }
      .social-block { margin-bottom: 38px; }
      .social-heading { padding: 10px 10px 8px; }
      .social-heading h2 { font-size: 21px; }
      .social-heading p { font-size: 12px; line-height: 1.4; }
      .social-grid, .social-grid--note { gap: 9px; margin-top: 14px; }
      .social-card { min-height: 150px; border-radius: 8px; }
    }
