:root {
  color-scheme: light;
  --red: #d94135;
  --ink: #172033;
  --text: #344054;
  --muted: #6b7280;
  --line: #e6e9ef;
  --soft: #f7f5ef;
  --mint: #eaf6f1;
  --green: #28735d;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 430px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 18px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  width: 70px;
  height: auto;
  display: block;
}

.brand-home {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--ink);
  align-content: center;
  min-height: 39px;
  text-decoration: none;
}

.brand-prefix {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand-name {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  white-space: nowrap;
  text-decoration: none;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-group[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-group-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(23, 32, 51, .16);
}

.nav-group-menu a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
}

.nav-group-menu a:hover {
  background: var(--soft);
}

.site-nav .nav-register-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfe7dc;
  border-radius: 999px;
  padding: 0 13px;
  background: #eff8f4;
  color: var(--green);
  font-weight: 700;
}

.site-nav .nav-mypage-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #f1b9b3;
  border-radius: 999px;
  padding: 0 13px;
  background: #fff8f7;
  color: var(--red);
  font-weight: 700;
}

.mobile-nav {
  display: none;
}

.nav-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(23, 32, 51, .08);
}

.nav-cta,
.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(217, 65, 53, .22);
}

.button.secondary {
  border-color: #cfe7dc;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(40, 115, 93, .18);
}

.hero {
  overflow: hidden;
  padding: 64px 0 44px;
  background: linear-gradient(180deg, #fff 0%, #fff 45%, var(--soft) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

@media (min-width: 981px) {
  .hero-grid {
    align-items: start;
  }

  .hero-grid > div:first-child {
    padding-top: 52px;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(38px, 3.55vw, 46px);
  line-height: 1.16;
}

h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
}

.lead {
  margin-top: 22px;
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
}

.text-nowrap {
  white-space: nowrap;
}

.internal-comment {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d8b4fe;
  border-radius: 8px;
  padding: 8px 10px;
  background: #faf5ff;
  color: #6b21a8 !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.lead.internal-comment {
  display: inline-flex;
  margin-top: 18px;
  font-size: 14px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
}

.hero-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
  box-shadow: 0 24px 64px rgba(23, 32, 51, .15);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-brand-panel {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  display: grid;
  gap: 3px;
  max-width: calc(100% - 60px);
  text-shadow: none;
}

.hero-brand-panel::before {
  content: none;
}

.hero-brand-panel strong {
  color: #23483f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-brand-panel small {
  color: #526175;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}

.support-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 16px 38px rgba(23, 32, 51, .18);
}

.support-card div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .94);
}

.support-card strong {
  display: block;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.support-card span {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--mint);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
}

section {
  padding: 74px 0;
}

.campaign-section {
  padding: 42px 0 68px;
  background: linear-gradient(180deg, var(--soft) 0%, #ffffff 100%);
}

.campaign-banner {
  min-height: 156px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e9a49c;
  border-radius: 10px;
  padding: 32px 36px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .96) 0%, rgba(255, 248, 247, .94) 52%, rgba(234, 246, 241, .96) 100%),
    linear-gradient(90deg, var(--red), var(--green));
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(31, 42, 68, .1);
}

.campaign-banner-illustration {
  width: 190px;
  height: 126px;
  display: block;
  object-fit: contain;
  justify-self: center;
}

.campaign-banner span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 11px;
  background: var(--red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.campaign-banner h2 {
  margin-top: 10px;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.22;
}

.campaign-banner p {
  margin-top: 10px;
  max-width: 690px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.campaign-banner strong {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--red);
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
}

.jobs-campaign-banner {
  margin-bottom: 34px;
}

.election-hero {
  padding: 70px 0;
  background: linear-gradient(125deg, #fff8f6 0%, #f5faf7 100%);
}

.election-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 56px;
  align-items: center;
}

.election-hero h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.12;
}

.election-hero-focused {
  padding: 64px 0 58px;
}

.election-hero-focused h1 {
  max-width: none;
  font-size: clamp(34px, 4.8vw, 62px);
}

.mobile-only {
  display: none;
}

.election-hero .lead {
  max-width: 720px;
  margin-top: 22px;
}

.election-hero img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.election-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.election-intro-section {
  padding-bottom: 82px;
}

.election-intro-focused {
  padding: 54px 0 0;
}

.election-notice-panel {
  border-left: 4px solid var(--green);
  padding: 4px 0 4px 24px;
}

.election-notice-panel p {
  font-size: 17px;
  line-height: 1.9;
}

.election-notice-panel a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.election-detail-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.election-detail-link-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid #b9d8ce;
  border-radius: 8px;
  padding: 7px 15px;
  background: #f3f8f6;
  transition: background .2s ease, transform .2s ease;
}

.election-detail-link-row a::after {
  content: "↓";
  font-size: 14px;
}

.election-detail-link-row a:hover {
  background: #e8f2ee;
  transform: translateY(-1px);
}

.election-intro-grid,
.election-section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 60px;
  align-items: end;
}

.election-intro-grid h2,
.election-section-head h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
}

.election-intro-grid > p,
.election-section-head > p {
  color: var(--muted);
  line-height: 1.9;
}

.election-work-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.election-work-types article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: #fff;
}

.election-work-types b {
  color: var(--red);
  font-size: 14px;
}

.election-work-types h3 {
  margin-top: 18px;
  font-size: 21px;
}

.election-work-types p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.election-areas-section {
  padding: 82px 0;
  background: var(--soft);
}

.election-area-list {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}

.election-area {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.election-area > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfa;
}

.election-area > header h3 {
  font-size: 25px;
}

.election-area > header span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 12px;
  background: #f5e9e7;
  color: #a13930;
  font-size: 13px;
  font-weight: 700;
}

.election-municipalities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.election-municipalities article {
  padding: 25px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.election-municipalities article:nth-child(2n) {
  border-right: 0;
}

.election-municipalities h4 {
  font-size: 19px;
}

.election-municipalities ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.election-municipalities li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.election-municipalities li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.election-more-note {
  margin-top: 26px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.election-briefing-section {
  padding: 82px 0;
}

.election-briefing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}

.election-briefing-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  background: #fff;
}

.election-briefing-grid article > span {
  color: var(--red);
  font-weight: 700;
}

.election-briefing-grid h3 {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.election-briefing-grid article > p {
  margin-top: 6px;
  color: var(--muted);
}

.election-session-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.election-session-times li {
  margin: 0;
}

.election-session-times a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #a9d0c3;
  border-radius: 999px;
  padding: 9px 15px;
  background: #eef6f3;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.election-session-times a::after {
  content: "→";
  font-size: 15px;
}

.election-session-times a:hover {
  border-color: var(--green);
  background: #e2f1ec;
  transform: translateY(-1px);
}

.election-session-times small {
  border-left: 1px solid #a9d0c3;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 700;
}

.election-slot-closed {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7dce2;
  border-radius: 999px;
  padding: 9px 15px;
  background: #f4f5f7;
  color: #737b86;
  font-weight: 700;
}

.election-slot-closed small {
  border-left: 1px solid #d7dce2;
  padding-left: 10px;
  font-size: 12px;
}

.election-job-area > header {
  justify-content: flex-start;
}

.election-job-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.election-job-list article {
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.election-job-list article:nth-child(2n) {
  border-right: 0;
}

.election-job-title {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 20px;
}

.election-job-title b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
}

