:root {
  --ink: #38220f;
  --text: #5b4530;
  --sage: #d97f35;
  --sage-dark: #b35b17;
  --leaf: #ff6900;
  --gold: #e4b321;
  --cream: #fffaf0;
  --mint: #fff1e6;
  --white: #ffffff;
  --line: rgba(107, 64, 27, 0.16);
  --shadow: 0 24px 70px rgba(140, 74, 15, 0.16);
  --radius: 8px;
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP",
    system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 241, 230, 0.9) 0%, rgba(255, 250, 240, 0.96) 48%, rgba(255, 255, 255, 1) 100%);
  font-weight: 500;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(217, 127, 53, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 127, 53, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(228, 179, 33, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 22%, rgba(217, 127, 53, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 76%, rgba(228, 179, 33, 0.14) 0 2px, transparent 3px);
  opacity: 0.7;
  pointer-events: none;
  animation: sparkle-drift 12s ease-in-out infinite alternate;
}

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

.site-header,
.hero,
.status-strip,
.section,
.contact-section,
.site-footer {
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  min-height: 90px;
  margin-top: 0;
  padding: 8px max(20px, calc((100% - 1280px) / 2));
  display: flex;
  align-items: center;
  gap: 16px;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(107, 64, 27, 0.1);
  backdrop-filter: blur(16px);
  animation: header-drop 680ms ease both;
}

main {
  padding-top: 126px;
}

.subpage-main {
  padding-top: 150px;
}

.brand {
  width: 150px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  animation: logo-breathe 4.8s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--leaf);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--sage-dark);
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta,
.button {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--leaf);
  box-shadow: 0 14px 34px rgba(255, 105, 0, 0.22);
}

.button.secondary {
  color: var(--leaf);
  border: 1px solid rgba(255, 105, 0, 0.28);
  background: rgba(255, 255, 255, 0.76);
}

.button.disabled {
  cursor: default;
}

.header-cta:hover,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 76svh;
  padding: 56px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 46px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "★";
  position: absolute;
  z-index: -1;
  color: rgba(228, 179, 33, 0.46);
  font-size: clamp(1.3rem, 4vw, 2.8rem);
  filter: drop-shadow(0 2px 0 rgba(217, 127, 53, 0.18));
  animation: twinkle 3.4s ease-in-out infinite;
}

.hero::before {
  left: 3%;
  top: 12%;
}

.hero::after {
  right: 7%;
  bottom: 16%;
  animation-delay: 1.1s;
}

.hero-copy {
  padding-top: 20px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-lead,
.hero-actions,
.hero-pills {
  opacity: 0;
  animation: hero-rise 720ms ease forwards;
}

.hero-copy h1 {
  animation-delay: 120ms;
}

.hero-lead {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 330ms;
}

.hero-pills {
  animation-delay: 430ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--sage);
}

.hero-lead {
  max-width: 620px;
  color: var(--text);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 2;
}

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

.hero-pills {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  padding: 9px 14px;
  color: var(--sage-dark);
  border: 1px dashed rgba(217, 127, 53, 0.5);
  border-radius: 999px;
  background: rgba(255, 241, 230, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
  animation: pill-pop 520ms ease both;
}

.hero-pills span:nth-child(2) {
  animation-delay: 90ms;
}

.hero-pills span:nth-child(3) {
  animation-delay: 180ms;
}

.hero-pills span:nth-child(4) {
  animation-delay: 270ms;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(255, 241, 230, 0.76)),
    repeating-linear-gradient(135deg, rgba(228, 179, 33, 0.08) 0 8px, transparent 8px 22px);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: float-stage 5.8s ease-in-out infinite;
}

