:root {
  --pink: #f26c9f;
  --pink-soft: #ffe8f1;
  --mint: #c9f0e4;
  --mint-strong: #3cae95;
  --yellow: #fff0a6;
  --cream: #fffaf3;
  --ink: #3f3740;
  --muted: #776d74;
  --line: #efd8e1;
  --white: #fff;
  --shadow: 0 18px 50px rgba(172, 87, 122, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-header {
  min-height: 72px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 243, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), #f7a3c4);
  box-shadow: 0 10px 22px rgba(242, 108, 159, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.nav {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.hero {
  min-height: 680px;
  padding: 70px max(20px, calc((100vw - 1120px) / 2)) 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(rgba(255, 250, 243, 0.78), rgba(255, 247, 251, 0.86)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #c94f82;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5.8vw, 64px);
  line-height: 1.16;
}

.lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.domain-note {
  max-width: 660px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(148, 91, 111, 0.09);
}

.domain-note span,
.domain-note small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.domain-note strong {
  display: block;
  margin: 7px 0 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.4;
}

.domain-note a {
  width: fit-content;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--mint-strong), #77d8c6);
  font-size: 14px;
  font-weight: 900;
}

.search-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

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

.panel-head h2 {
  margin: 0;
  font-size: 22px;
}

.panel-head span {
  padding: 4px 9px;
  border-radius: 999px;
  color: #b34d76;
  background: var(--pink-soft);
  font-size: 12px;
  font-weight: 800;
}

.search-panel label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.search-panel input[type="search"],
.search-panel select {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 13px;
  border: 1px solid #efd5df;
  border-radius: 8px;
  background: #fffafd;
  color: var(--ink);
  font: inherit;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 18px;
}

.check-row label {
  min-height: 36px;
  margin: 0;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff9fc;
}

.search-panel button,
.post-button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #f9a7c6);
  font: inherit;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(242, 108, 159, 0.28);
  cursor: pointer;
}

.search-panel button {
  width: 100%;
}

.metrics {
  width: min(1120px, calc(100% - 40px));
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 3;
}

.metrics article,
.job-card,
.post-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(148, 91, 111, 0.09);
}

.metrics article {
  padding: 18px 20px;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 30px;
  line-height: 1.2;
}

.metrics span {
  color: var(--muted);
  font-size: 13px;
}

.content-section,
.post-band {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.content-section {
  padding: 58px 0 0;
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2,
.post-band h2 {
  margin: 0;
  font-size: 30px;
}

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

.job-card {
  overflow: hidden;
}

.job-visual {
  min-height: 154px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #ffd6e5, #fff2f7);
}

.job-visual.mint {
  background: linear-gradient(135deg, #d5f3ea, #f3fffb);
}

.job-visual.yellow {
  background: linear-gradient(135deg, #fff0a6, #fffbed);
}

.job-visual span {
  color: rgba(63, 55, 64, 0.52);
  font-size: 28px;
  font-weight: 900;
}

.job-body {
  padding: 18px;
}

.tag {
  width: fit-content;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #b34d76;
  background: var(--pink-soft);
  font-size: 12px;
  font-weight: 800;
}

.tag.mint {
  color: #247f6a;
  background: #e3f8f1;
}

.tag.yellow {
  color: #8a6f00;
  background: #fff6bf;
}

.job-body h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.45;
}

.job-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.job-body a {
  color: #c94f82;
  font-weight: 900;
}

.area-band {
  padding-bottom: 12px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.area-list a {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.specialty-section {
  padding-top: 46px;
}

.specialty-panel {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f2fffb);
  box-shadow: 0 12px 30px rgba(148, 91, 111, 0.09);
}

.specialty-panel strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.specialty-panel p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.specialty-panel a {
  min-width: 190px;
  min-height: 46px;
  padding: 0 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--mint-strong), #77d8c6);
  font-weight: 900;
}

.post-band {
  margin-top: 46px;
  margin-bottom: 70px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fff, #fff3f8 58%, #f1fbf8);
}

.post-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.post-button {
  min-width: 160px;
  padding: 0 20px;
}

@media (max-width: 920px) {
  .app-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .search-panel {
    max-width: 560px;
  }

  .job-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .post-band {
    align-items: stretch;
    flex-direction: column;
  }

  .specialty-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .specialty-panel a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .field-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-inline: 16px;
  }

  .content-section,
  .post-band,
  .metrics {
    width: calc(100% - 32px);
  }
}