.election-job-status {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  padding: 6px 11px;
  background: #f3e9e7;
  color: #a13d33;
  font-size: 12px;
  font-weight: 800;
}

.election-job-list dl {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.election-job-list dl div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  line-height: 1.75;
}

.election-job-list dt {
  color: var(--muted);
  font-weight: 700;
}

.election-job-list dd {
  white-space: pre-line;
}

.election-briefing-grid dl {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.election-briefing-grid dl div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  line-height: 1.65;
}

.election-briefing-grid dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.election-briefing-grid dd {
  margin: 0;
}

.election-cta {
  margin-top: 0;
}

.page-hero {
  background: #fbf8f1;
}

.page-hero.compact {
  padding: 54px 0;
}

.registration-section {
  padding: 28px 0 74px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 54px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.9;
}

.jobs-section {
  background: #f4f9f6;
}

.jobs-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.jobs-section .kicker::before {
  width: 46px;
  height: 4px;
}

.jobs-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  margin-top: 12px;
  border: 1px solid #d9aa42;
  border-radius: 999px;
  padding: 5px 15px;
  background: #fff0c7;
  color: #764c08;
  box-shadow: 0 4px 12px rgba(135, 93, 18, .1);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.jobs-count-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.jobs-list-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 12px;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 6px 22px;
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.jobs-list-link:hover {
  background: var(--green);
  color: #fff;
}

.notice-section {
  padding: 36px 0 24px;
  background: #fff;
}

.notice-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.notice-head {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.notice-head h2 {
  margin-top: 8px;
  font-size: 28px;
}

.notice-head p {
  color: var(--muted);
  line-height: 1.8;
}

.notice-list {
  display: grid;
}

.notice-item {
  display: grid;
  gap: 8px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.notice-item:last-child {
  border-bottom: 0;
}

.notice-item div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.notice-item span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  background: #fff;
}

.notice-item h3 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.notice-item p {
  color: var(--muted);
  line-height: 1.75;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.job-search {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.job-search label {
  color: var(--ink);
  font-weight: 600;
}

.search-clear-button {
  min-width: 92px;
}

.search-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.list-count {
  margin: 0 0 14px;
}

.group-switch {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: #fff;
}

.group-switch button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
}

.group-switch button.active {
  background: var(--red);
  color: #fff;
}

.job-groups {
  display: grid;
  gap: 24px;
}

.job-group {
  display: grid;
  gap: 14px;
  padding: 0;
}

.job-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.job-group-head h2 {
  margin-top: 0;
  font-size: 24px;
}

.job-group-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.job-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.job-card > :first-child {
  min-height: 108px;
}

.job-card h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.job-tag {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--mint);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
}

.job-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.job-card dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
}

.job-card dt {
  color: var(--ink);
  font-weight: 800;
}

dt {
  color: var(--muted);
  font-weight: 500;
}

dd {
  margin: 0;
  font-weight: 400;
  line-height: 1.7;
}

.job-card-conditions,
.job-detail-conditions {
  white-space: pre-line;
}

.active-job {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  margin-left: 7px;
  border-radius: 999px;
  padding: 0 8px;
  background: #fff2f1;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}

.disabled-button {
  border-color: var(--line);
  background: #f1f3f6;
  color: var(--muted);
}

.job-card .button {
  align-self: end;
  justify-self: center;
  min-height: 46px;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 0 28px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  box-shadow: none;
}

.job-card .button:hover {
  background: #1f6f5a;
}

.empty {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 400;
}

.section-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.section-more-link::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--green);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow: visible;
}

.step {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step b {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.step b::after {
  content: "";
  position: absolute;
  left: calc(100% + 16px);
  top: 50%;
  width: 56px;
  height: 8px;
  background:
    radial-gradient(circle at calc(4px + var(--step-index) * 16px) 50%, var(--red) 0 4px, transparent 4.2px),
    radial-gradient(circle at 4px 50%, rgba(217, 65, 53, .18) 0 4px, transparent 4.2px),
    radial-gradient(circle at 20px 50%, rgba(217, 65, 53, .18) 0 4px, transparent 4.2px),
    radial-gradient(circle at 36px 50%, rgba(217, 65, 53, .18) 0 4px, transparent 4.2px),
    radial-gradient(circle at 52px 50%, rgba(217, 65, 53, .18) 0 4px, transparent 4.2px);
  transform: translateY(-50%);
}

.step b::before {
  content: none;
}

.step:last-child b::before {
  content: none;
}

.step h3 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.work-band {
  background: #fbf8f1;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.work-photo {
  height: 190px;
  background: url("assets/work-event.png") center / cover no-repeat;
}

.work-photo.reception {
  background-image: url("assets/work-reception.png");
  background-position: center;
  background-size: cover;
}

.work-photo.office {
  background-image: url("assets/work-office.png");
  background-position: center;
  background-size: cover;
}

.work div:last-child {
  padding: 22px;
}

.work small {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}

.work h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
}

.work p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
}

.knowledge-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: #f4fbf8;
}

.knowledge-promo p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
}

.knowledge-layout {
  display: grid;
  gap: 32px;
}

.knowledge-lead {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.knowledge-lead p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.9;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.knowledge-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.knowledge-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.knowledge-card h3 {
  margin-top: 22px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.knowledge-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.faq-list p {
  padding: 0 0 18px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.85;
}

.company-section {
  padding-top: 46px;
  background: #fff;
}

.company-head {
  min-height: 190px;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: center;
  align-items: start;
}

.company-head p {
  max-width: none;
  font-size: 15px;
  white-space: nowrap;
}

.company-visual {
  position: relative;
  overflow: hidden;
  margin: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.company-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40, 115, 93, .16), rgba(255, 255, 255, 0) 46%, rgba(217, 65, 53, .08));
  pointer-events: none;
}

.company-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.company-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.company-statement {
  padding: 34px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.company-statement h3,
.company-overview h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.45;
}

.company-statement p {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.9;
}

.company-overview {
  padding: 34px;
}

.company-license {
  border-top: 1px solid var(--line);
  padding: 34px;
  background: #fbfcfe;
}

.company-overview-head {
  margin-bottom: 18px;
}