.hero-visual::before {
  content: "NANA";
  position: absolute;
  right: -18px;
  bottom: -18px;
  color: rgba(217, 127, 53, 0.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(217, 127, 53, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(96%, 680px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(32, 53, 31, 0.13));
  animation: logo-pop 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
}

.status-strip div {
  min-height: 112px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.status-strip strong {
  color: var(--leaf);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1;
}

.status-strip span {
  color: var(--text);
  font-weight: 700;
}

.section {
  padding: 96px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: 48px;
  align-items: end;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.section-heading p,
.office-copy p,
.contact-section p {
  color: var(--text);
  line-height: 2;
}

.philosophy-card {
  max-width: 760px;
  margin: 0;
  padding: 42px 34px;
  border: 1px solid rgba(107, 64, 27, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 10px 10px 0 rgba(217, 127, 53, 0.18);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.philosophy-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0 rgba(217, 127, 53, 0.2);
}

.philosophy-card p {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.55;
}

.philosophy-card cite {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 800;
}

.feature-grid,
.service-list,
.strength-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-grid article,
.service-list article,
.strength-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(107, 64, 27, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-grid article:hover,
.service-list article:hover,
.strength-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 179, 33, 0.48);
  box-shadow: 0 22px 52px rgba(107, 64, 27, 0.13);
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.25rem;
}

.feature-grid p,
.service-list p,
.strength-grid p {
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.85;
}

.service-section {
  padding-top: 110px;
}

.service-list article {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 230, 0.72));
}

.service-list h3::before {
  content: "★";
  margin-right: 9px;
  color: var(--gold);
  font-size: 0.9em;
}

.service-link {
  margin-top: 24px;
}

.faq-preview-section {
  padding-top: 104px;
}

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

.faq-preview-grid article {
  min-height: 200px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 36px rgba(107, 64, 27, 0.08);
}

.faq-preview-grid h3 {
  color: var(--leaf);
}

.faq-preview-grid p {
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.85;
}

.faq-link {
  margin-top: 24px;
}

.news-section {
  padding-top: 88px;
}

.news-link {
  margin-top: 24px;
}

.news-hero {
  position: relative;
}

.news-hero::after {
  content: "★";
  position: absolute;
  right: min(8vw, 90px);
  top: 72px;
  color: rgba(228, 179, 33, 0.48);
  font-size: clamp(2rem, 5vw, 4.2rem);
  filter: drop-shadow(0 8px 18px rgba(228, 179, 33, 0.18));
  animation: twinkle 3.4s ease-in-out infinite;
}

.news-page-section {
  padding-top: 64px;
}

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

.news-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.news-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 179, 33, 0.48);
  box-shadow: 0 22px 52px rgba(107, 64, 27, 0.13);
}

.news-list a {
  min-height: 112px;
  padding: 24px;
  display: grid;
  grid-template-columns: 118px 96px 1fr;
  align-items: center;
  gap: 18px;
}

.news-list time {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 900;
}

