/* ============================================================
   BUZZWORK 横浜港南 — 共通スタイル
   ブランドカラー: Orange #FF7A00 / Navy #1A1A2E
   ============================================================ */

:root {
  --orange: #FF7A00;
  --orange-dark: #e56d00;
  --orange-soft: #fff3e8;
  --navy: #1A1A2E;
  --navy-soft: #2a2a44;
  --gray: #5a5a6a;
  --line: #ececf0;
  --bg-soft: #f7f7fb;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
  --max: 1120px;
  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
    "Yu Gothic", Meiryo, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.9;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 90%; max-width: var(--max); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { height: 38px; width: auto; }
.logo-text { font-weight: 800; font-size: 20px; letter-spacing: 0.04em; line-height: 1.1; }
.logo-text .buzz { color: var(--orange); }
.logo-text .work { color: var(--navy); }
.logo-sub { font-size: 11px; color: var(--gray); letter-spacing: 0.06em; display: block; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--navy);
  border-radius: 8px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--orange); }
.nav a.active { color: var(--orange); }
.nav .btn-nav {
  background: var(--orange); color: #fff; margin-left: 8px;
}
.nav .btn-nav:hover { background: var(--orange-dark); color: #fff; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  margin: 5px auto; transition: .3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255,122,0,.28); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg-soft);
  color: var(--navy); padding: 44px 0 64px;
}
.hero .container { position: relative; z-index: 2; }
.hero-sub { font-size: clamp(20px, 2.6vw, 27px); font-weight: 800; color: var(--navy); line-height: 1.5; margin-bottom: 12px; }
.hero-sub .hl { color: #fff; }

/* 薄いオレンジのパネルで文字と写真を一体化（ネイビーは外側背景） */
/* 1枚絵の背景（女性＋装飾オレンジ）に文字を重ねる */
.hero-panel {
  position: relative; overflow: hidden; border-radius: 28px;
  background: #FDA23A url("../images/hero-bg.jpg") right center / cover no-repeat;
  box-shadow: 0 30px 70px rgba(0,0,0,.34);
  aspect-ratio: 2752 / 1536; min-height: 430px; display: flex; align-items: center;
}
.hero-text { position: relative; z-index: 2; width: 55%; max-width: 640px; padding: 40px 20px 40px 58px; }
.hero p.lead { margin-top: 18px; font-size: 16px; max-width: 500px; color: #5a3d12; font-weight: 500; }
.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(26,26,46,.25); }
.btn-navy:hover { background: #2a2a44; color: #fff; transform: translateY(-2px); }
.hero-bg-mobile { display: none; }

/* ---------- Page hero (下層) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a2a4a 100%);
  color: #fff; position: relative; overflow: hidden;
  min-height: 210px; display: flex; align-items: center; padding: 28px 0;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 30%, rgba(255,122,0,.3), transparent 45%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .en { color: var(--orange); font-weight: 800; letter-spacing: .15em; font-size: 14px; }
.page-hero h1 { font-size: clamp(26px, 4vw, 38px); margin-top: 6px; }
.page-hero h1 .hl-orange { color: var(--orange); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 54px; }
.section-head .en {
  display: block; color: var(--orange); font-weight: 800;
  letter-spacing: .18em; font-size: 14px; margin-bottom: 8px;
}
.section-head h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; }
.section-head p { color: var(--gray); margin-top: 14px; }

/* ---------- MVV ---------- */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 30px; text-align: center; box-shadow: var(--shadow);
  transition: transform .25s;
}
.mvv-card:hover { transform: translateY(-6px); }
.mvv-card .label { color: var(--orange); font-weight: 800; letter-spacing: .1em; font-size: 15px; }
.mvv-card .hexicon { width: 56px; height: 56px; margin: 0 auto 18px; }
.mvv-card h3 { font-size: 18px; margin: 14px 0 10px; line-height: 1.6; }
.mvv-card p { color: var(--gray); font-size: 14px; }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.service-card .thumb {
  height: 168px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange) 0%, #ffb066 100%);
}
.service-card .thumb.navy { background: linear-gradient(135deg, var(--navy) 0%, #3a3a5c 100%); }
.service-card .thumb svg { width: 72px; height: 72px; }
.service-card .body { padding: 28px 26px; flex: 1; }
.service-card h3 { font-size: 19px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14.5px; }

/* ---------- Feature list ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: #fff; border-radius: var(--radius); padding: 34px 28px;
  border: 1px solid var(--line);
}
.feature .num { color: var(--orange); font-weight: 800; font-size: 14px; letter-spacing: .1em; }
.feature h3 { font-size: 18px; margin: 10px 0; }
.feature p { color: var(--gray); font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps { max-width: 760px; margin: 0 auto; }
.step { display: flex; gap: 24px; padding: 26px 0; border-bottom: 1px dashed var(--line); }
.step:last-child { border-bottom: none; }
.step .no {
  flex: 0 0 52px; height: 52px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--gray); font-size: 14.5px; }

/* ---------- Table (会社概要) ---------- */
.info-table { width: 100%; border-collapse: collapse; background: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.info-table th, .info-table td { text-align: left; padding: 20px 26px; border-bottom: 1px solid var(--line); font-size: 15px; }
.info-table th { width: 32%; background: var(--bg-soft); font-weight: 700; vertical-align: top; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.note-tag { display: inline-block; background: var(--orange-soft); color: var(--orange-dark);
  font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 999px; margin-left: 8px; }

/* ---------- Message with photo ---------- */
.msg-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; margin-bottom: 56px; }
.msg-photo img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); display: block; }
.msg-body .en { color: var(--orange); font-weight: 800; letter-spacing: .16em; font-size: 13px; }
.msg-body h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin: 8px 0 18px; }
.msg-body p { color: var(--gray); font-size: 15.5px; }
@media (max-width: 860px) { .msg-split { grid-template-columns: 1fr; gap: 28px; } .msg-photo { max-width: 440px; margin: 0 auto; } }