.company-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.company-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.license-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.license-strip > span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.license-strip a {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.license-strip strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.license-strip .privacy-license {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
}

.privacy-license img {
  grid-column: 2;
  grid-row: 1 / 3;
  width: min(74px, 22vw);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.privacy-license-label,
.privacy-license a {
  min-width: 0;
}

.works-section,
.case-section {
  padding: 52px 0;
  background: #ffffff;
}

.case-section .wrap {
  display: grid;
  gap: 34px;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.works-list article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.works-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.works-list h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

.works-list p,
.case-copy p,
.case-flow p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
}

.works-summary-section {
  padding-top: 28px;
}

.works-summary-grid {
  display: grid;
  gap: 18px;
}

.works-summary-card {
  display: grid;
  grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.works-summary-card figure {
  margin: 0;
  min-height: 260px;
  background: var(--mint);
}

.works-summary-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.works-summary-card > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px 28px 28px 0;
}

.works-summary-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.works-summary-card h3 {
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
}

.works-summary-card p,
.works-summary-card li {
  color: var(--text);
  line-height: 1.8;
}

.works-summary-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.2em;
}

.works-summary-card.election-card span {
  color: var(--red);
}

.case-story {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: #fbfcfe;
}

.case-title {
  display: grid;
  gap: 12px;
}

.case-title h2 {
  line-height: 1.18;
}

.case-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.case-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.case-copy {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.case-copy h3 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.45;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-flow article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.case-flow b {
  color: var(--green);
  font-size: 13px;
}

.case-flow span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.case-scenes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-scenes article {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.case-scenes img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-scenes div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.case-scenes span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.case-scenes h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.case-scenes p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.75;
}

.event-story {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.event-story-head {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.event-story-head h3 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.45;
}

.event-story-hero {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.event-story-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.event-story-hero figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.event-concept {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.event-concept-body {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.event-concept-body article {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.event-concept-body article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.event-concept span,
.event-operation-flow b {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.event-concept-body span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.event-concept-body span::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.event-concept h4 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.event-concept-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.event-concept-side img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-concept-side div {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.event-concept-side span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.event-story p,
.event-operation-flow p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.85;
}

.event-operation-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.event-operation-flow article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.event-operation-flow span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.election-case .kicker,
.election-case .event-concept span,
.election-case .event-operation-flow b {
  color: #b7641c;
}

.election-case .event-concept-body span::before {
  background: #d8842f;
}

.election-case .event-concept-side span {
  color: var(--green);
}

.footer-cta {
  color: #fff;
  background: linear-gradient(90deg, rgba(23, 32, 51, .94), rgba(40, 115, 93, .82)), url("assets/dotf-recruit-hero.png") center / cover no-repeat;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-cta h2 {
  color: #fff;
}

.footer-cta p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .82);
  font-weight: 400;
  line-height: 1.8;
}

.apply-layout {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  align-items: start;
}

.registration-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 10px;
  padding: 0;
}

.registration-tabs > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

/* 一時対応: ドットへ登録ページのページ内切替リンクを非表示（要素は復元用に保持） */
.registration-tabs--links-hidden > .registration-tab-label {
  display: none;
}

.registration-tabs--links-hidden > .registration-tab-panel {
  border-radius: 8px;
}

.registration-tab-label {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 13px 18px;
  background: #ffffff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
}

.registration-tab-label span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.form-tab-label span {
  color: var(--red);
}

.interview-tab-label span {
  color: var(--green);
}

.registration-tab-panel {
  display: none;
  grid-column: 1 / -1;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  padding: 22px;
  background: #ffffff;
}

#registerTabForm:checked ~ .form-tab-label {
  border-color: #f1b9b3;
  background: #fff8f7;
  color: var(--ink);
}

#registerTabInterview:checked ~ .interview-tab-label {
  border-color: #c7ded6;
  background: #f4fbf8;
  color: var(--ink);
}

#registerTabForm:checked ~ .form-tab-panel,
#registerTabInterview:checked ~ .interview-tab-panel {
  display: grid;
}

#registerTabForm:checked ~ .form-tab-panel {
  border-color: #f1b9b3;
  background: #ffffff;
}

#registerTabInterview:checked ~ .interview-tab-panel {
  border-color: #c7ded6;
  background: #fbfefd;
}

.briefing-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}

.contact-section,
.policy-section {
  padding: 52px 0;
  background: #ffffff;
}

.contact-layout {
  display: grid;
  gap: 22px;
  max-width: 880px;
  align-items: start;
}

.contact-form {
  grid-template-columns: 1fr 1fr;
}

.contact-phone-block {
  border-color: #c7ded6;
  background: #f7fbf9;
}

.contact-phone-list {
  display: grid;
  gap: 12px;
}

.contact-phone-list div {
  display: grid;
  gap: 7px;
  border: 1px solid #c7ded6;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.contact-phone-list span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.contact-phone-list strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
}

.contact-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
}

.contact-tabs > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-feedback {
  margin: 0;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-tabs > label {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid #f1b9b3;
  border-radius: 8px 8px 0 0;
  background: #fff8f7;
  color: var(--red);
  font-weight: 700;
  cursor: pointer;
}

.contact-tabs > .client-tab-label {
  border-color: #c7ded6;
  background: #f4fbf8;
  color: var(--green);
}

.contact-tabs > input:checked + label {
  border-color: #f1b9b3;
  border-bottom-color: #fff8f7;
  background: #fff8f7;
  color: var(--red);
}

.contact-tab-panel {
  display: none;
  grid-column: 1 / -1;
  border: 1px solid #f1b9b3;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 18px;
  background: #fff8f7;
}

.contact-confirm {
  display: grid;
  gap: 24px;
  border: 1px solid #f1b9b3;
  border-radius: 0 0 8px 8px;
  padding: 30px;
  background: #fffdfc;
}

.contact-confirm-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-confirm-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-confirm-list dt {
  color: var(--muted);
  font-weight: 700;
}

.contact-confirm-list dd {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.contact-confirm-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

#clientTab:checked + .client-tab-label {
  border-color: #c7ded6;
  border-bottom-color: #f4fbf8;
  background: #f4fbf8;
  color: var(--green);
}

#clientTab:checked ~ .contact-tab-panel {
  border-color: #c7ded6;
}

#clientTab:checked ~ .client-panel {
  background: #f4fbf8;
}

#clientTab:checked ~ .client-panel .submit-button {
  border-color: var(--green);
  background: var(--green);
}

#jobseekerTab:checked ~ .jobseeker-panel,
#clientTab:checked ~ .client-panel {
  display: block;
}

.contact-phone-list small,
.policy-panel p,
.policy-panel li {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

.policy-panel {
  display: grid;
  gap: 24px;
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: #fbfcfe;
}

.policy-panel article {
  display: grid;
  gap: 10px;
}

.policy-panel h2,
.policy-panel h3 {
  color: var(--ink);
  line-height: 1.4;
}

.policy-panel h2 {
  font-size: 30px;
}

.policy-panel h3 {
  font-size: 22px;
}

.policy-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.policy-panel a,
.checkbox-label a {
  color: var(--green);
  font-weight: 700;
}

.apply-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.detail-block {
  background: #fff;
}

.form-block {
  border: 0;
  border-radius: 8px;
  padding: 32px;
  background: #f4f9f6;
  scroll-margin-top: 110px;
}

.application-job-reference {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  border-radius: 6px;
  padding: 14px 18px;
  background: #fff;
}

.application-job-reference span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.application-job-reference strong {
  color: var(--ink);
  font-size: 17px;
}

.application-flow-screen[hidden] {
  display: none;
}

.application-flow-screen > h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
}

