:root{
    --sky:#a9c7e8;
    --pink:#f6c6cf;
    --ink:#1b1b1b;
    --muted:#5a5a5a;
    --navOrange:#f5a623;
    --navOrangeHover:#e0951a;
    /* ナビ「お問い合わせ」・LINE帯：紺寄りの青 */
    --navCtaBlue:#1e3a5f;
    --navCtaBlueHover:#2c4f7a;
  
    --card: #fff;
    --stroke: rgba(0,0,0,.08);
    --shadow: 0 18px 50px rgba(0,0,0,.12);
    --radius: 22px;
  
    --line:#08c755;
    --lineDeep:#06b24a;
  
    --max: 980px;
  }
  
  *{ box-sizing:border-box; }
  /* 横スクロール防止：overflow-x だけだと iOS 等で縦スクロールが死ぬため、縦は明示 */
  html{
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100%;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
  }
  html, body{
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
  }
  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  
  body{
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: #d0d0d0;
  }

  .seoHeading {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .wrap{ width:min(var(--max), 92vw); margin:0 auto; }
  section{ padding: 34px 0; }
  section[id]{ scroll-margin-top: 72px; }
  #vision{ scroll-margin-top: 64px; }
  #profile{
    scroll-margin-top: 0; /* ナビで飛んだ時に上のLINEエリアが映らないようにする */
    padding-top: 72px;    /* 固定ナビ分の余白で、見出しが隠れないように */
    background: #fff;
  }
  .profileSection{ background: #fff; }
  #faq{ background: #fff; }
  .spacer{ height: 26px; }
  .visionImg{
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .visionImgWrap{ margin-top: 20px; }

  /* VISIONセクション：画面いっぱい・背景0009.jpg・ナビ下にピッタリ・fade-up */
  .visionSection{
    position: relative;
    min-height: 100vh;
    padding-top: 72px;
    box-sizing: border-box;
    background: url("image/0009.jpg") center/cover no-repeat;
    padding: 72px 0 48px;
  }
  .visionSection{ scroll-margin-top: 72px; }

  /* 1つ目VISION：Apple風スクロール（画像2スクロール分固定 → 白背景が下から迫り上がる） */
  .visionSection--scroll{
    min-height: 0;
    padding: 0;
    background: none;
    isolation: isolate;
  }
  .visionStickyWrap{
    min-height: 200vh;
    position: relative;
    z-index: 0;
  }
  .visionStickyPanel{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: url("image/0009.jpg") center/cover no-repeat;
    z-index: 0;
    pointer-events: none;
  }
  .visionStickyPanel--2{
    background-image: url("image/0044.jpg");
  }
  .visionStickyPanel .visionOverlay{
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
  }
  /* LINEと背景画像の間：VISIONを中央に大きく表示（fade-up・幅6割・白背景） */
  .visionHeroTitle{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 0 56px;
    box-sizing: border-box;
    background: #fff;
  }
  .visionHeroTitleText{
    margin: 0;
    width: 60%;
    max-width: 60%;
    font-size: clamp(34px, 8.4vw, 96px);
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    color: var(--ink);
    text-align: center;
  }
  .visionHeroTitleText.reveal{ transform: translateY(28px); transition: opacity .6s ease-out, transform .6s ease-out; }
  .visionHeroTitleText.reveal.is-in{ opacity: 1; transform: translateY(0); }
  .visionWhiteBlock{
    position: relative;
    z-index: 2;
    min-height: 100vh;
    background: #fff;
    padding: 72px 0 48px;
    box-sizing: border-box;
    margin-top: 0;
    transform: translateZ(0);
  }
  .visionContent--onWhite .visionH1,
  .visionContent--onWhite .visionH2,
  .visionContent--onWhite .visionLead,
  .visionContent--onWhite .visionLeadBlock{
    color: var(--ink);
  }

  .visionOverlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.28);
    z-index: 0;
  }
  .visionContent{
    position: relative;
    z-index: 1;
    color: #fff;
  }
  .visionH1{
    margin: 0 0 20px;
    font-size: clamp(48px, 12vw, 120px);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.1;
    color: #fff;
  }
  .visionH2{
    margin: 0 0 20px;
    font-size: clamp(24px, 3.8vw, 38px);
    font-weight: 800;
    letter-spacing: .02em;
    color: #fff;
  }
  .visionImageRow{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 20px;
  }
  .visionImageRow img{
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
  }
  .visionLead{
    margin: 24px 0 0;
    padding: 0 0 48px;
    font-size: clamp(14px, 1.9vw, 20px);
    line-height: 1.8;
    color: rgba(255,255,255,.95);
    max-width: 56em;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }
  .visionLeadBlock{
    margin: 0 0 1em;
    text-align: center;
  }
  .visionLeadBlock:last-child{
    margin-bottom: 0;
    padding-bottom: 32px;
  }
  .visionLeadBlock strong{
    font-weight: 900;
  }

  /* ===== 左上固定ロゴ（右下角のみ丸い・クリックでトップへ） ===== */
  .fixedLogo{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1700;
    border-bottom-right-radius: 24px;
  }
  .fixedLogoBg{
    position: absolute;
    inset: 0;
    background: #39454d;
    z-index: 0;
    border-bottom-right-radius: 28px;
  }
  .fixedLogoImg{
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 22vh;
    object-fit: contain;
    padding: 20px 24px 24px 20px;
  }
  /* ===== ナビバー（白・オレンジ基調） ===== */
  .mainNav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
  }
  .navWrap{
    position: relative;
    width: min(1200px, 96vw);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .navLogo{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 85px;
  }
  .navLogoDots{ display: flex; gap: 4px; }
  .navLogoDots .dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .dotBlue{ background: #5a9fd4; }
  .dotOrange{ background: var(--navOrange); }
  .navLogoText{
    font-weight: 900;
    font-size: 15px;
    letter-spacing: .08em;
    color: var(--ink);
  }
  .navLinks{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .navLinks a{
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .06em;
    color: var(--ink);
  }
  .navLinks a:hover{ color: var(--navOrange); }
  .navCta{
    background: var(--navCtaBlue);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .04em;
    white-space: nowrap;
    transition: background .2s ease, transform .15s ease;
  }
  .navCta:hover{
    background: var(--navCtaBlueHover);
    transform: translateY(-1px);
  }
  .hamburger{
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: #fff;
    padding: 10px 8px;
    cursor: pointer;
    z-index: 1003;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  .hamburger span{
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #1f1f1f;
    margin: 0 auto;
    transition: transform .25s ease, opacity .2s ease;
  }
  .hamburger span + span{
    margin-top: 6px;
  }
  .hamburger.is-open span:nth-child(1){
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2){
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
  }
  .mobileNav{
    display: none;
  }
  @media (max-width: 768px){
    body{
      background: #fff;
    }
  
    .fixedLogo{
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1700;
      border-bottom-right-radius: 24px;
    }
  
    .fixedLogoBg{
      border-bottom-right-radius: 24px;
    }
  
    .fixedLogoImg{
      width: 132px;
      max-width: none;
      max-height: none;
      padding: 14px 16px 16px 14px;
    }
  
    .mainNav{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1800;
      background: transparent;
      border-bottom: none;
      box-shadow: none;
      pointer-events: none;
    }
  
    .navWrap{
      width: 100%;
      min-height: 72px;
      margin: 0;
      padding: 8px 14px;
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
      background: transparent;
      pointer-events: none;
    }
  
    .navLinks,
    .navLogo,
    .navLogoDots,
    .navLogoText,
    .navCta{
      display: none;
    }
  
    .hamburger{
      display: block;
      position: fixed;
      top: 12px;
      right: 14px;
      width: 56px;
      height: 56px;
      margin: 0;
      border-radius: 0;
      box-shadow: 0 4px 12px rgba(0,0,0,.12);
      z-index: 1900;
      pointer-events: auto;
    }
  
    .mobileNav{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        background: rgba(255,255,255,.98);
        border-bottom: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
        padding: 140px 18px 20px 18px;
      }
  
    .mainNav.is-open .mobileNav{
      display: block;
    }
  
    .mobileNav a{
      display: block;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: .04em;
      color: #1b1b1b;
      padding: 14px 4px;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
  
    .mobileNav a:last-child{
      border-bottom: none;
    }
  }
  /* ===== LINE CTAセクション（白背景・オレンジボタン） ===== */
  .invitationSection{
    padding: 40px 0 50px;
    text-align: center;
    background: linear-gradient(90deg, var(--navCtaBlue) 0%, #3d6b9a 100%);
  }
  .lineSectionCopy{
    padding: 0 24px 32px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .lineSectionCopyLine{
    margin: 0 auto 10px;
    padding: 0;
    background: none;
    color: #fff;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1.5;
    box-sizing: border-box;
  }
  .lineSectionCopyLine:last-child{
    margin-bottom: 0;
  }
  /* シンプルなフラットボタン（参考画像風） */
  .invitationSection .lineCtaBtn{
    background: #22c55e;
    color: #fff;
    box-shadow: none;
    border: none;
    border-radius: 999px;
    padding: 28px 72px;
    font-size: 24px;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .invitationSection .lineCtaBtn:hover{
    background: #16a34a;
    filter: none;
    transform: none;
    box-shadow: none;
  }
  .invitationSection .lineCtaTag{
    display: none;
  }
  .invitationSection .lineCtaText{
    font-size: inherit;
  }
  .invitationSection--afterVision{
    position: relative;
    z-index: 3;
  }
  .invitationLead{
    margin: 0;
    color: #fff;
    font-size: clamp(15px, 2.2vw, 18px);
    line-height: 1.75;
    letter-spacing: .02em;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .invitationMain{
    margin: 20px auto 28px;
    color: #fff;
    font-size: clamp(17px, 2.6vw, 22px);
    font-weight: 700;
    letter-spacing: .03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .invitationSlash{
    color: rgba(255,255,255,.85);
    font-weight: 400;
    letter-spacing: .12em;
  }
  .invitationCard{
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 640px;
    margin: 0 auto 32px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 14px 44px rgba(0,0,0,.1);
    border: 1px solid rgba(255,255,255,.6);
    text-align: left;
  }
  .invitationCardPhoto{
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background:
      radial-gradient(120px 120px at 50% 35%, rgba(255,255,255,.4), rgba(0,0,0,0)),
      url("avatar.jpg") center/cover no-repeat;
    border: 4px solid rgba(255,255,255,.9);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .invitationCardText{
    margin: 0;
    color: var(--ink);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.8;
    font-weight: 700;
    letter-spacing: .02em;
  }
  @media (max-width: 560px){
    .invitationCard{
      flex-direction: column;
      text-align: center;
      padding: 20px;
      gap: 16px;
    }
    .invitationCardPhoto{ width: 100px; height: 100px; }
  }

  /* ===== 代表挨拶 ===== */
  .messageSection{
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 72px 0 40px;
  }
  .messageLayout{
    display: grid;
    grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "head visual"
    "body visual";
    gap: 72px;
    align-items: stretch;
  }
.messageHead{
  grid-area: head;
  padding-right: 12px;
}
  .messageBody{
  grid-area: body;
    padding-right: 12px;
  }
  .messageLayout.reveal{
    opacity: 1;
    transform: none;
  }
.messageLayout.reveal .messageHead,
.messageLayout.reveal .messageBody,
  .messageLayout.reveal .messageVisual{
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
  }
.messageLayout.reveal .messageHead{
  transform: translateX(-48px);
}
  .messageLayout.reveal .messageBody{
    transform: translateX(-48px);
  }
  .messageLayout.reveal .messageVisual{
    transform: translateX(48px);
  }
.messageLayout.reveal.is-in .messageHead,
.messageLayout.reveal.is-in .messageBody,
  .messageLayout.reveal.is-in .messageVisual{
    opacity: 1;
    transform: translateX(0);
  }
  .messageLayout.reveal.is-in .messageVisual{
    transition-delay: .08s;
  }
.messageHead .kicker{
    text-transform: none;
    letter-spacing: .03em;
    opacity: .72;
  }
.messageHead .h2{
    margin: 6px 0 16px;
    font-size: clamp(34px, 3.6vw, 44px);
  }
  .messageBody p{
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.75;
    color: #2f2f2f;
  }
  .messageBody p:last-child{
    margin-bottom: 0;
  }
  .messageVisual{
  grid-area: visual;
    background: #f2f2f2;
    border-radius: 16px;
    overflow: hidden;
    justify-self: end;
    width: min(100%, 620px);
    height: 100%;
    margin-left: 12px;
  }
  .messageVisual img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* ===== 募集要項 ===== */
  .requirementsSection{
    padding: 56px 0 72px;
    background: #fff;
  }
  .requirementsTitle{
    margin: 0 0 40px;
    text-align: center;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    letter-spacing: .04em;
    color: var(--ink);
  }
  .requirementsBlock{
    max-width: 640px;
    margin: 0 auto 40px;
  }
  .requirementsBlock:last-child{
    margin-bottom: 0;
  }
  .reqDivider{
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 20px;
  }
  .reqDivider::before,
  .reqDivider::after{
    content: "";
    flex: 1;
    height: 1px;
    background: var(--navOrange);
  }
  .reqDividerText{
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--navOrange);
  }
  .reqMonthlyBody{
    padding: 0 8px 0 12px;
  }
  .reqMonthlyAmount{
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
  }
  .reqMonthlyNote{
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
  }
  .reqSalaryList{
    list-style: none;
    margin: 0;
    padding: 0 8px 0 12px;
  }
  .reqSalaryRow{
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px dotted rgba(0,0,0,.22);
  }
  .reqSalaryRow:first-child{
    padding-top: 4px;
  }
  .reqSalaryRow:last-child{
    border-bottom: none;
  }
  .reqIcon{
    flex-shrink: 0;
    color: var(--navOrange);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .reqSalaryText{
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
  }
  .reqSalaryText strong{
    font-weight: 900;
  }
  .reqConditionsList{
    margin: 0;
    padding: 4px 8px 0 28px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.85;
  }
  .reqConditionsList li{
    margin: 0 0 10px;
  }
  .reqConditionsList li:last-child{
    margin-bottom: 0;
  }

  /* ===== 会社概要 ===== */
  .overviewSection{
    margin-top: 0;
    min-height: 100vh;
    padding: 132px 0 64px;
    background: #fff;
    display: flex;
    align-items: center;
  }
  .overviewSection .wrap{
    width: min(var(--max), 92vw);
  }
  .overviewLayout{
    display: grid;
    grid-template-columns: minmax(320px, 460px) 1fr;
    gap: 44px;
    align-items: start;
  }
  .overviewLayout.reveal{
    opacity: 1;
    transform: none;
  }
  .overviewLayout.reveal .overviewVisual,
  .overviewLayout.reveal .overviewInfo{
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
  }
  .overviewLayout.reveal .overviewVisual{
    transform: translateX(-48px);
  }
  .overviewLayout.reveal .overviewInfo{
    transform: translateX(48px);
  }
  .overviewLayout.reveal.is-in .overviewVisual,
  .overviewLayout.reveal.is-in .overviewInfo{
    opacity: 1;
    transform: translateX(0);
  }
  .overviewLayout.reveal.is-in .overviewInfo{
    transition-delay: .08s;
  }
  .overviewVisual{
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #39454d;
    display: grid;
    place-items: center;
  padding: 14px;
  }
  .overviewVisual img{
  width: 100%;
  height: 100%;
  max-width: 360px;
  max-height: 360px;
  margin: 0 auto;
    display: block;
    object-fit: contain;
    padding: 0;
  }
  .overviewInfo .kicker{
    text-transform: none;
    font-size: 14px;
    letter-spacing: .03em;
    opacity: .65;
  }
  .overviewInfo .h2{
    margin-top: 6px;
    font-size: clamp(32px, 4.5vw, 46px);
    letter-spacing: .01em;
  }
  .overviewTable{
    margin: 18px 0 0;
  }
  .overviewRow{
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.12);
  }
  .overviewRow dt,
  .overviewRow dd{
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }
  .overviewRow dt{
    color: #757575;
    font-weight: 500;
  }
  .overviewRow dd{
    color: #333;
    font-weight: 500;
  }
  .overviewLink{
    color: #1f5fbf;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
  }
  .overviewLink:hover{
    opacity: .82;
  }
  
  /* ===== HERO ===== */
  header.hero{
    position: relative;
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .heroWrap{
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    max-width: none;
  }
  .heroBrandSp{
    display: none;
  }
  @keyframes heroFadeUp{
    from{
      opacity: 0;
      transform: translateY(40px);
    }
    to{
      opacity: 1;
      transform: translateY(0);
    }
  }
  .heroBox{
    position: relative;
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    z-index: 1;
  }
  .heroMedia{
    position: absolute;
    inset: 0;
    min-height: 100vh;
    background: url("image/0069.jpg") center/cover no-repeat;
  }
  .heroTopLine{
    position:absolute;
    top:14px; left:14px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(6px);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing:.06em;
    font-size: 13px;
  }
  .heroBrand{
    position:absolute;
    top:16px; right:16px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(0,0,0,.08);
    color: var(--ink);
    font-weight: 900;
    letter-spacing:.03em;
    font-size: 14px;
  }
  .heroCatchVertical{
    position:absolute;
    left: 14px;
    top: 88px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color:#111;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(6px);
    padding: 14px 10px;
    border-radius: 18px;
    font-weight: 900;
    letter-spacing:.08em;
    line-height:1.3;
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
  }
  .heroCopy{
    position:absolute;
    left: 0;
    bottom: 48px;
    width: min(880px, 96%);
    padding-left: 24px;
    padding-right: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .heroCopyLine{
    margin: 0 0 0 -80px;
    padding: 12px 24px 14px 80px;
    background: linear-gradient(90deg, #F9AB39 0%, #ED621E 100%);
    color: #fff;
    font-size: clamp(24px, 4.4vw, 50px);
    font-weight: 900;
    letter-spacing: .03em;
    line-height: 1.2;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-100%);
    animation: heroSlideIn 0.6s ease-out both;
  }
  /* h1.seoHeading が先頭にあるため :nth-child だと遅延がずれる → p の順で指定 */
  .heroCopy p.heroCopyLine:nth-of-type(1){ animation-delay: 0.4s; }
  .heroCopy p.heroCopyLine:nth-of-type(2){ animation-delay: 0.7s; }
  .heroCopy p.heroCopyLine:nth-of-type(3){ animation-delay: 1s; }
  .heroCopyLine--orange{
    background: linear-gradient(90deg, #F9AB39 0%, #ED621E 100%);
  }
  @keyframes heroSlideIn{
    from{
      opacity: 0;
      transform: translateX(-100%);
    }
    to{
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* 他で使う見出しオレンジグラデーション（テキストのみ） */
  .gradientOrangeText{
    background: linear-gradient(90deg, #ED621E 0%, #F9AB39 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  
  /* ===== CARD ===== */
  .card{
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--stroke);
    overflow:hidden;
  }
  .cardPad{ padding: 20px; }
  .kicker{
    font-weight: 900;
    letter-spacing:.10em;
    font-size: 12px;
    opacity:.78;
    text-transform: uppercase;
  }
  .h2{
    margin: 8px 0 0;
    font-size: clamp(20px, 2.6vw, 28px);
    letter-spacing:.02em;
    font-weight: 900;
  }
  .lead{
    margin: 10px 0 0;
    color: var(--muted);
    line-height:1.85;
    font-size: 15px;
  }
  
  /* ===== LINE CTA（形を寄せる） ===== */
  .lineCta{ display:flex; align-items:center; justify-content:center; padding: 18px; }
  .lineBtn{
    position:relative;
    display:block;
    width:min(560px, 100%);
    margin:0 auto;
    border-radius: 999px;
    padding: 22px 22px;
    background: linear-gradient(180deg, var(--line), var(--lineDeep));
    color:#fff;
    font-weight: 900;
    text-align:center;
    font-size: clamp(16px, 2.4vw, 30px);
    letter-spacing:.01em;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    transition: filter .12s ease;
    user-select:none;
  }
  .lineBtn:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    filter: saturate(1.06);
  }
  .lineBtn:active{ transform: translateY(0); }
  .lineBtn{ transition: transform .12s ease, box-shadow .12s ease, filter .12s ease; }
  .lineTag{
    position:absolute;
    left: 18px;
    top: -12px;
    background:#fff;
    color:#ff4d4d;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    border: 1px solid rgba(0,0,0,.06);
    white-space:nowrap;
  }
  .lineArrow{ opacity:.95; margin-left: 8px; font-weight: 900; }
  
  /* ===== FEATURES ===== */
  .grid3{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
  }
  .mini{
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 12px 34px rgba(0,0,0,.10);
  }
  .mini h3{ margin:0; font-size: 16px; letter-spacing:.02em; font-weight: 900; }
  .mini p{ margin:8px 0 0; color:var(--muted); line-height:1.8; font-size: 14px; }
  
  /* ===== EPISODE ===== */
  .episode{ display:grid; grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }
  .ep{
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 20px;
    padding: 16px 16px 14px;
    box-shadow: 0 14px 36px rgba(0,0,0,.10);
  }
  .epTop{ display:flex; align-items:center; justify-content:space-between; gap: 10px; }
  .badge{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    background: rgba(169,199,232,.35);
    border: 1px solid rgba(169,199,232,.55);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing:.06em;
  }
  .ep h4{ margin:10px 0 0; font-size: 18px; font-weight: 900; }
  .ep p{ margin:8px 0 0; color:var(--muted); line-height:1.85; font-size: 14px; }
  
  /* ===== PROFILE ===== */
  .profileCards{
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 28px;
  }
  .profileCard.card{
    border-radius: 0;
  }
  #profile .profileCard.reveal{
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s ease, transform .65s ease;
    will-change: opacity, transform;
  }
  #profile .profileCard.reveal.is-in{
    opacity: 1;
    transform: translateY(0);
  }
  #profile .profileCards > .profileCard.reveal:nth-child(1){ transition-delay: .04s; }
  #profile .profileCards > .profileCard.reveal:nth-child(2){ transition-delay: .14s; }
  #profile .profileCards > .profileCard.reveal:nth-child(3){ transition-delay: .24s; }
  .profileCard{
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .profileSectionTitle{
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: .02em;
    margin: 0 0 24px;
  }
  .profileCard .cardPad{ flex: 1; display: flex; flex-direction: column; }
  .profileCard .profile{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
    align-items: start;
  }
  .profileCard .avatar{ justify-self: stretch; }
  #profile .avatar{ box-shadow: none; }
  /* 先輩の例カード：画像はカード幅いっぱい・四角 */
  #profile .profileCard .cardPad{ padding: 0 0 28px; }
  #profile .profileCard .profile{ gap: 0; }
  #profile .profileCard .profile > div:last-child{ padding: 44px 24px 0; }
  #profile .avatar{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    border: none;
    background-color: #f0f0f0;
    background:
      linear-gradient(180deg, rgba(0,0,0,.06) 0%, transparent 40%),
      url("avatar.jpg") 65% 20%/cover no-repeat;
  }
  #profile .profileCards > .profileCard:first-child .avatar{
    background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, transparent 40%), url("image/0060.jpg") 65% 20%/cover no-repeat;
  }
  #profile .profileCards > .profileCard:nth-child(2) .avatar{
    background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, transparent 40%), url("image/IMG_3374-v3.jpg") 65% 20%/cover no-repeat;
  }
  #profile .profileCards > .profileCard:nth-child(3) .avatar{
    background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, transparent 40%), url("image/IMG_4136.jpeg") center/contain no-repeat;
  }
  #profile .profileName{
    font-size: 28px;
    background: linear-gradient(90deg, #ED621E 0%, #F9AB39 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  #profile .dl{
    margin-top: 28px;
    gap: 36px;
  }
  #profile .dl .itemTitle{
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: .02em;
    color: var(--navOrange);
  }
  #profile .dl .itemValue{
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 1.9;
  }
  .profile{ display:grid; grid-template-columns: 120px 1fr; gap: 14px; align-items:start; }
  .avatar{
    width:120px; height:120px;
    border-radius: 999px;
    background:
      radial-gradient(120px 120px at 50% 35%, rgba(255,255,255,.35), rgba(0,0,0,0)),
      url("avatar.jpg") center/cover no-repeat;
    border: 6px solid rgba(255,255,255,.85);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
  }
  .profileName{
    font-weight:900;
    font-size:18px;
    letter-spacing:.02em;
  }
  .dl{ margin: 10px 0 0; display:grid; gap: 10px; }
  .dl .row{
    background: rgba(169,199,232,.22);
    border: 1px solid rgba(169,199,232,.45);
    border-radius: 16px;
    padding: 12px 12px 10px;
  }
  /* プロフィールカード内：枠をやめて項目下に下線で区切り */
  #profile .dl .row{
    background: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--stroke);
    padding: 28px 0 32px;
  }
  #profile .dl .row:last-child{ border-bottom: none; }
  .dl .label{
    font-weight: 900;
    letter-spacing:.06em;
    font-size: 12px;
    opacity:.85;
  }
  .dl .value{ margin-top: 6px; color: var(--muted); line-height:1.8; font-size: 14px; }
  
  /* ===== FAQ ===== */
  #faq{
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 64px 0;
  }
  #faq .wrap{
    width: min(1100px, 92vw);
  }
  .faq details{
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(0,0,0,.22);
    border-radius: 0;
    padding: 20px 20px 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,.16);
    overflow:hidden;
  }
  .faq details + details{ margin-top: 18px; }
  .faqMoreBtn{
    width: 100%;
    margin-top: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .04em;
    color: var(--ink);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(169,199,232,.55);
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    transition: background .2s ease, box-shadow .2s ease, transform .12s ease;
  }
  .faqMoreBtn:hover{
    background: rgba(169,199,232,.18);
    box-shadow: 0 10px 26px rgba(0,0,0,.1);
  }
  .faqMoreBtn:active{ transform: translateY(1px); }
  .faqMoreBtnChev{
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(169,199,232,.28);
    border: 1px solid rgba(169,199,232,.45);
    font-size: 14px;
    font-weight: 900;
    transition: transform .22s ease;
  }
  .faqMoreBtn.is-open .faqMoreBtnChev{
    transform: rotate(180deg);
  }
  .faqMore{
    margin-top: 18px;
    overflow: hidden;
    transition: max-height .55s ease, opacity .45s ease;
  }
  .faqMore[hidden]{
    display: none !important;
  }
  .faq summary{
    cursor:pointer;
    font-weight: 900;
    letter-spacing:.02em;
    font-size: 20px;
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }
  .faq summary::-webkit-details-marker{ display:none; }
  .faq .chev{
    width: 44px; height: 44px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    background: rgba(169,199,232,.25);
    border: 1px solid rgba(169,199,232,.45);
    font-weight: 900;
    transition: transform .18s ease;
    flex: 0 0 auto;
  }
  .faq details[open] .chev{ transform: rotate(180deg); }
  .faq .faqAnswer{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.55s ease, opacity 0.45s ease;
  }
  .faq details[open] .faqAnswer{
    max-height: 3200px;
    opacity: 1;
  }
  .faq .faqAnswer p{ margin: 14px 0 0; color: var(--muted); line-height:1.9; font-size: 18px; }
  .faq .faqAnswer p:first-child{ margin-top: 0; }
  .faq .faqAnswer ul{
    margin: 14px 0 0;
    padding: 0 0 0 1.35em;
    color: var(--muted);
    line-height: 1.85;
    font-size: 18px;
  }
  .faq .faqAnswer ul:first-child{ margin-top: 0; }
  .faq .faqAnswer li{ margin: 6px 0; }
  .faqSubSection{
    margin: 40px 0 20px;
    padding: 20px 16px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .faqSubSectionTitle{
    margin: 0;
    font-weight: 900;
    font-size: clamp(17px, 4vw, 20px);
    letter-spacing: .02em;
    color: var(--ink);
  }
  .faqSubSectionLead{
    margin: 10px 0 0;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
  }
  #faq .faq .h2{
    text-align: center;
    font-size: clamp(38px, 6vw, 62px);
    margin-top: 6px;
  }
  #faq .spacer{
    height: 60px;
  }
  
  /* ===== FLOATING LINE（SPで表示、JSでis-show付与） ===== */
  .floatingLine{
    position: fixed;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 24px);
    max-width: 640px;
    z-index: 999;
    display: none;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: transform .18s ease, opacity .18s ease;
    pointer-events: none;
  }
  
  .floatingLine.is-show{
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .floatingLine .lineBtn{
    width: 100%;
    padding: 22px 24px;
    font-size: clamp(16px, 4.8vw, 22px);
    background: #22c55e;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
    text-align: center;
    letter-spacing: .02em;
  }
  .floatingLine .lineTag{
    display: none;
  }
  .floatingLine .lineArrow{ display: none; }
  
  /* ===== REVEAL ===== */
  .reveal{ opacity:0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
  .reveal.is-in{ opacity:1; transform: translateY(0); }
  .visionContent.reveal{ transform: translateY(28px); transition: opacity .6s ease-out, transform .6s ease-out; }
  .visionContent.reveal.is-in{ opacity:1; transform: translateY(0); }
  
  /* ===== FOOTER ===== */
  footer{
    padding: 48px 0 70px;
    background: #39454d;
    color: rgba(255,255,255,.88);
  }
  .footerBar{
    width: min(var(--max), 94vw);
    margin: 0 auto;
    background: #39454d;
    border-radius: 22px;
    padding: 22px 26px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
  }
  .footerLeft{
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 52%;
  }
  .footerLogo{
    width: 140px;
    height: auto;
  }
  .footerMeta{
    flex: 1 1 auto;
    min-width: 0;
  }
  .footerCopy{
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
    font-weight: 600;
  }
  .footerCopy--small{
    margin-top: 8px;
    font-size: 12px;
    opacity: .9;
  }
  .footerWantedlyRow{
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footerWantedlyLink{
    display: inline-block;
    line-height: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    transition: opacity .15s ease, transform .15s ease;
  }
  .footerWantedlyLink:hover{
    opacity: .92;
    transform: translateY(-1px);
  }
  .footerWantedlyImg{
    display: block;
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
  }
  .footerContact{
    margin-top: 10px;
    display: grid;
    gap: 6px;
  }
  .footerContactRow{
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-size: 12px;
    color: rgba(255,255,255,.82);
    line-height: 1.4;
  }
  .footerContactKey{
    font-weight: 900;
    opacity: .85;
    white-space: nowrap;
  }
  .footerContactVal{
    font-weight: 700;
  }
  .footerBadge{
    position: absolute;
    left: 14px;
    bottom: 12px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    padding: 6px 10px;
    border-radius: 4px;
  }
  footer{
    position: relative;
  }
  .footerRight{
    display: flex;
    align-items: flex-start;
    gap: 56px;
  }
  .footerCol{
    min-width: 120px;
  }
  .footerColTitle{
    font-weight: 900;
    letter-spacing: .04em;
    font-size: 13px;
    opacity: .9;
    margin-bottom: 10px;
  }
  .footerLink{
    display: inline-block;
    font-weight: 800;
    letter-spacing: .04em;
    font-size: 14px;
    color: rgba(255,255,255,.88);
    padding: 6px 0;
  }
  .footerLink--tight{
    padding: 4px 0;
    font-size: 13px;
  }
  .footerNavLinks{
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .footerLink:hover{
    color: #fff;
    opacity: 1;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 860px){
    .grid3{ grid-template-columns: 1fr; }
    .profile{ grid-template-columns: 90px 1fr; }
    .avatar{ width:90px; height:90px; }
  }
  @media (max-width: 560px){
    section{ padding: 26px 0; }
    .heroMedia{ min-height: 100vh; }
    .heroCatchVertical{ top: 78px; }
    .heroCopy{
      left: 0;
      bottom: 36px;
      width: 100%;
      padding: 0 10px;
      gap: 10px;
      align-items: center;
      overflow: visible;
    }
    .heroCopyLine{
      font-size: clamp(18px, 5.7vw, 28px);
      padding: 10px 14px 12px;
      margin: 0 auto;
      max-width: 100%;
      text-align: center;
      white-space: nowrap;
      word-break: keep-all;
    }
    .lineTag{ font-size: 12px; }
    .floatingLine{
      display: block;
    }
    footer{ padding-bottom: 140px; }
    .footerBar{
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      padding: 20px;
    }
    .footerLeft{
      width: 100%;
      flex-direction: column;
      gap: 14px;
      align-items: flex-start;
    }
    .footerLogo{
      width: 130px;
    }
    .footerBadge{
      position: static;
      margin-top: 8px;
    }
    .footerRight{
      width: 100%;
      flex-wrap: wrap;
      gap: 22px;
    }
    .footerCol{
      min-width: 140px;
    }
    .heroBox .heroBrand{ display: none; }
    .heroWrap{
      display: flex;
      flex-direction: column-reverse;
    }
    .heroBrandSp{
      display: block;
      margin-left: auto;
      margin-bottom: 10px;
      padding: 10px 14px;
      border-radius: 14px;
      background: rgba(255,255,255,.95);
      border: 1px solid rgba(0,0,0,.08);
      color: var(--ink);
      font-weight: 900;
      letter-spacing: .03em;
      font-size: 14px;
      box-shadow: 0 4px 20px rgba(0,0,0,.1);
      width: fit-content;
    }
  }

  @media (max-width: 900px){
    .messageSection{
      min-height: auto;
      padding: 84px 0 56px;
    }
    .messageLayout{
      grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "visual"
      "body";
      gap: 26px;
    }
  .messageVisual{
    justify-self: stretch;
    width: 100%;
    margin-left: 0;
  }
    .messageHead .h2{
      font-size: clamp(30px, 8vw, 40px);
    }
    .messageBody p{
      font-size: 16px;
      line-height: 1.85;
    }

    .overviewLayout{
      grid-template-columns: 1fr;
      gap: 26px;
    }
    .overviewVisual{
      max-width: 420px;
    }
  /* 会社概要（SP）：グレー背景サイズはそのまま、ロゴだけ小さく */
  .overviewVisual img{
    width: 82%;
    height: 82%;
  }
    .overviewInfo .h2{
      font-size: clamp(28px, 7vw, 38px);
    }
    .overviewRow{
      grid-template-columns: 96px 1fr;
      gap: 12px;
      padding: 9px 0;
    }
    .overviewRow dt,
    .overviewRow dd{
      font-size: 14px;
    }
  }

  /* ===== LINE CTA（画像のボタンっぽく） ===== */
  .lineCtaCard{
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 18px 0;
  }
  
  .lineCtaBtn{
    position: relative;
    display: inline-block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 999px;
    padding: 24px 22px;
    background: linear-gradient(180deg, #08c755, #06b24a);
    text-align: center;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    transition: filter .12s ease;
    white-space: nowrap;
  }
  
  .lineCtaBtn:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    filter: saturate(1.06);
  }
  .lineCtaBtn:active{ transform: translateY(0); }
  .lineCtaBtn{ transition: transform .12s ease, box-shadow .12s ease, filter .12s ease; }
  
  .lineCtaTag{
    position: absolute;
    left: 22px;
    top: -14px;
    background: #fff;
    color: #ff4d4d;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    border: 1px solid rgba(0,0,0,.06);
    white-space: nowrap;
  }
  
  .lineCtaText{
    display: inline-block;
    font-size: clamp(17px, 2.7vw, 36px);
    letter-spacing: .01em;
    white-space: nowrap;
  }
  
  /* 親で中央寄せ（inline-blockのため） */
  .lineCtaCard{ text-align: center; }
  
  /* SPの見た目調整 */
  @media (max-width: 560px){
    .lineCtaBtn{ padding: 20px 18px; }
    .lineCtaText{ font-size: clamp(15px, 4vw, 22px); }
    .lineCtaTag{
      left: 16px;
      top: -12px;
      padding: 8px 12px;
      font-size: 14px;
    }
  }

  @media (max-width: 768px){
    .fixedLogo{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1700;
        border-bottom-right-radius: 24px;
      }

    .fixedLogoBg{
      border-bottom-right-radius: 24px;
    }
  
    .fixedLogoImg{
      width: 132px;
      max-width: none;
      max-height: none;
      padding: 14px 16px 16px 14px;
    }
  
    .mainNav{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1600;
      background: transparent;
      border-bottom: none;
      box-shadow: none;
    }
  
    .navWrap{
      width: 100%;
      min-height: 72px;
      margin: 0;
      padding: 8px 14px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      background: transparent;
    }
  
    .navLogo{
      display: none;
    }
  
    .hamburger{
      display: block;
      position: fixed;
      top: 12px;
      right: 14px;
      margin-left: 0;
      width: 56px;
      height: 56px;
      border-radius: 0;
      box-shadow: 0 4px 12px rgba(0,0,0,.12);
      z-index: 1750;
    }
  
    .mobileNav{
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        z-index: 2000;
        background: rgba(255,255,255,.98);
        border-bottom: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
        padding: 20px 18px;
      }
  
    .mainNav.is-open .mobileNav{
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
  }

 