/* ===========================================================================
   recruit-pc.css
   ストレッチゼロ 採用サイト PC版装飾レイヤー（LP本体 pc.html トークン継承）
   - 既存 SP 埋め込み <style> をベースに、PC閲覧時の装飾・情報密度を拡張
   - 命名規則: .sz-pc-*（SP既存クラスと衝突させない）
   - 読み込み条件: PC判定(1024px以上) or pc.html から明示 <link>
   - 作成: 2026-04-21 / 担当: サム
   =========================================================================== */

/* ---------- PC コンテナ・幅拡張 ---------- */
@media (min-width: 1024px) {
  .wrap,
  .hd__in,
  .sec p.lead,
  .area-grid,
  .pos-list,
  .why-list,
  .flow,
  footer .f-nav,
  .final-cta .btn-group,
  .breadcrumb {
    max-width: 1180px;
  }

  /* セクション余白拡大 */
  .sec { padding: 112px 0; }
  .sec h2 { font-size: 40px; margin-bottom: 54px; }
  .sec .kicker { font-size: 15px; letter-spacing: 3px; }
  .sec p.lead { font-size: 18px; line-height: 2.1; }

  /* FV拡張 */
  .fv { min-height: 680px; }
  .fv__in { min-height: 680px; padding: 120px 40px; }
  .fv h1 { font-size: 56px; line-height: 1.45; max-width: 1000px; }
  .fv h1 em { position: relative; }
  .fv .sub { font-size: 19px; max-width: 760px; }
  .fv .pill { font-size: 12px; letter-spacing: 3.5px; padding: 7px 18px; }
  .fv .marks span { font-size: 13px; padding: 7px 16px; }
}

@media (min-width: 1280px) {
  .wrap, .hd__in { max-width: 1200px; padding-left: 30px; padding-right: 30px; }
  .sec h2 { font-size: 46px; }
  .fv h1 { font-size: 62px; }
}

/* ---------- EN半透明大見出し（セクション背景装飾） ---------- */
.sz-pc-bg-text {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-en), "Roboto", sans-serif;
  font-weight: 900;
  font-size: 180px;
  line-height: 1;
  letter-spacing: -4px;
  color: rgba(255, 140, 0, 0.07);
  white-space: nowrap;
  z-index: 0;
}
.sz-pc-bg-text--light { color: rgba(255, 255, 255, 0.05); }
.sz-pc-bg-text--dark  { color: rgba(15, 15, 15, 0.07); }

/* セクションを相対化して bg-text を内側に */
.sec { position: relative; overflow: hidden; }
.sec > * { position: relative; z-index: 1; }

@media (max-width: 1023px) {
  .sz-pc-bg-text { display: none; }
}

@media (min-width: 1440px) {
  .sz-pc-bg-text { font-size: 220px; }
}

/* ---------- Card hover（LP本体流用） ---------- */
.sz-pc-card-hover {
  transition: transform .4s cubic-bezier(.22,.61,.36,1),
              box-shadow .4s cubic-bezier(.22,.61,.36,1);
}
.sz-pc-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 140, 0, 0.25);
}

/* ---------- ボタン光沢（LP本体流用） ---------- */
.sz-pc-btn-shine { position: relative; overflow: hidden; }
.sz-pc-btn-shine::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  animation: sz-pc-shine 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sz-pc-shine {
  0%   { left: -60%; }
  50%  { left: 120%; }
  100% { left: 120%; }
}

/* ---------- FV Ken Burns 3スライダー（LP本体 fv-slide 流用） ---------- */
.sz-pc-fv-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.sz-pc-fv-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  animation: sz-pc-kb 18s ease-in-out infinite alternate;
}
.sz-pc-fv-slide--active { opacity: 1; }
@keyframes sz-pc-kb {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}
.sz-pc-fv-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.sz-pc-fv-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
  border: 0;
  padding: 0;
}
.sz-pc-fv-dot--active {
  background: var(--sz-orange);
  width: 28px;
  border-radius: 5px;
}