.news-list span {
  padding: 7px 10px;
  display: inline-flex;
  justify-content: center;
  color: var(--leaf);
  border: 1px solid rgba(255, 105, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 241, 230, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.news-list h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  line-height: 1.55;
}

.news-list p {
  grid-column: 3;
  margin: -6px 0 0;
  color: var(--text);
  line-height: 1.8;
}

.news-list.compact p {
  display: none;
}

.service-hero {
  position: relative;
}

.service-hero::after {
  content: "★";
  position: absolute;
  right: min(8vw, 90px);
  top: 72px;
  color: rgba(228, 179, 33, 0.48);
  font-size: clamp(2rem, 5vw, 4.2rem);
  filter: drop-shadow(0 8px 18px rgba(228, 179, 33, 0.18));
  animation: twinkle 3.4s ease-in-out infinite;
}

.strength-section {
  padding-top: 110px;
}

.strength-link {
  margin-top: 24px;
}

.strength-hero {
  position: relative;
}

.faq-hero {
  position: relative;
}

.strength-hero::after {
  content: "★";
  position: absolute;
  right: min(8vw, 90px);
  top: 72px;
  color: rgba(228, 179, 33, 0.48);
  font-size: clamp(2rem, 5vw, 4.2rem);
  filter: drop-shadow(0 8px 18px rgba(228, 179, 33, 0.18));
  animation: twinkle 3.4s ease-in-out infinite;
}

.faq-hero::after {
  content: "★";
  position: absolute;
  right: min(8vw, 90px);
  top: 72px;
  color: rgba(228, 179, 33, 0.48);
  font-size: clamp(2rem, 5vw, 4.2rem);
  filter: drop-shadow(0 8px 18px rgba(228, 179, 33, 0.18));
  animation: twinkle 3.4s ease-in-out infinite;
}

.strength-grid article {
  background: rgba(255, 255, 255, 0.82);
}

.strength-grid strong {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255, 105, 0, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.recruit-section {
  padding-top: 96px;
}

.recruit-copy {
  padding: 44px;
  border: 1px solid rgba(228, 179, 33, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.86)),
    repeating-linear-gradient(45deg, rgba(228, 179, 33, 0.08) 0 8px, transparent 8px 22px);
  box-shadow: 0 16px 42px rgba(107, 64, 27, 0.08);
  position: relative;
  overflow: hidden;
}

.recruit-copy::after {
  content: "★";
  position: absolute;
  right: 26px;
  top: 22px;
  color: rgba(228, 179, 33, 0.54);
  font-size: 2rem;
  animation: twinkle 3s ease-in-out infinite;
}

.recruit-copy p {
  max-width: 780px;
  color: var(--text);
  line-height: 2;
}

.recruit-link {
  margin-top: 24px;
}

.recruit-hero {
  position: relative;
}

.recruit-hero::after {
  content: "★";
  position: absolute;
  right: min(8vw, 90px);
  top: 72px;
  color: rgba(228, 179, 33, 0.48);
  font-size: clamp(2rem, 5vw, 4.2rem);
  filter: drop-shadow(0 8px 18px rgba(228, 179, 33, 0.18));
  animation: twinkle 3.4s ease-in-out infinite;
}

.subpage-actions {
  margin-top: 28px;
}

.recruit-message-section,
.jobs-section,
.conditions-section,
.service-page-section,
.strength-page-section,
.strength-values-section,
.faq-section,
.support-section,
.area-section,
.flow-section {
  padding-top: 82px;
}

.work-style-grid,
.job-grid,
.service-page-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

.work-style-grid,
.job-grid,
.service-page-grid {
  grid-template-columns: repeat(3, 1fr);
}

.job-grid {
  grid-template-columns: repeat(2, 1fr);
}

.support-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 941px) {
  .support-grid.values-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.work-style-grid article,
.job-card,
.service-page-grid article,
.support-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
}

.work-style-grid article,
.service-page-grid article {
  min-height: 250px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.work-style-grid article::after,
.service-page-grid article::after {
  content: "";
  position: absolute;
  inset: auto -18px -38px auto;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(228, 179, 33, 0.34);
  border-radius: 50%;
  background: rgba(228, 179, 33, 0.1);
}

.work-style-grid span,
.service-page-grid span,
.job-card-head p,
.recruit-flow > li > span,
.service-flow > li > span {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.work-style-grid span,
.service-page-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255, 105, 0, 0.2);
  font-size: 3rem;
  line-height: 1;
}

.work-style-grid p,
.service-page-grid p,
.support-grid p,
.job-card dd,
.conditions-list span,
.recruit-flow p,
.service-flow p,
.recruit-cta p,
.service-cta p {
  color: var(--text);
  line-height: 1.85;
}

.service-page-grid ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-page-grid li {
  padding-left: 18px;
  position: relative;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.6;
}

.service-page-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.strength-detail-list {
  display: grid;
  gap: 16px;
}

.strength-detail-list article {
  min-height: 190px;
  padding: 30px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.strength-detail-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 179, 33, 0.48);
  box-shadow: 0 22px 52px rgba(107, 64, 27, 0.13);
}

