* { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    color: #1a2540;
    line-height: 1.7;
    background: #fff;
  }
  :root {
    --teal: #0E8C8F;
    --teal-dark: #0D5C61;
    --teal-light: #E8F5F5;
    --navy: #1a2540;
    --gray-bg: #F5F7F8;
    --gray-border: #E5E7EB;
    --gray-text: #6B7280;
    --orange: #F59E0B;
  }
  .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  .container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
  a { color: inherit; }

  /* === Reference chip (review mode - hidden for production preview) === */
  .ref-chip {
    display: none;
    padding: 4px 10px; background: #FEF3C7;
    color: #92400E; font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
    border-radius: 4px; margin-bottom: 16px;
  }
  .ref-chip::before { content: "参考: "; opacity: 0.7; }
  .review-banner {
    display: none;
    background: #FEF3C7; color: #92400E; padding: 12px 24px;
    text-align: center; font-size: 13px; font-weight: 600;
  }

  /* === Placeholder (本番プレビュー: 装飾オフ・テキストのみ残す) === */
  .ph { background: transparent; padding: 0; border-radius: 0; font-weight: inherit; color: inherit; }

  /* === Header === */
  header {
    border-bottom: 1px solid var(--gray-border);
    padding: 14px 0;
    position: sticky; top: 0; background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px); z-index: 100;
  }
  header .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
  .logo { font-size: 18px; font-weight: 800; letter-spacing: 0.05em; }
  .logo span { color: var(--teal); }
  .top-nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
  .top-nav a {
    text-decoration: none; color: var(--navy);
    font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .top-nav a:hover { color: var(--teal); }
  @media (max-width: 900px) { .top-nav { display: none; } }
  .header-cta {
    background: var(--teal); color: #fff; padding: 10px 20px;
    border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 14px;
    white-space: nowrap;
  }

  /* anchor scroll offset (sticky header対応) */
  section[id], [id="apply"] { scroll-margin-top: 72px; }

  /* === Section common === */
  section { padding: 56px 0; }
  section.alt { background: var(--teal-light); }
  section.vision-section {
    position: relative;
    background: var(--teal-dark);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
  }
  section.vision-section::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url('images/vision_bg.jpg');
    background-size: cover; background-position: center;
    opacity: 0.42;
    z-index: 0;
    animation: vision-bg-drift 22s ease-in-out infinite alternate;
    will-change: transform;
  }
  section.vision-section > .container { position: relative; z-index: 1; }
  @keyframes vision-bg-drift {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.08) translate(-2%, -1.5%); }
  }
  @media (prefers-reduced-motion: reduce) {
    section.vision-section::before { animation: none; }
  }
  section.vision-products { padding: 16px 0 56px; }
  .section-tag {
    display: block; text-align: center; color: var(--teal);
    font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
    margin-bottom: 10px;
  }
  .section-title {
    text-align: center; font-size: 30px; font-weight: 800;
    margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.35;
  }
  .section-lead {
    text-align: center; color: var(--gray-text);
    max-width: 640px; margin: 0 auto 32px; font-size: 15px;
  }

  /* === 1. FV === */
  .fv {
    padding: 48px 0 40px;
    background:
      linear-gradient(135deg, rgba(13,92,97,0.78) 0%, rgba(14,140,143,0.62) 100%),
      url('images/fv_psa_staff.webp') center / cover no-repeat;
    text-align: center;
    color: #fff;
  }
  .fv .tag {
    display: inline-block; padding: 6px 14px; background: #fff;
    color: var(--teal-dark); font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
    border-radius: 999px; margin-bottom: 10px;
  }
  .fv h1 {
    font-size: 44px; font-weight: 900; line-height: 1.2;
    letter-spacing: -0.02em; margin-bottom: 12px; color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  }
  .fv h1 .accent { color: #FFE08A; }
  .fv .lead {
    font-size: 16px; color: rgba(255,255,255,0.92); max-width: 640px;
    margin: 0 auto 16px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  }
  .fv-numbers {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
    max-width: 640px; margin: 14px auto 18px;
  }
  @media (max-width: 768px) { .fv-numbers { grid-template-columns: repeat(2, 1fr); } }
  .fv-num-tile {
    background: rgba(255,255,255,0.12); padding: 8px 6px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .fv-num-tile .label { font-size: 11px; color: rgba(255,255,255,0.82); letter-spacing: 0.05em; margin-bottom: 4px; }
  .fv-num-tile .value { font-size: 22px; font-weight: 900; color: #FFE08A; line-height: 1.2; text-shadow: 0 1px 4px rgba(0,0,0,0.22); }
  .fv-num-tile .value small { font-size: 13px; color: #fff; font-weight: 700; }
  .fv-cta {
    position: relative;
    display: inline-flex; align-items: center; gap: 12px;
    background: #fff; color: var(--teal-dark);
    padding: 16px 56px; font-size: 18px; font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none; border-radius: 8px;
    margin-top: 6px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.28), 0 3px 6px rgba(0,0,0,0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .fv-cta .arrow { color: var(--orange); font-size: 22px; font-weight: 900; transition: transform 0.25s ease; }
  .fv-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.36), 0 5px 10px rgba(0,0,0,0.18);
  }
  .fv-cta:hover .arrow { transform: translateX(4px); }
  .fv .meta { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.85); }

  /* 多様性バッジ並列 (FV下) */
  .badges {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    max-width: 880px; margin: 12px auto 0;
  }
  .badge {
    display: inline-block; padding: 8px 14px; background: rgba(255,255,255,0.14);
    color: #fff; font-size: 13px; font-weight: 700;
    border: 1px solid rgba(255,255,255,0.42); border-radius: 999px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .badge::before { content: "◎ "; color: #FFE08A; }

  /* === 2. VISION === */
  .vision-block { text-align: center; padding: 0; }
  .vision-block h3 {
    font-size: 40px; font-weight: 900; line-height: 1.4;
    margin-bottom: 24px; letter-spacing: -0.01em;
  }
  .vision-block h3 .accent { color: var(--teal); }
  .vision-block .desc {
    font-size: 16px; color: var(--gray-text); max-width: 720px;
    margin: 0 auto;
  }
  .hashtags {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    max-width: 800px; margin: 32px auto;
  }
  .hashtag {
    padding: 8px 16px; background: var(--teal-light); color: var(--teal-dark);
    font-size: 13px; font-weight: 700; border-radius: 4px;
  }
  /* VISION セクション（濃ティール塊）内オーバーライド */
  .vision-section .section-tag { color: #FFE08A; }
  .vision-section .vision-block h3 { color: #fff; }
  .vision-section .vision-block h3 .accent { color: #FFE08A; }
  .vision-section .vision-block .desc { color: rgba(255,255,255,0.88); }
  /* ハッシュタグセクション（白背景・分離） */
  .hashtag-section {
    background: #fff;
    padding: 32px 0 12px;
  }
  .hashtag-section .hashtags { margin: 0 auto; }
  .products {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 0;
  }
  @media (max-width: 768px) { .products { grid-template-columns: 1fr; } }
  .product-card {
    background: #fff; border-radius: 8px;
    border: 1px solid var(--gray-border); text-align: left;
    overflow: hidden; display: flex; flex-direction: column;
  }
  .product-card .product-photo {
    width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
    display: block;
  }
  .product-card .product-body { padding: 24px; }
  .product-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
  .product-card p { font-size: 14px; color: var(--gray-text); }

  /* === 3. 数値の全開示（巨大タイポ） === */
  .numbers-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 56px 24px;
    margin-top: 40px;
  }
  @media (max-width: 768px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  }
  .number-tile {
    text-align: center;
    padding: 16px 4px 4px;
    position: relative;
  }
  .number-tile::before {
    content: "";
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 36px; height: 3px;
    background: var(--teal);
    border-radius: 2px;
  }
  .number-tile .label {
    font-size: 12px; color: var(--gray-text);
    letter-spacing: 0.14em;
    font-weight: 800;
    margin: 14px 0 18px;
    text-transform: uppercase;
  }
  .number-tile .value {
    font-size: 76px; font-weight: 900;
    color: var(--teal); line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    font-feature-settings: "tnum" 1, "lnum" 1;
  }
  .number-tile .value.compact { font-size: 52px; }
  .number-tile .value small {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    margin-left: 4px;
    letter-spacing: 0;
  }
  .number-tile .value.compact small { font-size: 16px; }
  .number-tile .note {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 10px;
    line-height: 1.7;
  }
  @media (max-width: 480px) {
    .number-tile .value { font-size: 60px; }
    .number-tile .value.compact { font-size: 42px; }
  }

  /* === 4. 社員インタビュー（写真主役・編集スタイル） === */
  .voices {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  @media (max-width: 768px) { .voices { grid-template-columns: 1fr; gap: 24px; } }
  .voice-card {
    background: #fff; border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
  }
  .voice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.16);
  }
  .voice-photo {
    width: 100%; aspect-ratio: 4/5; position: relative; overflow: hidden;
  }
  .voice-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s ease;
  }
  .voice-card:hover .voice-photo img { transform: scale(1.05); }
  .voice-photo::before {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 55%; z-index: 1; pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, rgba(13,37,64,0.92) 100%);
  }
  .voice-photo::after {
    display: none;
    content: "仮"; position: absolute; top: 8px; right: 8px;
    background: rgba(245,158,11,0.95); color: #fff;
    font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 4px;
  }
  .voice-name-overlay {
    position: absolute;
    left: 22px; right: 22px; bottom: 20px;
    color: #fff; z-index: 2;
  }
  .voice-name {
    font-size: 19px; font-weight: 800;
    color: #fff; margin-bottom: 4px;
  }
  .voice-meta {
    font-size: 12px; color: rgba(255,255,255,0.9);
    letter-spacing: 0.02em;
  }
  .voice-body { padding: 28px 24px 28px; position: relative; }
  .voice-body::before {
    content: "“";
    position: absolute;
    top: 8px; left: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px; line-height: 1;
    color: var(--teal);
    opacity: 0.32;
    font-weight: 700;
  }
  .voice-quote {
    position: relative;
    font-size: 14px; line-height: 1.85;
    color: var(--navy);
    padding: 0;
    background: transparent; border: none;
  }

  /* === 5. カルチャー（マガジン式ジグザグ） === */
  .culture-rows {
    display: flex; flex-direction: column; gap: 72px;
    margin-top: 12px;
  }
  .culture-row {
    display: flex; align-items: center; gap: 56px;
  }
  .culture-row.reverse { flex-direction: row-reverse; }
  .culture-photo-wrap {
    flex: 1.25;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  }
  .culture-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease;
  }
  .culture-photo-wrap:hover img { transform: scale(1.04); }
  .culture-text { flex: 1; }
  .culture-axis-num {
    display: block;
    font-size: 72px; font-weight: 900;
    color: var(--teal);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    opacity: 0.92;
  }
  .culture-row h3 {
    font-size: 28px; font-weight: 900;
    line-height: 1.45;
    margin-bottom: 18px;
    color: var(--navy);
  }
  .culture-row h3 .accent {
    display: block;
    color: var(--teal);
    font-size: 18px;
    margin-top: 8px;
    font-weight: 800;
    letter-spacing: 0;
  }
  .culture-row p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.9;
  }
  @media (max-width: 768px) {
    .culture-row, .culture-row.reverse {
      flex-direction: column; gap: 20px;
    }
    .culture-axis-num { font-size: 56px; }
    .culture-row h3 { font-size: 22px; }
  }

  /* === 6. 制度・福利厚生 === */
  .benefits-wrapper { max-width: 960px; margin: 0 auto; }
  .career-path {
    background: #fff; padding: 40px 32px; border-radius: 8px;
    border: 1px solid var(--gray-border); margin-bottom: 40px;
  }
  .career-path h3 { font-size: 22px; font-weight: 900; margin-bottom: 24px; }
  .career-stages {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-bottom: 20px;
  }
  @media (max-width: 768px) { .career-stages { grid-template-columns: 1fr; } }
  .career-stage {
    background: var(--teal-light); padding: 20px 16px; border-radius: 8px;
    text-align: center; position: relative;
  }
  .career-stage .stage-label { font-size: 11px; color: var(--teal-dark); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 6px; }
  .career-stage .stage-name { font-size: 14px; font-weight: 800; margin-bottom: 8px; }
  .career-stage .stage-pay { font-size: 18px; font-weight: 900; color: var(--teal); }
  .career-example {
    background: var(--gray-bg); padding: 16px 20px; border-radius: 6px;
    font-size: 13px; color: var(--navy);
  }
  .career-example strong { color: var(--teal); }

  .programs {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
    margin-bottom: 40px;
  }
  @media (max-width: 768px) { .programs { grid-template-columns: 1fr; } }
  .program-card {
    background: #fff; padding: 24px 20px; border-radius: 8px;
    border: 1px solid var(--gray-border);
  }
  .program-card .program-name {
    font-size: 16px; font-weight: 900; color: var(--teal-dark);
    margin-bottom: 6px; letter-spacing: 0.02em;
  }
  .program-card .program-freq { font-size: 12px; color: var(--gray-text); margin-bottom: 10px; }
  .program-card p { font-size: 13px; color: var(--gray-text); line-height: 1.7; }

  .benefits-list {
    background: #fff; border-radius: 8px; border: 1px solid var(--gray-border);
    padding: 8px 24px;
  }
  .benefits-list dl { display: flex; flex-wrap: wrap; padding: 14px 0; border-bottom: 1px solid var(--gray-border); }
  .benefits-list dl:last-child { border-bottom: none; }
  .benefits-list dt { width: 200px; font-weight: 700; font-size: 14px; }
  .benefits-list dd { flex: 1; font-size: 14px; color: var(--gray-text); }
  @media (max-width: 768px) {
    .benefits-list dt { width: 100%; margin-bottom: 4px; }
    .benefits-list dd { width: 100%; }
  }

  /* === 7. 募集職種3枠（巨大価格 + チェック条件） === */
  .roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 768px) { .roles { grid-template-columns: 1fr; } }
  .role-card {
    background: #fff; padding: 36px 28px 32px;
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
  }
  .role-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--teal);
    z-index: 2;
  }
  .role-card .role-photo {
    display: block;
    width: calc(100% + 56px);
    margin: -36px -28px 24px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 0;
  }
  .role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.1);
  }
  .role-card .role-name {
    color: var(--teal); font-weight: 800; font-size: 11px;
    letter-spacing: 0.2em; margin-bottom: 10px;
  }
  .role-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 8px; color: var(--navy); }
  .role-card .target {
    display: inline-block;
    font-size: 12px; color: var(--teal-dark); font-weight: 700;
    margin-bottom: 20px;
    padding: 6px 10px;
    background: var(--teal-light);
    border-radius: 4px;
    line-height: 1.4;
  }
  .role-card .price {
    font-size: 44px; font-weight: 900; color: var(--teal);
    line-height: 1.1; margin: 4px 0 24px;
    letter-spacing: -0.02em;
  }
  .role-card .price small { font-size: 14px; color: var(--navy); font-weight: 700; }
  .role-card .conditions {
    font-size: 13px; color: var(--gray-text);
    list-style: none; padding: 0; margin: 0 0 28px;
  }
  .role-card .conditions li {
    padding: 8px 0 8px 24px;
    border: none;
    position: relative;
    line-height: 1.65;
  }
  .role-card .conditions li:first-child { padding-top: 8px; }
  .role-card .conditions li::before {
    content: "✓";
    position: absolute; left: 0; top: 8px;
    color: var(--teal);
    font-weight: 900;
    font-size: 14px;
  }
  .role-card .apply-btn {
    margin-top: auto; display: block; text-align: center;
    background: var(--teal-dark); color: #fff;
    padding: 14px 0;
    text-decoration: none; font-weight: 800; font-size: 14px;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .role-card .apply-btn:hover {
    background: var(--teal);
    transform: translateY(-2px);
  }

  /* === 8. 応募ステップ（巨大数字＋矢印フロー） === */
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    max-width: 960px; margin: 0 auto;
    position: relative;
  }
  @media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; gap: 40px; }
  }
  .step {
    background: #fff; padding: 36px 28px 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-border);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
  }
  .step .step-num {
    display: block;
    width: auto; height: auto;
    background: transparent;
    color: var(--teal);
    border-radius: 0;
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
  }
  .step h4 { font-size: 18px; font-weight: 900; margin-bottom: 10px; color: var(--navy); }
  .step .step-meta {
    font-size: 11px; color: var(--teal-dark);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 0.1em;
  }
  .step p { font-size: 13px; color: var(--gray-text); line-height: 1.85; }
  .step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -22px; top: 50%;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 28px; font-weight: 900;
    z-index: 2;
  }
  @media (max-width: 768px) {
    .step:not(:last-child)::after {
      content: "↓";
      right: 50%; top: auto; bottom: -32px;
      transform: translateX(50%);
    }
  }

  /* === 福利厚生アコーディオン === */
  .benefits-accordion {
    background: #fff; border: 1px solid var(--gray-border);
    border-radius: 8px; overflow: hidden;
  }
  .benefits-accordion summary {
    padding: 18px 24px; font-weight: 800; font-size: 15px;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--navy);
  }
  .benefits-accordion summary::-webkit-details-marker { display: none; }
  .benefits-accordion summary::after {
    content: "▼"; color: var(--teal); font-size: 12px;
    transition: transform 0.2s;
  }
  .benefits-accordion[open] summary::after { transform: rotate(180deg); }
  .benefits-accordion .benefits-list { padding: 0 24px 16px; border: none; }

  /* === 9. FAQ === */
  .faq { max-width: 760px; margin: 0 auto; }
  .faq details {
    background: #fff; border: 1px solid var(--gray-border);
    border-radius: 8px; margin-bottom: 10px;
    padding: 0; overflow: hidden;
  }
  .faq summary {
    padding: 16px 22px; font-weight: 700; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between;
    align-items: center; font-size: 15px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+"; color: var(--teal); font-size: 24px;
    font-weight: 300; transition: transform 0.2s;
  }
  .faq details[open] summary::after { transform: rotate(45deg); }
  .faq details > div {
    padding: 0 22px 18px; color: var(--gray-text); font-size: 14px;
    line-height: 1.8;
  }

  /* === 10. CTA === */
  .final-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: #fff; padding: 64px 0; text-align: center;
  }
  .final-cta h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; line-height: 1.3; }
  .final-cta p { font-size: 15px; opacity: 0.95; margin-bottom: 24px; }
  .final-cta .btn {
    position: relative;
    display: inline-flex; align-items: center; gap: 12px;
    background: #fff; color: var(--teal-dark);
    padding: 22px 72px; font-size: 19px; font-weight: 900;
    letter-spacing: 0.04em;
    border-radius: 8px; text-decoration: none;
    box-shadow: 0 14px 36px rgba(0,0,0,0.28), 0 4px 8px rgba(0,0,0,0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .final-cta .btn .arrow { color: var(--orange); font-size: 24px; font-weight: 900; transition: transform 0.25s ease; }
  .final-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.28);
  }
  .final-cta .btn:hover .arrow { transform: translateX(4px); }
  .final-cta .meta { margin-top: 20px; font-size: 13px; opacity: 0.85; }

  /* === Footer === */
  footer {
    background: var(--navy); color: #fff; padding: 36px 0 24px;
    font-size: 13px;
  }
  footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
  footer .company-name { font-weight: 800; font-size: 16px; margin-bottom: 8px; }
  footer .company-info { opacity: 0.7; line-height: 1.8; }
  footer .links a { color: #fff; opacity: 0.7; text-decoration: none; margin-left: 24px; }
  footer .links a:hover { opacity: 1; }
  footer .copyright { text-align: center; margin-top: 32px; opacity: 0.5; font-size: 12px; }

/* === ベネフィットサマリー（メインLP用 - 詳細はbenefits.htmlへ） === */
.benefits-summary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .benefits-summary { grid-template-columns: 1fr; }
}
.benefit-pillar {
  background: #fff; padding: 36px 28px 32px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}
.benefit-num {
  font-size: 48px; font-weight: 900;
  color: var(--teal); line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.benefit-pillar h3 {
  font-size: 17px; font-weight: 900;
  margin-bottom: 12px;
  color: var(--navy);
}
.benefit-pillar p {
  font-size: 13px; color: var(--gray-text);
  line-height: 1.85;
}

/* === もっと見るリンクボタン（汎用） === */
.more-link { text-align: center; margin-top: 40px; }
.more-link a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: #fff; color: var(--teal-dark);
  font-weight: 800; font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--teal);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.more-link a:hover {
  background: var(--teal); color: #fff;
  transform: translateY(-2px);
}

/* === ページヒーロー（別ページ用） === */
.page-hero {
  padding: 64px 0 40px;
  background: var(--teal-light);
}
.page-hero .back-link {
  display: inline-block;
  font-size: 14px; color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 24px;
}
.page-hero .back-link:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: 36px; font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.page-hero p { font-size: 15px; color: var(--gray-text); max-width: 720px; }
@media (max-width: 768px) {
  .page-hero h1 { font-size: 28px; }
}

/* === CULTURE サマリー（メインLP用 - 詳細はculture.htmlへ） === */
.culture-summary {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 32px;
}
@media (max-width: 768px) { .culture-summary { grid-template-columns: 1fr; } }
.culture-summary-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  display: flex; gap: 18px;
  padding: 24px 26px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.culture-summary-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.culture-summary-num {
  font-size: 48px; font-weight: 900;
  color: var(--teal); line-height: 1;
  flex-shrink: 0; min-width: 56px;
  letter-spacing: -0.04em;
}
.culture-summary-text { flex: 1; }
.culture-summary-text h3 {
  font-size: 18px; font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.culture-summary-text .accent {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

/* === day-flow (culture.html / role-*.html 用 1日の流れタイムライン) === */
.day-flow {
  max-width: 720px; margin: 40px auto 0;
  border-left: 3px solid var(--teal);
  padding-left: 0;
}
.day-item {
  display: flex; gap: 24px;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--gray-border);
  position: relative;
}
.day-item:last-child { border-bottom: none; }
.day-item::before {
  content: "";
  position: absolute;
  left: -7px; top: 26px;
  width: 11px; height: 11px;
  background: var(--teal);
  border-radius: 50%;
}
.day-time {
  flex-shrink: 0;
  font-size: 17px; font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.02em;
  min-width: 64px;
}
.day-item p {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.7;
}

/* === Role detail page (role-*.html) === */
.role-detail-section {
  max-width: 880px; margin: 0 auto;
}
.role-detail-section h3 {
  font-size: 22px; font-weight: 900;
  margin: 48px 0 16px;
  color: var(--navy);
  padding-left: 12px;
  border-left: 4px solid var(--teal);
  line-height: 1.4;
}
.role-detail-section h3:first-child { margin-top: 8px; }
.role-detail-section ul {
  list-style: none; padding: 0; margin: 12px 0 0;
}
.role-detail-section ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.75;
  border-bottom: 1px solid var(--gray-border);
}
.role-detail-section ul li::before {
  content: "✓";
  position: absolute; left: 4px; top: 10px;
  color: var(--teal); font-weight: 900;
}
.role-detail-section ul li:last-child { border-bottom: none; }
.role-detail-section p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* role-card内のmore-link（カード内リンク） */
.role-card .role-more {
  display: block; text-align: center;
  font-size: 13px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
  margin-top: 12px;
  padding: 6px 0;
}
.role-card .role-more:hover { text-decoration: underline; }