/* ---------- FAB 固定ボタン（LP本体流用） ---------- */
.sz-pc-fab {
  position: fixed;
  right: 32px; bottom: 32px;
  z-index: 50;
  width: 94px; height: 94px;
  border-radius: 50%;
  background: var(--sz-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  line-height: 1.35;
  box-shadow: 0 12px 32px rgba(255,140,0,.5);
  animation: sz-pc-fabpulse 2.5s ease-in-out infinite;
  border: 0;
  cursor: pointer;
}
.sz-pc-fab svg {
  width: 26px; height: 26px;
  fill: #fff;
  margin-bottom: 4px;
}
@keyframes sz-pc-fabpulse {
  0%,100% { box-shadow: 0 12px 32px rgba(255,140,0,.5), 0 0 0 0 rgba(255,140,0,.5); }
  50%     { box-shadow: 0 12px 32px rgba(255,140,0,.5), 0 0 0 16px rgba(255,140,0,0); }
}
@media (max-width: 767px) {
  .sz-pc-fab { display: none; } /* SPでは既存UI優先 */
}

/* ---------- Modal 店舗選択（LP本体流用） ---------- */
.sz-pc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sz-pc-modal.sz-pc-modal--open { display: flex; }
.sz-pc-modal__box {
  background: #fff;
  color: var(--sz-text);
  border-radius: 12px;
  padding: 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.sz-pc-modal__box h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--sz-text);
}
.sz-pc-modal__box p {
  font-size: 13px;
  color: #666;
  margin-bottom: 18px;
}
.sz-pc-modal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  list-style: none;
  padding: 0;
}
.sz-pc-modal__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--sz-orange);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: filter .2s;
}
.sz-pc-modal__list a:hover { filter: brightness(1.1); }
.sz-pc-modal__close {
  width: 100%;
  padding: 13px;
  background: #eee;
  border-radius: 6px;
  color: #333;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}

/* ---------- PC hero 追加装飾 ---------- */
@media (min-width: 1024px) {
  /* FVオーバーレイ強化 */
  .fv__ovl {
    background: linear-gradient(180deg,
      rgba(0,0,0,.3) 0%,
      rgba(0,0,0,.5) 40%,
      rgba(0,0,0,.85) 100%);
  }

  /* FV EN 大装飾ワード（FVヒーロー裏に薄く） */
  .sz-pc-fv-deco {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-family: var(--font-en), "Roboto", sans-serif;
    font-weight: 900;
    font-size: 260px;
    color: rgba(255, 140, 0, 0.08);
    letter-spacing: -8px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    line-height: 1;
    white-space: nowrap;
  }
}

/* ---------- セクションID別 EN大見出し自動装飾（:before） ---------- */
@media (min-width: 1024px) {
  .sec::before {
    content: "";
    position: absolute;
    top: 32px;
    left: -40px;
    font-family: var(--font-en), "Roboto", sans-serif;
    font-weight: 900;
    font-size: 200px;
    line-height: 1;
    letter-spacing: -8px;
    color: rgba(255, 140, 0, 0.055);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  /* 共通（採用トップ） */
  .sec#message::before     { content: "MESSAGE"; }
  .sec#areas::before       { content: "AREAS";     color: rgba(255,255,255,.04); }
  .sec#positions::before   { content: "POSITIONS"; }
  .sec#why::before         { content: "WHY";       color: rgba(255,255,255,.04); }
  .sec#supervisor::before  { content: "SUPERVISOR"; font-size: 160px; }
  .sec#flow::before        { content: "FLOW";      color: rgba(255,255,255,.04); }
  .sec#faq::before         { content: "FAQ"; }

  /* 県別LP */
  .sec#prefecture-intro::before { content: "YAMANASHI"; font-size: 170px; }
  .sec#stores::before      { content: "STORES"; }
  .sec#stats::before       { content: "STATS"; color: rgba(255,255,255,.04); }
  .sec#jobs::before        { content: "JOBS"; }

  /* 店舗詳細 */
  .sec#job-detail::before  { content: "JOB"; }
  .sec#location::before    { content: "LOCATION"; color: rgba(255,255,255,.04); }
  .sec#benefits::before    { content: "BENEFITS"; }
  .sec#shop-info::before   { content: "SHOP"; }
  .sec#compensation::before{ content: "REWARD"; font-size: 170px; color: rgba(255,255,255,.04); }
  .sec#schedule::before    { content: "HOURS"; }
  .sec#apply::before       { content: "APPLY"; color: rgba(255,255,255,.04); }

  /* 進出予告 */
  .sec#announcement::before{ content: "COMING SOON"; font-size: 140px; }
  .sec#prepare::before     { content: "PREPARE"; color: rgba(255,255,255,.04); }

  /* セクション内コンテンツをz-index:1で上に */
  .sec > *:not(.sz-pc-bg-text) { position: relative; z-index: 1; }
}

/* ---------- セクション別背景を交互化（ビジュアルリズム） ---------- */
@media (min-width: 1024px) {
  .sz-pc-section-alt {
    background: linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
  }
  .sz-pc-section-orange {
    background: linear-gradient(180deg,
      rgba(255, 140, 0, 0.04) 0%,
      rgba(255, 140, 0, 0.01) 100%);
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
  }
}

/* ---------- PCヘッダー強化 ---------- */
@media (min-width: 1024px) {
  .hd { backdrop-filter: blur(12px); }
  .hd__in { padding: 16px 30px; }
  .hd .logo img.mark { width: 42px; height: 42px; }
  .hd .logo img.txt  { height: 26px; }
  .hd .badge {
    font-size: 11px;
    padding: 4px 11px;
    letter-spacing: 1.5px;
  }
  .hd nav a {
    font-size: 14px;
    padding: 0 14px;
    font-weight: 600;
  }
}

/* ---------- Card群 大型化 ---------- */
@media (min-width: 1024px) {
  .area { border-radius: 14px; }
  .area__hd { padding: 28px 28px 0; }
  .area__hd h3 { font-size: 24px; }
  .area__body { padding: 18px 28px 28px; }
  .area__body p { font-size: 15px; line-height: 2; }
  .area__btn { font-size: 14px; padding: 13px 22px; }

  .pos { border-radius: 14px; }
  .pos__body { padding: 26px 26px 28px; }
  .pos__title { font-size: 19px; line-height: 1.55; }
  .pos__sub { font-size: 14px; line-height: 2; }
  .pos__meta { font-size: 13px; gap: 8px 14px; }
  .pos__btn { font-size: 14px; padding: 13px 22px; }

  .why-item { padding: 32px 28px; border-radius: 10px; }
  .why-item .n { font-size: 36px; margin-bottom: 12px; }
  .why-item h3 { font-size: 17px; margin-bottom: 10px; }
  .why-item p { font-size: 14px; line-height: 1.95; }

  .flow-item { padding: 28px 26px; border-radius: 12px; }
  .flow-item h3 { font-size: 17px; }
  .flow-item p { font-size: 14px; }

  .msg-block {
    padding: 44px 48px;
    max-width: 920px;
    border-radius: 0 14px 14px 0;
  }
  .msg-block h3 { font-size: 22px; margin-bottom: 16px; }
  .msg-block p { font-size: 16px; }

  .sup-wrap {
    grid-template-columns: 280px 1fr;
    gap: 50px;
    max-width: 1080px;
  }
  .sup-wrap .ph { width: 280px; border-radius: 14px; }
  .sup-wrap h3 { font-size: 26px; }
  .sup-wrap p  { font-size: 16px; }

  .faq summary { font-size: 18px; padding: 26px 32px; }
  .faq .ans    { font-size: 15px; padding: 0 32px 28px 62px; line-height: 2.05; }

  .final-cta { padding: 112px 40px; }
  .final-cta h2 { font-size: 40px; line-height: 1.45; }
  .final-cta p  { font-size: 18px; }
  .final-cta .btn { font-size: 15px; padding: 16px 22px; }
}

/* ---------- PC reveal アニメ強化 ---------- */
@media (min-width: 1024px) {
  [data-r] { transform: translateY(36px); transition-duration: 1s; }
}

/* ---------- SP/PC導線案内（footer等） ---------- */
.sz-pc-switch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
  padding: 6px 12px;
  border: 1px solid rgba(255, 140, 0, 0.4);
  border-radius: 3px;
  transition: all .2s;
  font-family: var(--font-en);
  letter-spacing: 1px;
}
.sz-pc-switch-link:hover {
  color: var(--sz-orange);
  border-color: var(--sz-orange);
}