.strength-detail-list span {
  color: rgba(255, 105, 0, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}

.strength-detail-list h3 {
  margin-top: 0;
}

.strength-detail-list p,
.strength-cta p {
  color: var(--text);
  line-height: 1.9;
}

.strength-detail-list p {
  margin-bottom: 0;
}

.support-grid article {
  min-height: 238px;
  padding: 26px 22px;
}

.support-grid strong {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 105, 0, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.job-grid {
  align-items: stretch;
}

.job-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.job-card-head {
  padding: 26px 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 105, 0, 0.96), rgba(179, 91, 23, 0.96)),
    linear-gradient(90deg, transparent, rgba(228, 179, 33, 0.22));
}

.job-card-head p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 0.85rem;
}

.job-card-head h3 {
  margin: 0;
  color: var(--white);
}

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

.job-card dl div {
  padding: 20px 24px;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.job-card dt {
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
}

.job-card dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.conditions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}

.conditions-list > div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.conditions-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
}

.conditions-list div {
  min-height: 118px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.84);
}

.conditions-list strong {
  color: var(--leaf);
  font-size: 1.14rem;
}

.recruit-flow,
.service-flow {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

.recruit-flow li,
.service-flow li {
  min-height: 220px;
  padding: 26px 22px;
  display: grid;
  align-content: start;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
}

.recruit-flow > li > span,
.service-flow > li > span {
  color: rgba(228, 179, 33, 0.9);
  font-size: 2.4rem;
  line-height: 1;
}

.recruit-flow h3,
.service-flow h3 {
  margin-top: 0;
}

.recruit-flow p,
.service-flow p {
  margin-bottom: 0;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
  overflow: hidden;
}

.faq-list summary {
  min-height: 74px;
  padding: 22px 58px 22px 24px;
  display: grid;
  align-items: center;
  position: relative;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.55;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--leaf);
  transform: translateY(-50%);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text);
  line-height: 1.9;
}

.recruit-cta,
.service-cta,
.strength-cta {
  width: min(1280px, calc(100% - 32px));
  margin: 94px auto 0;
  padding: 42px;
  border: 1px solid rgba(228, 179, 33, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 230, 0.84)),
    repeating-linear-gradient(45deg, rgba(228, 179, 33, 0.08) 0 8px, transparent 8px 22px);
  box-shadow: 0 16px 42px rgba(107, 64, 27, 0.08);
}

.recruit-cta h2,
.service-cta h2,
.strength-cta h2 {
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.recruit-cta p,
.service-cta p,
.strength-cta p {
  max-width: 760px;
}

.recruit-cta .button,
.service-cta .button,
.strength-cta .button {
  margin-top: 18px;
}

.office-section {
  display: block;
}

.company-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
}

.company-list div {
  min-height: 108px;
  padding: 22px 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 200ms ease,
    background 200ms ease;
}

.company-list div:hover {
  background: rgba(255, 241, 230, 0.9);
  transform: translateY(-2px);
}

.company-list-wide {
  grid-template-columns: 1fr;
}

