/* ══ 体アップ 共通スタイル ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #0EA5E9;
  --orange-dark:  #0284C7;
  --orange-light: #BAE6FD;
  --yellow:       #FBBF24;
  --blue:         #6366F1;
  --blue-light:   #E0E7FF;
  --green:        #16A34A;
  --dark:         #0C4A6E;
  --gray:         #6B7280;
  --light:        #F0F9FF;
  --white:        #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 1.5rem;
  height: 56px;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--dark);
  white-space: nowrap;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.nav-logo .accent { color: var(--orange); }
.nav-links {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.nav-links a {
  text-decoration: none;
  color: #222222;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  padding: 0.2rem 0.3rem;
  display: inline-block;
}
.nav-links a:hover { color: #0EA5E9; }
.nav-links a.active { color: #0EA5E9; }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: #fff !important; }

/* ── PAGE HERO ── */
.page-hero {
  padding-top: 80px;
  background: linear-gradient(135deg, #0C4A6E 0%, #0284C7 60%, #0EA5E9 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 2.5rem 3rem;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.5); }
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: normal; color: var(--yellow); }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
}

/* ── SHARED LAYOUT ── */
section { padding: 5rem 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.heading {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.lead {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 680px;
}
.s-head { text-align: center; margin-bottom: 3.5rem; }
.s-head .lead { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .22s;
  cursor: pointer;
  border: none;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(249,115,22,.55); }
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(0,0,0,.2);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: none;
}
.btn-insta:hover { filter: brightness(1.1); transform: translateY(-2px); color: #fff; }
.btn-insta .fa-instagram { color: #fff; font-size: 1.1em; }
.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(251,191,36,.4);
}
.btn-yellow:hover { background: #F59E0B; transform: translateY(-3px); }

/* ── LOCATION BADGE ── */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── INFO CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.info-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border-top: 4px solid var(--orange);
  transition: transform .25s, box-shadow .25s;
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.12); }
.info-card-icon { font-size: 2.2rem; margin-bottom: .9rem; }
.info-card-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: .75rem;
}
.info-card-body { font-size: .92rem; color: var(--gray); line-height: 1.85; }
.info-card-body strong { color: var(--dark); font-weight: 700; }
.info-card-note { font-size: .8rem; color: #a8a29e; margin-top: .6rem; font-style: italic; }

/* ── PRICE BLOCK ── */
.price-block {
  background: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  margin-bottom: 1.75rem;
}
.price-block-head {
  background: var(--orange);
  color: #fff;
  padding: 1rem 1.75rem;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.price-block-body { padding: 1.5rem 1.75rem; }
.price-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.price-table th {
  text-align: left;
  padding: .55rem .75rem;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: .82rem;
}
.price-table td { padding: .55rem .75rem; border-bottom: 1px solid #f0ebe6; color: var(--dark); }
.price-table tr:last-child td { border-bottom: none; }
.price-table .amount { font-weight: 900; color: var(--orange-dark); }
.price-note { font-size: .82rem; color: var(--gray); margin-top: 1rem; line-height: 1.8; }
.price-note li { list-style: none; padding-left: 1rem; position: relative; }
.price-note li::before { content: '※'; position: absolute; left: 0; color: var(--orange); }

/* ── NOTICE BANNER ── */
.notice-banner {
  background: linear-gradient(130deg, var(--orange) 0%, #FB923C 100%);
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.notice-banner span { font-size: 1.6rem; }

/* ── SECTION BG ── */
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--dark); }
.bg-orange { background: linear-gradient(130deg, var(--orange) 0%, #FB923C 100%); color: #fff; }

/* ── CHECKLIST ── */
.checklist { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.checklist li { display: flex; gap: .75rem; color: var(--gray); font-size: .97rem; line-height: 1.7; }
.checklist li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; margin-top: .1rem; }

/* ── STAFF CARDS ── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.staff-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid var(--orange);
}
.staff-card:nth-child(even) { border-top-color: var(--blue); }
.staff-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.12); }
.staff-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--orange-light);
  overflow: hidden;
}
.staff-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.staff-card:nth-child(even) .staff-avatar {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-color: var(--blue-light);
}
.staff-role { font-size: .78rem; font-weight: 700; color: var(--orange); margin-bottom: .4rem; letter-spacing: .06em; }
.staff-card:nth-child(even) .staff-role { color: var(--blue); }
.staff-qual { font-size: .85rem; color: var(--dark); font-weight: 700; margin-bottom: .3rem; }
.staff-hobby { font-size: .82rem; color: var(--gray); }

/* ── RECRUIT CARD ── */
.recruit-section { margin-bottom: 3rem; }
.recruit-label {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.job-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.job-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border-left: 5px solid var(--orange);
  transition: transform .25s;
}
.job-card:hover { transform: translateY(-4px); }
.job-title { font-size: 1.05rem; font-weight: 900; margin-bottom: 1rem; }
.job-row { display: flex; gap: .5rem; margin-bottom: .5rem; font-size: .88rem; align-items: flex-start; }
.job-key { color: var(--orange); font-weight: 700; min-width: 3.5rem; flex-shrink: 0; }
.job-val { color: var(--gray); }

/* ── ACCESS TABLE ── */
.access-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.access-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border-top: 4px solid var(--orange);
  transition: transform .25s;
}
.access-card:hover { transform: translateY(-4px); }
.access-name { font-size: 1.1rem; font-weight: 900; margin-bottom: 1rem; color: var(--dark); }
.access-row { display: flex; gap: .6rem; margin-bottom: .45rem; font-size: .88rem; align-items: flex-start; }
.access-key { color: var(--orange); font-weight: 700; min-width: 2.5rem; flex-shrink: 0; }
.access-val { color: var(--gray); }

/* ── COMPANY TABLE ── */
.company-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.company-table th {
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 700;
  width: 200px;
  border-bottom: 2px solid #fff;
  vertical-align: top;
}
.company-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0ebe6;
  color: var(--dark);
  vertical-align: top;
}
.company-table tr:last-child td { border-bottom: none; }

/* ── IMPORTANT DOC ── */
.doc-section { margin-bottom: 2.5rem; }
.doc-h2 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--orange-dark);
  border-left: 4px solid var(--orange);
  padding-left: .85rem;
  margin-bottom: 1rem;
}
.doc-h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1rem 0 .5rem;
}
.doc-body { font-size: .9rem; color: var(--gray); line-height: 1.9; }
.doc-list { list-style: none; padding-left: 1rem; }
.doc-list li { position: relative; padding-left: .8rem; margin-bottom: .3rem; }
.doc-list li::before { content: '・'; position: absolute; left: 0; color: var(--orange); }
.doc-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  margin-bottom: 2rem;
}
.doc-divider { border: none; border-top: 2px dashed var(--orange-light); margin: 3rem 0; }