.application-flow-screen > p {
  margin: 8px 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.application-choice-list {
  display: grid;
  gap: 14px;
}

.application-choice {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 2px solid #d6e4df;
  border-radius: 10px;
  padding: 19px 20px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.application-choice:hover,
.application-choice:focus-visible {
  border-color: var(--green);
  background: #f7fcfa;
  outline: 0;
}

.application-choice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.application-choice span {
  color: var(--muted);
  line-height: 1.6;
}

.application-choice b {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 8px 16px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.application-help-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid #ead9a8;
  border-radius: 8px;
  padding: 15px 17px;
  background: #fffaf0;
}

.application-help-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0c4;
  color: #8a6314;
  font-weight: 900;
}

.application-help-panel strong {
  display: block;
  color: var(--ink);
}

.application-help-panel p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.application-help-panel button,
.application-phone-help button {
  border: 1px solid #d6bd75;
  border-radius: 6px;
  padding: 10px 13px;
  background: #fff;
  color: #72500d;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.application-login-status {
  border-radius: 999px;
  padding: 5px 9px;
  background: #e3f3ed;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.application-login-status {
  display: inline-flex;
  margin-bottom: 12px;
}

.application-login-mock-dialog {
  width: min(620px, calc(100% - 32px));
  border: 0;
  border-radius: 16px;
  padding: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 60px rgb(19 39 32 / 22%);
}

.application-login-mock-dialog::backdrop {
  background: rgb(20 33 44 / 48%);
}

.application-login-mock-dialog form {
  position: relative;
  padding: 34px;
}

.application-login-mock-dialog h3 {
  margin: 12px 0 8px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.35;
}

.application-login-mock-dialog p {
  margin: 0;
  color: var(--muted);
}

.application-demo-label {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: #fff3cf;
  color: #7b570f;
  font-size: 12px;
  font-weight: 800;
}

.application-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eef2f0;
  color: var(--ink);
  font: inherit;
  font-size: 24px;
  cursor: pointer;
}

.application-login-mock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.application-login-mock-actions button {
  display: grid;
  gap: 6px;
  border: 2px solid #cfe1db;
  border-radius: 10px;
  padding: 18px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.application-login-mock-actions button:hover,
.application-login-mock-actions button:focus-visible {
  border-color: var(--green);
  background: #f2f8f5;
}

.application-login-mock-actions strong {
  font-size: 18px;
}

.application-login-mock-actions span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.application-login-mock-actions .application-login-mock-error {
  grid-column: 1 / -1;
  border-color: #e7c87e;
  background: #fffaf0;
}

.application-error-status {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff0ed;
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
}

.application-login-failure-note {
  margin-bottom: 20px;
  border: 1px solid #ead9a8;
  border-radius: 8px;
  padding: 16px 18px;
  background: #fffaf0;
}

.application-login-failure-note strong {
  color: var(--ink);
}

.application-login-failure-note ul {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding-left: 1.4em;
  color: var(--text);
}

.application-login-failure-note p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.application-text-action {
  align-self: center;
  border: 0;
  padding: 10px 4px;
  background: transparent;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.application-final-confirm-summary {
  margin: 24px 0 0;
  border-radius: 10px;
  padding: 18px;
  background: #f3f7f5;
}

.application-final-confirm-summary div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
}

.application-final-confirm-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.application-final-confirm-summary dd {
  margin: 0;
  font-weight: 800;
}

.application-final-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.application-final-confirm-actions .button {
  width: 100%;
}

.form-block.is-complete {
  border-color: #cfe4dc;
  background: #f3f8f5;
}

.form-block.is-complete > .block-head,
.form-block.is-complete > .application-job-reference {
  display: none;
}

.application-complete-screen {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px) 0;
  text-align: center;
}

.application-complete-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 42px;
  font-weight: 800;
}

.application-complete-screen > h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.35;
}

.application-complete-screen > .application-complete-lead {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.application-complete-summary {
  margin: 28px 0 22px;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  text-align: left;
}

.application-complete-summary div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
}

.application-complete-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.application-complete-summary dd {
  margin: 0;
  font-weight: 800;
}

.application-complete-screen > p:not(.application-complete-lead) {
  margin: 0;
  color: var(--muted);
}

.application-complete-screen > small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.application-complete-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 30px;
}

.application-complete-actions > a:not(.button) {
  color: var(--green);
  font-weight: 800;
}

.application-route-form,
.application-comment-label {
  display: grid;
  gap: 15px;
}

.application-route-form label,
.application-comment-label {
  color: var(--ink);
  font-weight: 800;
}

.application-route-form label {
  display: grid;
  gap: 7px;
}

.application-route-form input,
.application-comment-label textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cbd6d2;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.application-flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.application-back-action {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.application-demo-note,
.application-pending-note,
.application-phone-help {
  margin-bottom: 20px;
  border-radius: 8px;
  padding: 16px;
}

.application-demo-note {
  display: grid;
  gap: 5px;
  border: 1px solid #b9d8cd;
  background: #f1f8f5;
}

.application-demo-note strong {
  color: var(--green);
}

.application-demo-note small,
.application-phone-help small {
  color: var(--muted);
}

.application-staff-summary {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  border-radius: 8px;
  padding: 17px;
  background: #fff;
}

.application-staff-summary div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
}

.application-staff-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.application-staff-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.application-phone-help {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border: 1px solid #ead9a8;
  background: #fffaf0;
}

.application-phone-help p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.application-phone-help a {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.application-phone-help button {
  margin-top: 8px;
}

.application-pending-note {
  border-left: 4px solid #d59a29;
  background: #fff8e6;
  color: #65490f;
  line-height: 1.65;
}

.email-test-section {
  padding: 64px 0 88px;
  background: #ffffff;
}

.email-test-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
  max-width: 920px;
}

.email-test-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: #ffffff;
}

.email-test-card .block-head p strong {
  color: var(--green);
}

.email-test-status {
  min-height: 1.6em;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.email-test-status[data-state="success"] { color: var(--green); }
.email-test-status[data-state="error"] { color: var(--red); }

.email-test-note {
  border-left: 4px solid #c7ded6;
  padding: 16px 0 16px 18px;
}

.email-test-note strong {
  color: var(--green);
  font-size: 16px;
}

.email-test-note p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.guard-block {
  border: 0;
  padding: 0;
  background: transparent;
}

.form-notice {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  border-left: 4px solid #c7ded6;
  padding: 14px 0 14px 18px;
}

.form-notice strong {
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
}

.form-notice p {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.guard-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guard-points span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #c7ded6;
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.register-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.register-entry-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
}

.register-entry-card:hover {
  border-color: #f1b9b3;
  background: #fffafa;
}

.register-entry-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.register-entry-card strong {
  font-size: 20px;
  font-weight: 700;
}

.register-entry-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.interview-entry-block {
  display: grid;
  gap: 18px;
  border-color: #c7ded6;
  background: #f4fbf8;
}

.interview-entry-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interview-entry-note span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #c7ded6;
  border-radius: 999px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.confirm-block {
  border-color: #b9d8cf;
  background: #f4fbf8;
}

.thanks-block {
  display: grid;
  gap: 16px;
  border-color: #9ac8bb;
  background: #eaf8f2;
  padding-top: 44px;
  padding-bottom: 44px;
  text-align: left;
}

.thanks-block h2 {
  margin-top: 0;
  font-size: 34px;
  font-weight: 600;
  color: var(--green);
}

.thanks-block p {
  color: #2d5f51;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.block-head {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.block-head h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 600;
}

.block-head p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
}

#selectedBriefingText {
  display: grid;
  gap: 12px;
  border: 1px solid #f1b9b3;
  border-radius: 8px;
  padding: 18px 20px;
  background: #ffffff;
  color: var(--ink);
}

#selectedBriefingText .selected-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

#selectedBriefingText strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

#selectedBriefingText .selected-venue {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.selected-datetime {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.selected-datetime span {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfcfe;
}

.selected-datetime b {
  color: var(--muted);
  font-size: 12px;
}