.company-list a {
  color: var(--leaf);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.company-list dt {
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 900;
}

.company-list dd {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-section {
  margin-top: 104px;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 105, 0, 0.96), rgba(179, 91, 23, 0.96)),
    linear-gradient(90deg, transparent, rgba(228, 179, 33, 0.22));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-page-section {
  margin-top: 54px;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 6s ease-in-out infinite;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section h2 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.contact-section p {
  margin-bottom: 0;
  opacity: 0.9;
}

.contact-section .button.primary {
  color: var(--leaf);
  background: var(--white);
  box-shadow: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(77, 42, 15, 0.18);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.form-note,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-row label span {
  margin-left: 8px;
  padding: 3px 7px;
  color: var(--white);
  border-radius: 999px;
  background: var(--leaf);
  font-size: 0.68rem;
  vertical-align: 1px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(107, 64, 27, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.form-row textarea {
  resize: vertical;
  line-height: 1.75;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(228, 179, 33, 0.18);
  transform: translateY(-1px);
}

.form-note {
  margin: 0;
  color: var(--text) !important;
  font-size: 0.84rem;
  line-height: 1.7 !important;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--leaf) !important;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.6 !important;
}

.site-footer {
  padding: 34px 0 42px;
  color: var(--text);
}

.fixed-contact-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(430px, calc(100% - 36px));
  padding: 10px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(77, 42, 15, 0.18);
  backdrop-filter: blur(16px);
  animation: fixed-bar-rise 520ms ease both;
}

.fixed-contact-button {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.fixed-contact-button::before {
  font-size: 1.05rem;
  line-height: 1;
}

.fixed-contact-button.contact {
  color: var(--white);
  background: var(--leaf);
  box-shadow: 0 14px 30px rgba(255, 105, 0, 0.2);
}

.fixed-contact-button.contact::before {
  content: "✉";
}

.fixed-contact-button.phone {
  color: var(--ink);
  border: 1px solid rgba(228, 179, 33, 0.46);
  background: rgba(255, 250, 240, 0.96);
}

.fixed-contact-button.phone::before {
  content: "☎";
}

.fixed-contact-button:hover,
.fixed-contact-button:focus-visible {
  transform: translateY(-2px);
}

.fixed-contact-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.76;
}

.fixed-contact-button.is-disabled:hover,
.fixed-contact-button.is-disabled:focus-visible {
  transform: none;
}

.subpage-hero {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 34px;
}

.subpage-hero h1 {
  max-width: none;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 2;
}

.company-page-section {
  padding-top: 54px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation: reveal-up 520ms ease var(--delay, 0s) both;
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(-1.2deg) scale(1.035);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-pop {
  from {
    opacity: 0;
    transform: scale(0.86) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes float-stage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.42;
    transform: scale(0.82) rotate(16deg);
  }
}

@keyframes pill-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0%,
  62% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes sparkle-drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-16px);
  }
}

@keyframes fixed-bar-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.documents-hero {
  position: relative;
}

.documents-hero::after {
  content: "★";
  position: absolute;
  right: min(8vw, 90px);
  top: 72px;
  color: rgba(228, 179, 33, 0.48);
  font-size: clamp(2rem, 5vw, 4.2rem);
  filter: drop-shadow(0 8px 18px rgba(228, 179, 33, 0.18));
  animation: twinkle 3.4s ease-in-out infinite;
}

.document-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.document-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(107, 64, 27, 0.08);
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.document-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 179, 33, 0.48);
  box-shadow: 0 22px 52px rgba(107, 64, 27, 0.13);
}

.document-list a {
  min-height: 124px;
  padding: 24px;
  display: grid;
  grid-template-columns: 108px 1fr 180px;
  align-items: center;
  gap: 20px;
}

.document-list a:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: -3px;
}