/* ---------- Recruit ---------- */
.job-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 30px;
}
.job-card .job-head {
  background: linear-gradient(135deg, var(--navy), #2f2f52); color: #fff;
  padding: 26px 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.job-card .job-head h3 { font-size: 21px; }
.job-card .badge { background: var(--orange); color: #fff; padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.job-card .job-body { padding: 8px 30px 10px; }
.job-row { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.job-row:last-child { border-bottom: none; }
.job-row .k { color: var(--gray); font-weight: 700; font-size: 14px; }
.job-row .v { font-size: 15px; }
.job-row .v .salary { color: var(--orange-dark); font-weight: 800; font-size: 19px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--orange-soft); color: var(--orange-dark); padding: 5px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a44 100%);
  color: #fff; text-align: center; padding: 72px 0;
}
.cta h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.cta p { margin: 14px 0 30px; font-size: 16px; }
.cta .btn-white { box-shadow: 0 10px 24px rgba(0,0,0,.15); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-box h3 { font-size: 19px; margin-bottom: 8px; }
.contact-box .big { font-size: 28px; font-weight: 800; color: var(--navy); margin: 10px 0; }
.contact-box .muted { color: var(--gray); font-size: 14px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.form-field label .req { color: var(--orange); font-size: 12px; margin-left: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15px; background: var(--bg-soft);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--orange); border-color: transparent; }

/* ---------- Alert / notice ---------- */
.notice {
  background: var(--orange-soft); border: 1px solid #ffd9b3; border-radius: 12px;
  padding: 16px 20px; color: var(--orange-dark); font-size: 14px; margin-top: 24px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c9c9d6; padding: 60px 0 28px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 13.5px; margin-top: 14px; max-width: 320px; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13.5px; padding: 5px 0; color: #b7b7c8; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px;
  font-size: 12.5px; color: #8a8a9c; text-align: center; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13px; color: var(--gray); padding: 18px 0; }
.breadcrumb a:hover { color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 5%;
    transform: translateY(-140%); transition: transform .3s; gap: 2px; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 8px; }
  .nav .btn-nav { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: block; }
  .mvv-grid, .service-grid, .features, .contact-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 40px 0; }
  .hero-panel {
    display: block; aspect-ratio: auto; min-height: 0;
    background: linear-gradient(160deg, #FEB65C 0%, #FDA23A 100%);
  }
  .hero-text { width: 100%; max-width: none; padding: 36px 26px 6px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-bg-mobile { display: block; width: 100%; border-radius: 0 0 28px 28px; }
  .job-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-top { flex-direction: column; }
}