/* ── VACANCY TABLE ── */
.vacancy-table { width: 100%; border-collapse: collapse; font-size: .9rem; text-align: center; }
.vacancy-table th {
  padding: .65rem .5rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}
.vacancy-table td {
  padding: .65rem .5rem;
  border-bottom: 1px solid #f0ebe6;
  border-right: 1px solid #f0ebe6;
}
.vacancy-table td:first-child { text-align: left; font-weight: 700; white-space: nowrap; background: var(--orange-light); color: var(--orange-dark); }
.vacancy-table tr:last-child td { border-bottom: none; }
.v-ok  { color: #16A34A; font-weight: 900; font-size: 1.1rem; }
.v-few { color: var(--orange); font-weight: 900; font-size: 1.1rem; }
.v-no  { color: #DC2626; font-weight: 900; font-size: 1.1rem; }
.v-na  { color: #a8a29e; }
.vacancy-legend { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.25rem; font-size: .88rem; }
.vacancy-legend span { display: flex; align-items: center; gap: .4rem; }

/* ── WORKPLACE LIST ── */
.wp-category { margin-bottom: 2.5rem; }
.wp-cat-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
  border-left: 4px solid var(--orange);
  padding-left: .85rem;
  margin-bottom: 1rem;
}
.wp-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.wp-list li {
  display: flex;
  gap: .75rem;
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.75;
  padding: .75rem 1rem;
  background: var(--white);
  border-radius: .75rem;
  align-items: flex-start;
}
.wp-list li::before { content: '●'; color: var(--orange); font-size: .6rem; flex-shrink: 0; margin-top: .45rem; }

/* ── CTA ── */
.cta { background: var(--dark); text-align: center; }
.cta .eyebrow { color: var(--orange); }
.cta .heading { color: #fff; margin-bottom: 1rem; }
.cta-sub { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 1.8rem; }
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color .2s;
}
.cta-email:hover { color: #FDE68A; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #0C0A09; padding: 3rem 2.5rem 1.5rem; }
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-name { font-size: 1.1rem; font-weight: 900; color: #fff; margin-bottom: .4rem; }
.footer-name span { color: var(--orange); }
.footer-tag { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-nav { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; max-width: 700px; }
.footer-nav a {
  text-decoration: none;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-copy {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── INSTAGRAM LINK ── */
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  transition: color .2s;
  margin-top: .75rem;
}
.insta-link:hover { color: #E1306C; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .access-grid, .job-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 3.5rem 1.25rem; }
  .notice-banner { flex-direction: column; text-align: center; }
  .company-table th { width: 120px; }
  .vacancy-legend { gap: 1rem; }
}