.document-tag {
  padding: 8px 10px;
  display: inline-flex;
  justify-content: center;
  color: var(--leaf);
  border: 1px solid rgba(255, 105, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 241, 230, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.document-body {
  display: grid;
  gap: 7px;
}

.document-title {
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  font-weight: 900;
  line-height: 1.55;
  text-wrap: balance;
}

.document-note {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.8;
}

.document-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.document-format {
  padding: 5px 10px;
  color: var(--white);
  border-radius: 5px;
  background: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.document-size {
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.5;
}

.document-download {
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 12px 26px rgba(255, 105, 0, 0.24);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.document-download::after {
  content: "↓";
  font-size: 0.92rem;
}

.document-list li:hover .document-download {
  background: var(--sage-dark);
}

.document-updated {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 0.86rem;
}

.documents-note-section {
  padding-top: 76px;
}

@media (max-width: 940px) {
  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    align-items: center;
    gap: 10px;
    min-height: 0;
    padding-block: 8px;
  }

  main {
    padding-top: 96px;
  }

  .subpage-main {
    padding-top: 110px;
  }

  .brand {
    width: 124px;
    height: 58px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 20px 14px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 34px rgba(107, 64, 27, 0.14);
    white-space: normal;
  }

  .site-header.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 0.98rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    content: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero,
  .section-heading.split,
  .office-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
    gap: 28px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .status-strip,
  .feature-grid,
  .faq-preview-grid,
  .news-list a,
  .service-list,
  .strength-grid,
  .strength-detail-list article,
  .work-style-grid,
  .job-grid,
  .service-page-grid,
  .support-grid,
  .conditions-list,
  .recruit-flow,
  .service-flow {
    grid-template-columns: 1fr;
  }

  .news-list a {
    align-items: start;
    gap: 12px;
  }

  .news-list p {
    grid-column: auto;
    margin-top: 0;
  }

  .document-list a {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .document-tag {
    justify-self: start;
  }

  .document-meta {
    width: 100%;
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .document-download {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }

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

  .contact-section {
    padding: 34px 24px;
  }

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

  .recruit-flow li,
  .service-flow li,
  .strength-detail-list article,
  .work-style-grid article,
  .service-page-grid article,
  .support-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: 92px;
  }

  .site-header,
  .hero,
  .status-strip,
  .section,
  .contact-section,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    top: 0;
    width: 100%;
    padding: 6px 12px;
  }

  main {
    padding-top: 88px;
  }

  .subpage-main {
    padding-top: 98px;
  }

  .subpage-hero {
    width: min(100% - 24px, 1120px);
    padding-top: 42px;
  }

  .brand {
    width: 112px;
    height: 58px;
  }

  .header-cta {
    margin-left: auto;
    min-height: 40px;
    padding-inline: 14px;
  }

  .nav-links {
    padding-inline: 12px;
  }

  .fixed-contact-bar {
    display: grid;
    right: 8px;
    bottom: 8px;
    width: calc(100% - 16px);
    padding: 8px;
    gap: 8px;
  }

  .fixed-contact-button {
    min-height: 50px;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-pills {
    gap: 8px;
  }

  .hero-pills span {
    font-size: 0.8rem;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 270px;
  }

  .status-strip div {
    min-height: 96px;
    padding: 20px;
  }

  .section {
    padding-top: 72px;
  }

  .feature-grid article,
  .service-list article,
  .strength-grid article {
    min-height: auto;
    padding: 24px;
  }

  .recruit-copy {
    padding: 28px 22px;
  }

  .recruit-hero::after,
  .news-hero::after,
  .strength-hero::after,
  .faq-hero::after,
  .documents-hero::after,
  .service-hero::after {
    top: 28px;
    right: 18px;
  }

  .news-list a,
  .document-list a {
    min-height: auto;
    padding: 20px;
  }

  .job-card-head,
  .job-card dl div,
  .conditions-list div,
  .recruit-flow li,
  .service-flow li,
  .recruit-cta,
  .service-cta,
  .strength-cta {
    padding: 22px;
  }

  .recruit-cta,
  .service-cta,
  .strength-cta {
    width: min(100% - 24px, 1120px);
    margin-top: 74px;
  }

  .philosophy-card {
    padding: 30px 22px;
  }

  .company-list div {
    min-height: 94px;
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Design refinement: warm, dependable, and distinctly NANA */
:root {
  --ink: #2c1a0d;
  --text: #5c4939;
  --sage: #cf631d;
  --sage-dark: #9d4510;
  --leaf: #ff6900;
  --gold: #f0b429;
  --cream: #fffaf5;
  --mint: #fff2e8;
  --line: rgba(73, 39, 16, 0.13);
  --shadow: 0 26px 70px rgba(92, 46, 12, 0.14);
  --radius: 22px;
}

body {
  background: #fffdf9;
  line-height: 1.7;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 105, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 105, 0, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.55) 44%, transparent 82%);
}

body::after {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 105, 0, 0.1), transparent 24%),
    radial-gradient(circle at 94% 34%, rgba(240, 180, 41, 0.11), transparent 22%);
  opacity: 1;
}

::selection {
  color: var(--white);
  background: var(--leaf);
}

.site-header {
  min-height: 82px;
  border-bottom: 1px solid rgba(73, 39, 16, 0.08);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 10px 36px rgba(92, 46, 12, 0.07);
}

.brand {
  width: 164px;
}

.nav-links {
  color: #69452d;
  letter-spacing: 0.02em;
}

.nav-links a::after {
  height: 3px;
  border-radius: 999px;
  background: var(--leaf);
}

.header-cta,
.button {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, #ff7a1a, #ee5c00);
  box-shadow: 0 14px 30px rgba(255, 105, 0, 0.25);
}

.header-cta:hover,
.button.primary:hover,
.header-cta:focus-visible,
.button.primary:focus-visible {
  box-shadow: 0 18px 38px rgba(255, 105, 0, 0.32);
}

.button.secondary {
  color: #a7470d;
  border-color: rgba(157, 69, 16, 0.2);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 8px 22px rgba(92, 46, 12, 0.07);
}

.hero {
  width: min(1380px, calc(100% - 32px));
  min-height: calc(100svh - 110px);
  padding: 62px clamp(24px, 4.2vw, 68px) 54px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 5vw, 76px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 10%, rgba(240, 180, 41, 0.2), transparent 22%),
    linear-gradient(128deg, rgba(255, 247, 238, 0.96), rgba(255, 253, 249, 0.84));
  isolation: isolate;
}

.hero::before {
  content: "";
  left: -90px;
  top: auto;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(255, 105, 0, 0.07);
  border-radius: 50%;
  filter: none;
  animation: none;
}

.hero::after {
  content: "★";
  right: 4%;
  bottom: 8%;
  z-index: 2;
  color: rgba(240, 180, 41, 0.6);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #b44f10;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--leaf);
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--leaf);
}