.selected-datetime time {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.apply-summary {
  display: grid;
  gap: 14px;
}

.apply-summary h3 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
}

.detail-block .block-head {
  gap: 6px;
  margin-bottom: 6px;
}

.detail-block .block-head h2 {
  font-size: 21px;
  line-height: 1.25;
}

.apply-summary dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 4px 0 0;
}

.apply-summary dl div {
  display: grid;
  gap: 4px;
}

.apply-summary dt {
  color: var(--ink);
  font-weight: 800;
}

.apply-summary dl div:last-child {
  grid-column: 1 / -1;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.session-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.session-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  background: #fbfcfe;
}

.session-row strong {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.session-row.full strong {
  color: var(--red);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.calendar-head h2 {
  margin-top: 0;
  font-size: 30px;
}

.calendar-weekdays,
.briefing-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: #fbfcfe;
}

.calendar-weekdays span {
  min-height: 38px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.briefing-calendar {
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.calendar-cell {
  min-height: 136px;
  display: grid;
  align-content: start;
  gap: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px;
  background: #fff;
}

.calendar-cell:nth-child(7n) {
  border-right: 0;
}

.calendar-cell.muted {
  background: #f8fafc;
}

.calendar-day {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.calendar-events {
  display: grid;
  gap: 6px;
}

.calendar-event {
  min-height: 58px;
  display: grid;
  gap: 4px;
  border: 1px solid #c7ded6;
  border-radius: 8px;
  padding: 8px;
  background: #f4fbf8;
  color: var(--ink);
  text-align: left;
}

.calendar-event:hover {
  background: #eaf6f1;
}

.calendar-event.few {
  border-color: #f7d58b;
  background: #fffbeb;
}

.calendar-event.few:hover {
  background: #fff4c2;
}

.calendar-event.full,
.calendar-event.closed {
  border-color: #f1b9b3;
  background: #fff8f7;
  color: var(--muted);
  cursor: not-allowed;
}

.calendar-event span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.calendar-event strong {
  color: var(--green);
  font-size: 12px;
}

.calendar-event.full strong,
.calendar-event.closed strong {
  color: var(--red);
}

.calendar-event.few strong {
  color: #9a6700;
}

.no-event {
  color: var(--muted);
  font-size: 13px;
}

.apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apply-form label {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}

.form-field-help {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.privacy-consent {
  display: grid;
  gap: 14px;
  border: 1px solid #c7ded6;
  border-radius: 8px;
  padding: 20px;
  background: #f7fbf9;
}

.privacy-consent-head {
  display: grid;
  gap: 8px;
}

.privacy-consent-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.privacy-consent-head p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.privacy-consent-body {
  max-height: 260px;
  overflow: auto;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

.privacy-consent-body:focus {
  outline: 3px solid rgba(40, 115, 93, .18);
  outline-offset: 2px;
}

.privacy-consent-body h4 {
  margin: 6px 0 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
}

.privacy-consent-body p {
  margin: 0;
}

.privacy-consent-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.privacy-consent-check {
  border: 1px solid #b9d8cf;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd5df;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.birthdate-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}

.birthdate-selects {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
}

.birthdate-selects label {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
  font: inherit;
}

button:disabled {
  opacity: .65;
  cursor: wait;
}

.submit-button {
  width: fit-content;
}

.form-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.form-progress li {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-progress span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
}

.form-progress li.active {
  border-color: #f1b9b3;
  background: #fff8f7;
  color: var(--red);
}

.form-progress li.active span {
  background: var(--red);
  color: #ffffff;
}

.form-progress.complete li.active {
  border-color: #c7ded6;
  background: #f4fbf8;
  color: var(--green);
}

.form-progress.complete li.active span {
  background: var(--green);
}

.confirm-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.confirm-summary dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.confirm-summary dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.confirm-actions button:disabled {
  opacity: .65;
  cursor: wait;
}

.status-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.page-status {
  margin-top: 18px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.interview-hero {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.interview-section {
  padding: 42px 0 72px;
}

.interview-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.interview-panel,
.interview-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.interview-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.interview-panel label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.field-help {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.interview-panel input {
  min-height: 58px;
  border: 1px solid #cfd6e3;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
  font-size: 20px;
}

.interview-panel input[name="oneTimeCode"] {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 6px;
  text-align: center;
}

.interview-submit,
.interview-join-button {
  width: 100%;
  min-height: 58px;
  border-radius: 8px;
  font-size: 18px;
}

.interview-help {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.interview-result {
  padding: 26px;
}

.interview-ready {
  display: grid;
  gap: 18px;
}

.interview-ready h2,
.interview-error h2 {
  margin-top: 8px;
}

.interview-ready dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.interview-ready dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.interview-ready dt {
  color: var(--muted);
  font-weight: 700;
}

.interview-ready dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.interview-ready p,
.interview-error p {
  color: var(--text);
  line-height: 1.8;
}

.interview-error {
  display: grid;
  gap: 12px;
  border-left: 4px solid var(--red);
  padding-left: 18px;
}

@media (max-width: 980px) {
  .wrap {
    width: min(100% - 32px, 760px);
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .brand {
    flex-basis: auto;
    max-width: none;
  }

  .brand-prefix {
    font-size: 11.5px;
  }

  .brand-name {
    font-size: 17px;
  }

  .site-nav {
    width: 100%;
    gap: 14px;
    overflow: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .campaign-banner,
  .section-head,
  .steps,
  .work-grid,
  .job-grid,
  .job-search,
  .notice-head,
  .knowledge-grid,
  .license-strip,
  .works-list,
  .works-summary-card,
  .case-flow,
  .case-scenes,
  .event-concept,
  .event-operation-flow,
  .company-list div,
  .contact-layout,
  .contact-phone-list,
  .apply-layout,
  .apply-summary dl,
  .register-entry-grid,
  .interview-wrap {
    grid-template-columns: 1fr;
  }

  .knowledge-promo {
    display: grid;
  }

  .election-hero-grid,
  .election-intro-grid,
  .election-section-head,
  .election-work-types,
  .election-municipalities,
  .election-briefing-grid {
    grid-template-columns: 1fr;
  }

  .election-job-list {
    grid-template-columns: 1fr;
  }

  .election-job-list article,
  .election-job-list article:nth-child(2n) {
    border-right: 0;
  }

  .election-hero {
    padding: 48px 0 58px;
    overflow-x: clip;
  }

  .election-hero .wrap,
  .election-intro-section .wrap,
  .election-briefing-section .wrap,
  .election-areas-section .wrap,
  .election-hero h1,
  .election-notice-panel,
  .election-briefing-grid article,
  .election-area,
  .election-job-list article,
  .election-job-list dl div,
  .election-briefing-grid dl div {
    min-width: 0;
    max-width: 100%;
  }

  .election-hero-focused h1 {
    font-size: clamp(30px, 9vw, 40px);
    overflow-wrap: anywhere;
  }

  .election-notice-panel {
    padding-left: 16px;
  }

  .election-notice-panel p,
  .election-briefing-grid h3,
  .election-briefing-grid article > p,
  .election-job-list dd {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .election-detail-link-row {
    align-items: flex-start;
  }

  .election-briefing-grid article,
  .election-job-list article {
    padding: 20px;
  }

  .election-hero-grid {
    gap: 30px;
  }

  .election-hero img {
    width: min(320px, 88vw);
    justify-self: center;
  }

  .mobile-only {
    display: block;
  }

  .election-intro-grid,
  .election-section-head {
    gap: 20px;
  }

  .election-municipalities article,
  .election-municipalities article:nth-child(2n) {
    border-right: 0;
  }

  .hero-media {
    min-height: 430px;
  }

  .campaign-banner {
    gap: 20px;
  }

  .campaign-banner-illustration {
    width: min(220px, 70vw);
    height: auto;
    justify-self: start;
  }

  .campaign-banner strong {
    justify-self: start;
  }

  .footer-cta-inner {
    display: block;
  }

  .footer-cta .button {
    margin-top: 24px;
  }

  .event-concept-side {
    position: static;
  }

  .company-head p {
    white-space: normal;
  }

  .company-section {
    padding-top: 38px;
  }

  .company-head {
    min-height: auto;
  }

  .works-summary-card > div {
    padding: 0 22px 24px;
  }

  .works-summary-card figure {
    min-height: 220px;
  }

  .step {
    min-height: auto;
  }

  .job-card > :first-child {
    min-height: 0;
  }

}

@media (max-width: 560px) {
  .site-header {
    position: sticky;
  }

  .nav {
    position: relative;
    min-height: 68px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 52px);
    gap: 10px;
    margin-right: 0;
  }

  .brand-logo {
    width: 58px;
  }

  .brand-home {
    display: grid;
    gap: 4px;
    min-height: 34px;
  }

  .brand-prefix {
    font-size: 10px;
  }

  .brand-name {
    max-width: 224px;
    font-size: 13px;
    line-height: 1.12;
    white-space: nowrap;
  }

  .site-nav {
    position: static;
    display: block;
    margin-left: 0;
  }

  .site-nav .nav-mypage-link {
    display: flex;
    position: absolute;
    bottom: 8px;
    right: 0;
    left: 0;
    z-index: 35;
    min-height: 28px;
    justify-content: flex-end;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    box-shadow: none;
  }

  .site-nav .nav-mypage-link::before {
    content: "既に登録済みの方";
    margin-right: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
  }

  .site-nav > :not(.nav-mypage-link) {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mobile-nav summary {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    cursor: pointer;
    list-style: none;
    box-shadow: 0 10px 22px rgba(23, 32, 51, .08);
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .mobile-nav summary span:nth-child(2) {
    background: var(--red);
  }

  .mobile-nav-menu {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 40;
    width: 100vw;
    display: grid;
    gap: 8px;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 20px 44px rgba(23, 32, 51, .12);
  }

  .mobile-nav-menu a,
  .mobile-nav-menu .nav-group summary {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 10px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav-menu .nav-register-link {
    justify-content: center;
    border: 1px solid #cfe7dc;
    border-radius: 999px;
    background: #eff8f4;
    color: var(--green);
  }

  .mobile-nav-menu .nav-mypage-link {
    justify-content: center;
    border: 1px solid #f1b9b3;
    border-radius: 999px;
    background: #fff8f7;
    color: var(--red);
  }

  .mobile-nav-menu .nav-group {
    min-width: 0;
  }

  .mobile-nav-menu .nav-group summary {
    justify-content: space-between;
    width: 100%;
  }

  .mobile-nav-menu .nav-group-menu {
    position: static;
    min-width: 0;
    margin: 2px 0 0;
    border: 0;
    padding: 0 0 0 10px;
    background: transparent;
    box-shadow: none;
  }

  .status-chip {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .selected-datetime {
    grid-template-columns: 1fr;
  }

  .registration-section {
    padding: 24px 0 56px;
  }

  .registration-tabs {
    gap: 8px;
  }

  .registration-tab-label {
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .registration-tab-label span {
    font-size: 10px;
  }

  .registration-tab-panel {
    border: 0;
    border-radius: 0;
    padding: 12px 0 0;
    background: transparent;
  }

  #registerTabForm:checked ~ .form-tab-panel,
  #registerTabInterview:checked ~ .interview-tab-panel {
    border: 0;
    background: transparent;
  }

  .form-notice {
    margin-bottom: 24px;
    padding-left: 14px;
  }

  .guard-points span {
    width: 100%;
    min-height: 34px;
  }

  .nav-cta,
  .status-chip {
    grid-column: 1 / -1;
  }

  .actions .button,
  .submit-button {
    width: 100%;
  }

  .hero {
    padding: 22px 0 36px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media {
    min-height: 260px;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(23, 32, 51, .12);
  }

  .hero-brand-panel {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    gap: 2px;
  }

  .hero-brand-panel strong {
    font-size: 11px;
  }

  .hero-brand-panel small {
    font-size: 7px;
  }

  h1 {
    margin-top: 14px;
    font-size: 40px;
    line-height: 1.16;
  }

  .hero h1 {
    font-size: 36px;
  }

  .lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.9;
  }

  .support-card {
    display: none;
  }

  .apply-form {
    grid-template-columns: 1fr;
  }

  .form-block {
    padding: 24px 18px;
  }

  .application-job-reference {
    display: grid;
    gap: 5px;
  }

  .application-choice {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .application-choice b {
    width: 100%;
  }

  .application-help-panel {
    grid-template-columns: auto 1fr;
  }

  .application-help-panel button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .application-flow-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .application-login-mock-dialog form {
    padding: 28px 20px 20px;
  }

  .application-login-mock-actions {
    grid-template-columns: 1fr;
  }

  .application-final-confirm-summary div,
  .application-final-confirm-actions {
    grid-template-columns: 1fr;
  }

  .application-complete-summary div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .application-flow-actions .button {
    width: 100%;
  }

  .application-staff-summary div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .birthdate-selects {
    grid-template-columns: 1fr;
  }

  .confirm-summary dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-confirm {
    padding: 22px;
  }

  .contact-confirm-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-confirm-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-confirm-actions .button {
    width: 100%;
  }

  .interview-ready dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .calendar-head {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-weekdays {
    display: none;
  }

  .briefing-calendar {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .calendar-cell,
  .calendar-cell:nth-child(7n) {
    min-height: auto;
    border-right: 0;
  }

  .calendar-cell.muted {
    display: none;
  }
}

.mypage-section {
  padding: 56px 0 88px;
  background: #ffffff;
}

.mypage-layout {
  max-width: 920px;
}

.mypage-login-card,
.mypage-dashboard {
  margin: 0 auto;
}

.mypage-login-form {
  margin-top: 24px;
}

.mypage-login-form .submit-button {
  grid-column: 1 / -1;
}

.mypage-recovery-link {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mypage-recovery-complete {
  margin-top: 24px;
  border-left: 4px solid var(--green);
  padding: 18px 20px;
  background: #f4faf7;
}

.mypage-recovery-complete h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.mypage-recovery-complete p {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.8;
}

.mypage-login-error {
  grid-column: 1 / -1;
  margin: 0;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 12px 14px;
  background: #fff4f2;
  color: #b42318;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.mypage-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.mypage-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mypage-summary-grid article,
.mypage-message-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 18px;
}

.mypage-summary-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mypage-summary-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.mypage-message-panel {
  margin-top: 18px;
}

.mypage-message-panel h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.mypage-message-panel ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .mypage-section {
    padding: 34px 0 64px;
  }

  .mypage-dashboard-head,
  .mypage-summary-grid {
    grid-template-columns: 1fr;
  }

  .mypage-dashboard-head {
    flex-direction: column;
  }
}

/* Shift scheduling */
.shift-page-hero { padding-block: 42px; }
.shift-page-hero h1 { font-size: clamp(2rem, 3vw, 3.1rem); margin-block: 8px; }
.shift-page-hero .lead { max-width: 720px; font-size: 1rem; }
.shift-admin-section, .shift-staff-section { padding: 34px 0 72px; background: #f5f8f7; }
.shift-app { color: #172238; }
.shift-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #247b67; font-size: .78rem; font-weight: 800; letter-spacing: .07em; }
.shift-eyebrow::before { content: ""; width: 28px; height: 3px; background: #247b67; }
.shift-admin-shell, .shift-staff-layout { max-width: 1120px; margin: 0 auto; }
.shift-admin-head, .shift-staff-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 22px; }
.shift-admin-head h2, .shift-staff-head h2 { margin: 7px 0 5px; font-size: clamp(1.55rem, 2.3vw, 2.1rem); }
.shift-admin-head p, .shift-staff-head p, .shift-workspace-head p, .shift-card-title p { margin: 0; color: #617087; font-size: .95rem; line-height: 1.65; }
.shift-staff-ident { min-width: 190px; padding: 12px 16px; border-left: 3px solid #247b67; background: #fff; display: grid; gap: 4px; }
.shift-staff-ident span { font-weight: 700; }.shift-staff-ident small { color: #657085; }
.shift-request-panel, .shift-admin-section-card, .shift-project-nav, .shift-workspace { background: #fff; border: 1px solid #dce4e8; border-radius: 6px; }
.shift-request-panel { padding: 26px; }
.shift-request-controls { display: grid; grid-template-columns: minmax(220px, 1fr) 180px; gap: 14px; }
.shift-request-controls label { display: grid; gap: 6px; font-weight: 700; font-size: .9rem; color: #34435a; }
.shift-request-controls select, .shift-request-controls input, .shift-project-create input, .shift-compact-form input, .shift-compact-form select, .shift-entry-table input { box-sizing: border-box; width: 100%; min-height: 42px; border: 1px solid #c6d1db; border-radius: 4px; background: #fff; padding: 8px 10px; color: #172238; font: inherit; }
.shift-request-status { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 18px 0; padding: 12px 14px; border-left: 4px solid #3383bd; background: #f2f8fc; font-size: .93rem; }.shift-request-status span { color: #617087; }.shift-request-status.closed { border-color: #d96a39; background: #fff7f1; }
.shift-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; padding-top: 8px; }.shift-calendar-blank { min-height: 66px; }.shift-day { min-height: 70px; border: 1px solid #dce4e8; border-radius: 4px; background: #fff; color: #24324a; cursor: pointer; text-align: left; padding: 7px; position: relative; }.shift-day:hover { border-color: #247b67; background: #f3f9f6; }.shift-day b, .shift-day small { display: block; }.shift-day small { font-size: .73rem; color: #7a879a; margin-top: 2px; }.shift-day.sunday b { color: #d94d42; }.shift-day.saturday b { color: #3379ae; }.shift-day.wished { border-color: #e44135; background: #fff4f2; }.shift-day.wished em { position: absolute; right: 7px; bottom: 6px; padding: 2px 5px; color: #fff; background: #e44135; border-radius: 3px; font-size: .73rem; font-style: normal; font-weight: 700; }.shift-day.cancelling { border-style: dashed; border-color: #9b7d76; background: #f5f3f2; }.shift-day.cancelling em { background: #81716b; }.shift-day:disabled { cursor: not-allowed; opacity: .72; }
.shift-request-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; }.shift-request-actions p { margin: 0; color: #657085; font-size: .86rem; }.shift-request-actions .button { white-space: nowrap; }
.shift-submitted-wishes { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 16px; padding: 14px; border: 1px solid #f0c6c0; background: #fff8f6; }.shift-submitted-wishes strong { color: #9f2e28; font-size: .92rem; }.shift-submitted-wishes p { margin: 3px 0 0; color: #69768a; font-size: .8rem; }.shift-submitted-wish-list { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; }.shift-cancel-wish { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 6px 9px; border: 1px solid #dc766e; border-radius: 4px; background: #fff; color: #b7322b; font: inherit; cursor: pointer; }.shift-cancel-wish span { padding-left: 8px; border-left: 1px solid #edbbb5; font-size: .78rem; }.shift-cancel-wish:hover { background: #fff0ed; }.shift-cancel-wish.cancel-pending { border-style: dashed; border-color: #8c7972; background: #f1eeee; color: #665954; }.shift-cancel-wish.cancel-pending span { border-left-color: #c5b9b5; }.shift-cancel-wish:disabled { cursor: not-allowed; opacity: .6; }
.shift-admin-toolbar { margin-bottom: 16px; }.shift-project-create { display: grid; grid-template-columns: minmax(180px, .9fr) minmax(220px, 1.3fr) auto; gap: 10px; }
.shift-admin-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 18px; align-items: start; }.shift-project-nav { padding: 14px; }.shift-project-nav h3 { margin: 4px 6px 12px; font-size: 1rem; }.shift-project-item { width: 100%; text-align: left; display: grid; gap: 4px; border: 0; border-left: 3px solid transparent; padding: 11px 10px; background: #fff; cursor: pointer; color: #172238; }.shift-project-item:hover, .shift-project-item.active { border-left-color: #247b67; background: #eef7f3; }.shift-project-item span { color: #657085; font-size: .76rem; }
.shift-workspace { overflow: hidden; }.shift-workspace-head { padding: 20px 24px; border-bottom: 1px solid #dce4e8; }.shift-workspace-head h3 { margin: 6px 0; font-size: 1.35rem; }.shift-admin-section-card { margin: 18px; padding: 20px; }.shift-card-title { display: flex; gap: 11px; align-items: start; margin-bottom: 15px; }.shift-card-title > span { flex: 0 0 auto; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #247b67; color: #fff; font-size: .76rem; font-weight: 800; }.shift-card-title h3 { margin: 0 0 3px; font-size: 1.08rem; }
.shift-table-wrap, .shift-read-table { overflow-x: auto; border: 1px solid #dce4e8; margin-bottom: 14px; }.shift-entry-table, .shift-read-table table { width: 100%; border-collapse: collapse; min-width: 480px; }.shift-entry-table th, .shift-entry-table td, .shift-read-table th, .shift-read-table td { padding: 8px 10px; border-bottom: 1px solid #e4eaed; text-align: left; font-size: .88rem; }.shift-entry-table th, .shift-read-table th { background: #f5f8f7; color: #526077; font-weight: 700; }.shift-entry-table tr:last-child td, .shift-read-table tr:last-child td { border-bottom: 0; }.shift-entry-table .check-cell { text-align: center; }.shift-entry-table input[type=checkbox] { width: 18px; height: 18px; accent-color: #247b67; }
.shift-compact-form { display: grid; grid-template-columns: .55fr 1.25fr .8fr .8fr auto; gap: 8px; align-items: end; margin-bottom: 14px; }.requirement-form { grid-template-columns: 1.3fr .85fr .75fr .85fr auto; }.shift-empty { margin: 0; padding: 42px 24px; text-align: center; border: 1px dashed #c7d2d9; background: #fff; border-radius: 6px; }.muted { color: #657085; font-size: .9rem; }
.shift-wish-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 12px; color: #657085; font-size: .85rem; }.shift-wish-head label { display: grid; gap: 5px; color: #34435a; font-weight: 700; font-size: .86rem; }.shift-wish-head input { min-height: 38px; border: 1px solid #c6d1db; border-radius: 4px; padding: 6px 8px; font: inherit; }.shift-wish-date { display: inline-block; margin: 2px 4px 2px 0; padding: 3px 6px; border-radius: 3px; background: #fff0ed; color: #c93b31; font-size: .78rem; font-weight: 700; }
@media (max-width: 760px) { .shift-page-hero { padding-block: 30px; }.shift-admin-section, .shift-staff-section { padding: 22px 0 48px; }.shift-admin-head, .shift-staff-head, .shift-request-actions, .shift-submitted-wishes { display: grid; align-items: stretch; }.shift-admin-head .button { justify-self: start; }.shift-staff-ident { min-width: 0; }.shift-request-panel { padding: 17px; }.shift-request-controls, .shift-project-create, .shift-admin-grid, .shift-compact-form, .requirement-form { grid-template-columns: 1fr; }.shift-calendar { gap: 4px; }.shift-calendar-blank, .shift-day { min-height: 58px; }.shift-day { padding: 5px; }.shift-day small { display: none; }.shift-admin-section-card { margin: 12px; padding: 16px; }.shift-workspace-head { padding: 17px; }.shift-project-nav { padding: 10px; }.shift-project-item { padding: 12px; }.shift-request-actions .button { width: 100%; }.shift-compact-form .button { width: 100%; }.shift-wish-head { align-items: start; flex-direction: column; }.shift-submitted-wish-list { justify-content: start; } }
.shift-schedule-shell { max-width: 1240px; margin: 0 auto; }
.shift-workspace-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.shift-schedule-toolbar { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; padding: 15px 18px; border: 1px solid #dce4e8; background: #fff; }
.shift-schedule-toolbar label { display: grid; gap: 5px; min-width: 180px; color: #526077; font-size: .82rem; font-weight: 700; }
.shift-schedule-toolbar select, .shift-schedule-toolbar input, .schedule-step-actions select { min-height: 40px; border: 1px solid #c6d1db; border-radius: 4px; padding: 7px 9px; background: #fff; color: #172238; font: inherit; }
.shift-stage-status { margin-left: auto; color: #526077; font-size: .86rem; font-weight: 700; }
.schedule-workflow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 18px 0; }
.schedule-step { min-height: 184px; display: flex; flex-direction: column; align-items: flex-start; padding: 17px; border: 1px solid #dce4e8; border-top: 3px solid #247b67; background: #fff; }
.schedule-step > span { color: #247b67; font-size: .75rem; font-weight: 800; letter-spacing: .07em; }.schedule-step h3 { margin: 6px 0; color: #172238; font-size: 1.02rem; }.schedule-step p { margin: 0 0 14px; color: #657085; font-size: .82rem; line-height: 1.55; }.schedule-step .button { margin-top: auto; width: 100%; min-height: 39px; font-size: .84rem; }.schedule-step.done { border-top-color: #e14436; }.schedule-step.done > span { color: #c7352b; }.schedule-step.muted-step { opacity: .58; }.schedule-step-actions { display: grid; width: 100%; gap: 7px; margin-top: auto; }.schedule-step-actions .button { margin: 0; }
.schedule-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }.schedule-summary > div { padding: 14px 16px; border-left: 3px solid #247b67; background: #fff; }.schedule-summary span { display: block; color: #657085; font-size: .77rem; font-weight: 700; }.schedule-summary strong { display: block; margin-top: 4px; color: #172238; font-size: 1.45rem; }.schedule-summary .alert { border-color: #df4437; }.schedule-summary .alert strong { color: #c7352b; }.schedule-summary .ok { border-color: #247b67; }
.schedule-table-section { padding: 20px; border: 1px solid #dce4e8; background: #fff; }.schedule-table-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 14px; }.schedule-table-heading h3 { margin: 6px 0 0; font-size: 1.25rem; }.schedule-table-heading p { display: flex; gap: 6px; flex-wrap: wrap; margin: 0; }.schedule-calendar-wrap { margin: 0; }.schedule-calendar { width: 100%; min-width: 800px; border-collapse: collapse; }.schedule-calendar th, .schedule-calendar td { border: 1px solid #dce4e8; vertical-align: top; }.schedule-calendar thead th { padding: 10px; background: #f3f7f5; color: #2e4056; font-size: .83rem; text-align: left; }.schedule-calendar thead th small { display: block; margin-top: 3px; color: #657085; font-size: .7rem; font-weight: 500; line-height: 1.35; }.schedule-calendar tbody th { width: 50px; padding: 9px 7px; background: #f8fafb; color: #526077; font-size: .85rem; text-align: center; }.schedule-calendar tbody th small { display: block; margin-top: 2px; font-size: .66rem; }.schedule-calendar tr.sunday > th { color: #c7352b; }.schedule-calendar tr.saturday > th { color: #3379ae; }.schedule-cell { min-width: 170px; padding: 7px; background: #fff; }.schedule-cell.has-shortage { background: #fff9f6; }.schedule-off { background: #f7f8f8; color: #a1acb6; text-align: center; }.schedule-cell-meta { margin-bottom: 6px; color: #657085; font-size: .7rem; font-weight: 700; }.schedule-assignees { display: flex; flex-wrap: wrap; gap: 4px; }.schedule-person { display: inline-block; padding: 3px 6px; border-radius: 3px; background: #eaf5f0; color: #17644f; font-size: .72rem; font-weight: 700; }.schedule-person.proposed { border: 1px dashed #d8902c; background: #fff8e8; color: #935c12; }.schedule-ghost { margin-top: 5px; color: #aa6d6a; font-size: .68rem; line-height: 1.35; }.schedule-shortage { margin-top: 5px; color: #bd332a; font-size: .7rem; font-weight: 800; }
@media (max-width: 760px) { .shift-workspace-head { align-items: flex-start; flex-direction: column; }.shift-schedule-toolbar { display: grid; grid-template-columns: 1fr; }.shift-schedule-toolbar label { min-width: 0; }.shift-stage-status { margin-left: 0; }.schedule-workflow, .schedule-summary { grid-template-columns: 1fr; }.schedule-step { min-height: 0; }.schedule-table-section { padding: 14px; }.schedule-table-heading { align-items: flex-start; flex-direction: column; } }
.shift-template-table { min-width: 760px; }.shift-template-table td:first-child { min-width: 145px; }.shift-template-table small { display: block; margin-top: 2px; color: #657085; font-size: .68rem; font-weight: 500; }.shift-template-table select { min-width: 74px; min-height: 34px; border: 1px solid #c6d1db; border-radius: 4px; background: #fff; color: #172238; padding: 4px; font: inherit; }
.shift-prototype-frame { width: 100%; min-height: 100vh; background: #f4f6f9; }.shift-prototype-frame iframe { display: block; width: 100%; min-height: 100vh; border: 0; }