h2 {
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 650px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 2.05;
}

.hero-pills span {
  padding: 9px 15px;
  color: #754325;
  border: 1px solid rgba(157, 69, 16, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 18px rgba(92, 46, 12, 0.05);
}

.hero-visual {
  min-height: 490px;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 228, 0.84)),
    repeating-linear-gradient(135deg, rgba(255, 105, 0, 0.06) 0 8px, transparent 8px 24px);
  box-shadow:
    0 36px 80px rgba(92, 46, 12, 0.16),
    -18px 18px 0 rgba(255, 105, 0, 0.08);
  transform: rotate(1.2deg);
}

.hero-visual::after {
  inset: 12px;
  border-color: rgba(255, 105, 0, 0.17);
  border-radius: 18px;
}

.hero-visual img {
  width: min(100%, 720px);
  transform: rotate(-1.2deg);
  filter: drop-shadow(0 24px 32px rgba(73, 39, 16, 0.12));
}

.status-strip {
  position: relative;
  z-index: 4;
  margin-top: -30px;
  border: 0;
  border-radius: 24px;
  background: #342014;
  box-shadow: 0 24px 60px rgba(52, 32, 20, 0.18);
}

.status-strip div {
  min-height: 126px;
  padding: 26px 30px;
  color: var(--white);
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.status-strip div:last-child {
  border-right: 0;
}

.status-strip strong {
  color: #ff812d;
}

.status-strip span {
  color: rgba(255, 255, 255, 0.75);
}

.section {
  padding-top: 124px;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading.split {
  gap: clamp(36px, 8vw, 110px);
}

.philosophy-card {
  max-width: 960px;
  padding: clamp(38px, 5vw, 68px);
  border: 0;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(240, 180, 41, 0.28), transparent 25%),
    linear-gradient(135deg, #3a2417, #5a3017);
  box-shadow: 18px 18px 0 rgba(255, 105, 0, 0.13);
}

.philosophy-card p,
.philosophy-card cite {
  color: var(--white);
}

.philosophy-card cite {
  opacity: 0.68;
}

.feature-grid article,
.service-list article,
.strength-grid article,
.faq-preview-grid article,
.news-list article {
  border-color: rgba(73, 39, 16, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 42px rgba(92, 46, 12, 0.075);
}

.strength-grid {
  gap: 24px;
}

.strength-grid article {
  position: relative;
  min-height: 300px;
  padding: 36px;
  overflow: hidden;
}

.strength-grid article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border: 28px solid rgba(255, 105, 0, 0.055);
  border-radius: 50%;
}

.strength-grid strong {
  margin-bottom: 42px;
  color: var(--leaf);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.service-list {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(92, 46, 12, 0.08);
}

.service-list article {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.9);
}

.service-list article:last-child {
  border-right: 0;
}

.faq-preview-grid article {
  border-top: 4px solid var(--leaf);
}

.news-list.compact article {
  border-radius: 16px;
  box-shadow: none;
}

.news-list.compact a {
  min-height: 96px;
}

.recruit-copy {
  padding: clamp(36px, 5vw, 64px);
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 105, 0, 0.14), transparent 24%),
    linear-gradient(120deg, #fff6ed, #fffdf9);
  box-shadow: inset 0 0 0 1px rgba(255, 105, 0, 0.12);
}

.contact-section {
  margin-top: 124px;
  padding: clamp(34px, 4vw, 60px);
  gap: clamp(34px, 5vw, 70px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 4% 92%, rgba(240, 180, 41, 0.34), transparent 26%),
    linear-gradient(135deg, #ff720f, #d94e00);
  box-shadow: 0 32px 80px rgba(191, 71, 0, 0.22);
}

.contact-form {
  padding: 30px;
  border: 0;
  border-radius: 24px;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 12px;
}

.subpage-hero {
  margin-top: 18px;
  padding: 72px clamp(24px, 5vw, 68px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(240, 180, 41, 0.2), transparent 24%),
    linear-gradient(128deg, #fff5ea, #fffdf9);
}

.site-footer {
  margin-top: 20px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

@media (max-width: 940px) {
  .brand {
    width: 132px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 46px 34px 54px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .status-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -22px;
  }

  .status-strip div:nth-child(2) {
    border-right: 0;
  }

  .status-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-list {
    gap: 0;
  }

  .service-list article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-list article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .hero {
    width: calc(100% - 16px);
    padding: 34px 20px 42px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.45rem);
  }

  .hero-lead {
    line-height: 1.9;
  }

  .hero-visual {
    min-height: 270px;
    border-width: 6px;
    border-radius: 22px;
    box-shadow:
      0 24px 54px rgba(92, 46, 12, 0.15),
      -8px 10px 0 rgba(255, 105, 0, 0.08);
  }

  .status-strip {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    margin-top: -14px;
  }

  .status-strip div {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .status-strip div:nth-child(2) {
    border-right: 0;
  }

  .status-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 88px;
  }

  .strength-grid article {
    min-height: auto;
    padding: 28px;
  }

  .strength-grid strong {
    margin-bottom: 28px;
  }

  .contact-section {
    border-radius: 26px;
  }

  .subpage-hero {
    width: calc(100% - 16px);
    padding: 48px 22px;
    border-radius: 24px;
  }
}

/* Hero catch copy: チラシと同じ文言に合わせた行送り調整 */
.hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.3rem);
  }
}

/* 事業所番号 */
.document-code {
  justify-self: start;
  padding: 5px 10px;
  color: var(--sage-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 241, 230, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.office-code-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.office-code-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}

.office-code-list span {
  min-width: 12em;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

/* お知らせ記事ページ */
.article {
  width: min(880px, calc(100% - 32px));
  margin-inline: auto;
  padding-bottom: 40px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--leaf);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.breadcrumb span {
  color: rgba(107, 64, 27, 0.4);
}

.article-head {
  padding-bottom: 26px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.article-head h1 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.article-meta time {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 900;
}

.article-cat {
  padding: 7px 12px;
  color: var(--leaf);
  border: 1px solid rgba(255, 105, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 241, 230, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.article-body > p {
  margin-bottom: 26px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 2;
}

.article-body h2 {
  margin: 44px 0 20px;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.5;
}

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

.article-back {
  margin: 34px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-back a {
  color: var(--leaf);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 560px) {
  .article-actions .button {
    width: 100%;
  }
}
