:root {
  --bg: #fbf8ef;
  --paper: rgba(255, 253, 246, 0.92);
  --panel: #fffdf8;
  --ink: #5f5547;
  --muted: #7e7568;
  --line: rgba(95, 85, 71, 0.14);
  --green: #5d973b;
  --green-deep: #4c7c31;
  --sage: #efe5d6;
  --sand: #f1e6d4;
  --sky: #e7edf4;
  --rose: #f4e6de;
  --gold: #f6ecd6;
  --shadow: 0 24px 70px rgba(68, 57, 42, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-wide: 1180px;
  --max-main: 1020px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(180deg, #fffef8 0%, #faf6eb 100%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  background: url("assets/rainbow-arc-soft.svg") center center / cover no-repeat;
  transform-origin: center center;
}

body::before {
  inset: -16vh -24vw -14vh -24vw;
  opacity: 0.34;
  filter: saturate(0.9);
  animation: rainbowArcRise 22s ease-in-out infinite alternate;
}

body::after {
  inset: -22vh -30vw -20vh -30vw;
  opacity: 0.18;
  filter: blur(12px) saturate(0.84);
  animation: rainbowArcRiseSoft 26s ease-in-out infinite alternate;
}

.site-header,
main,
.site-footer {
  position: relative;
}

main,
.site-footer {
  z-index: 1;
}

body.sub-page {
  padding-top: 64px;
}

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

img {
  display: block;
  max-width: 100%;
}

.wide-inner,
.inner {
  width: min(calc(100% - 32px), var(--max-wide));
  margin: 0 auto;
}

.inner {
  width: min(calc(100% - 32px), var(--max-main));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(253, 253, 244, 0.96);
  border-bottom: 1px solid rgba(100, 87, 70, 0.08);
  box-shadow: 0 10px 24px rgba(68, 57, 42, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 26px;
  background: linear-gradient(180deg, rgba(253, 253, 244, 0.9), rgba(253, 253, 244, 0));
  z-index: -1;
  pointer-events: none;
}

.header-frame {
  position: relative;
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.brand-mark {
  width: 58px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(100, 87, 70, 0.08);
  box-shadow: 0 8px 20px rgba(68, 57, 42, 0.08);
  border-radius: 18px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-copy {
  text-align: center;
  white-space: nowrap;
}

.brand-copy strong {
  display: block;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", sans-serif;
  color: #4f9124;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-copy span {
  display: block;
  color: rgba(79, 145, 36, 0.9);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
}

.nav-wing {
  display: flex;
  width: calc(50% - 132px);
  gap: 28px;
  align-items: center;
  min-width: 0;
}

.nav-wing-left {
  justify-content: flex-end;
  padding-right: 48px;
}

.nav-wing-right {
  justify-content: flex-start;
  padding-left: 48px;
}

.wing-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #645746;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.wing-link::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  left: -14px;
  bottom: -14px;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: -1;
}

.wing-link:hover::after {
  opacity: 1;
  transform: scale(1);
}

.wing-link.sand::after {
  background: #f2ecdc;
}

.wing-link.sage::after {
  background: #efe5d6;
}

.wing-link.gold::after {
  background: #fdf7dd;
}

.wing-link.sky::after {
  background: #e4f6fc;
}

.wing-link.rose::after {
  background: #f8e8df;
}

.wing-link.plain {
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 15px;
  width: 30px;
  height: 28px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #645746;
  margin: 0 0 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.site-nav {
  display: none;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-dot.sand { background: var(--sand); }
.nav-dot.sage { background: var(--sage); }
.nav-dot.gold { background: var(--gold); }
.nav-dot.sky { background: var(--sky); }
.nav-dot.rose { background: var(--rose); }

main {
  padding-bottom: 32px;
}

.page-hero {
  padding: 44px 0 28px;
  position: relative;
  overflow: clip;
}

.page-hero::before,
.page-hero::after {
  display: none;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(95, 85, 71, 0.08);
  box-shadow: 0 10px 30px rgba(68, 57, 42, 0.06);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-title {
  margin: 18px 0 12px;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.hero-text {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
}

.breadcrumb {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel,
.panel,
.info-card,
.news-entry,
.job-card,
.policy-card,
.timeline-item,
.notice-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.hero-panel h2,
.section-title,
.panel h2,
.info-card h3,
.job-card h3,
.policy-card h3,
.timeline-item h3,
.notice-card h3 {
  margin: 0 0 12px;
}

.hero-panel h2 {
  color: var(--green);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.hero-panel p,
.panel p,
.info-card p,
.job-card p,
.policy-card p,
.timeline-item p,
.notice-card p {
  margin: 0;
  color: var(--muted);
}

.text-flow p + p {
  margin-top: 14px;
}

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

.list li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.7em;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7c1a0, #f0e4d3);
  flex-shrink: 0;
}

.page-link-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-link-list li::before {
  display: none;
}

.page-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(95, 85, 71, 0.08);
  box-shadow: 0 10px 24px rgba(68, 57, 42, 0.05);
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.page-link-list a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

.page-link-list a:hover {
  color: var(--green-deep);
  background: rgba(241, 230, 212, 0.78);
  border-color: rgba(179, 154, 125, 0.2);
  transform: translateY(-1px);
}

.section {
  padding: 52px 0;
}

.section-header {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 44px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sand), var(--gold));
}

.section-title {
  margin-top: 10px;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.section-text {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}

.keep-together {
  white-space: nowrap;
}

.split-2,
.cards-2,
.cards-3,
.contact-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.split-2,
.cards-2,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-2 {
  align-items: start;
}

.cards-3,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.panel h2 {
  color: var(--green);
  font-size: 1.34rem;
}

.info-card,
.job-card,
.timeline-item,
.notice-card,
.policy-card {
  padding: 22px;
  border-radius: 26px;
}

.info-card h3,
.job-card h3,
.timeline-item h3,
.notice-card h3,
.policy-card h3 {
  color: var(--green);
  font-size: 1.1rem;
}

.policy-meta-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.policy-meta-list div {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid rgba(95, 85, 71, 0.1);
}

.policy-meta-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.policy-meta-list dt {
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.65;
  white-space: nowrap;
}

.policy-meta-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.policy-meta-list dd span {
  display: block;
}

.policy-meta-list a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pill-list,
.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-list-spaced {
  margin-top: 16px;
}

.pill,
.tag {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.35;
  white-space: nowrap;
}

.accent-box {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(246, 239, 227, 0.84), rgba(243, 232, 220, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 36px rgba(68, 57, 42, 0.08);
}

.accent-box h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 1.18rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 24px;
}

.info-table th,
.info-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  background: rgba(255, 253, 248, 0.9);
}

.info-table th {
  width: 28%;
  color: var(--green);
  font-weight: 700;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.office-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.office-card-grid-single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.office-card {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(248, 241, 230, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 46px rgba(68, 57, 42, 0.09);
}

.office-card h3 {
  margin: 12px 0 20px;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--ink);
  word-break: keep-all;
}

.office-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(243, 232, 220, 0.74);
  border: 1px solid rgba(179, 154, 125, 0.18);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.office-meta {
  display: grid;
  gap: 0;
  margin: 0;
}

.office-meta div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(95, 85, 71, 0.1);
}

.office-meta dt {
  color: var(--green-deep);
  font-weight: 700;
}

.office-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.office-contact-box {
  margin-top: 24px;
}

.about-hero-shell {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.about-local-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--ink);
}

.about-local-nav a {
  position: relative;
  padding-right: 18px;
  white-space: nowrap;
}

.about-local-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  transform: translateY(-50%);
}

.about-local-nav a:last-child {
  padding-right: 0;
}

.about-local-nav a:last-child::after {
  display: none;
}

.about-narrow {
  width: min(calc(100% - 32px), 860px);
  margin: 0 auto;
}

.about-message-grid,
.about-access-grid {
  display: grid;
  gap: 24px;
}

.about-message-grid {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 0.98fr);
  align-items: center;
}

.about-photo-card,
.about-message-copy {
  min-width: 0;
}

.about-access-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.about-photo-card {
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #f3e8da 0%, #f6ecd6 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(68, 57, 42, 0.1);
}

.about-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-photo-card.representative-photo {
  display: grid;
  place-items: end center;
  aspect-ratio: 4 / 5.15;
  padding: 18px 18px 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(244, 235, 223, 0.94));
}

.about-photo-card.representative-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
}

.about-message-copy h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 1.3rem;
}

.about-access-grid .panel,
.about-access-grid .accent-box {
  height: 100%;
}

.about-wide-copy {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-group-grid {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.about-partner-grid {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.group-entity-card {
  text-align: left;
}

.group-entity-card h3 {
  line-height: 1.55;
}

.group-entity-meta {
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.group-entity-meta div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.group-entity-meta dt {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.group-entity-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.partner-visual-card {
  border-radius: 30px;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(246, 239, 227, 0.92), rgba(243, 232, 220, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(68, 57, 42, 0.1);
}

.partner-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(68, 57, 42, 0.08);
}

.partner-visual-placeholder {
  min-height: 100%;
  min-height: 320px;
  border-radius: 22px;
  border: 1px dashed rgba(95, 85, 71, 0.22);
  background: rgba(255, 253, 248, 0.66);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.partner-visual-placeholder strong {
  color: var(--green);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.partner-visual-placeholder span {
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-company-card {
  height: auto;
}

.partner-copy {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(95, 85, 71, 0.12);
  display: grid;
  gap: 16px;
}

.partner-copy h4 {
  margin: 0;
  color: var(--green);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.partner-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.partner-copy span {
  display: block;
}

.recruit-page-visual {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(246, 239, 227, 0.92), rgba(243, 232, 220, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(68, 57, 42, 0.1);
}

.recruit-page-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(68, 57, 42, 0.08);
}

.about-page .page-hero {
  padding-top: 44px;
}

.about-page .page-hero-shell {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 920px;
  gap: 16px;
}

.about-page .hero-text,
.about-page .section-text,
.about-page .cta-band p {
  margin-inline: auto;
  text-align: center;
}

.about-page .section-header {
  justify-content: center;
  text-align: center;
  margin-bottom: 32px;
}

.about-page .section-header > div {
  text-align: center;
}

.about-page .about-narrow {
  width: min(calc(100% - 32px), 920px);
}

.about-page .panel,
.about-page .about-message-grid,
.about-page .about-access-grid,
 .about-page .about-group-grid,
.about-page .about-partner-grid,
.about-page .info-table,
.about-page .cta-band {
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-message-grid,
.about-page .about-access-grid,
 .about-page .about-group-grid,
.about-page .about-partner-grid,
.about-page .info-table,
.about-page .cta-band {
  max-width: 980px;
}

.about-page .about-message-grid {
  align-items: center;
}

.about-page .about-message-copy {
  text-align: left;
  max-width: 34rem;
  justify-self: start;
}

.about-page .about-wide-copy {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.about-page .about-wide-copy .text-flow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-page .philosophy-copy {
  display: grid;
  gap: 26px;
}

.about-page .philosophy-copy p {
  margin: 0;
  line-height: 1.95;
}

.about-page .philosophy-copy span {
  display: block;
}

.about-page .about-message-copy {
  background: rgba(255, 253, 248, 0.9);
}

.about-page .representative-photo {
  align-self: center;
  width: 100%;
}

.about-page .greeting-copy {
  display: grid;
  gap: 24px;
}

.about-page .greeting-copy p {
  margin: 0;
  line-height: 1.95;
}

.about-page .greeting-copy span {
  display: block;
}

.service-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
}

.service-visual {
  min-height: 260px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #f3e8da 0%, #f6ecd6 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(68, 57, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: attr(data-label);
  position: absolute;
  inset: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  border: 1px dashed rgba(95, 85, 71, 0.18);
  color: var(--muted);
  background: rgba(255, 253, 248, 0.28);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.service-visual.has-image {
  min-height: 0;
}

.service-visual.has-image::before {
  display: none;
}

.service-visual.has-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.news-entry {
  padding: 24px;
  border-radius: 28px;
}

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

.news-date {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.news-category {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(95, 85, 71, 0.08);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-entry h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
}

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

.faq-item {
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(68, 57, 42, 0.08);
  overflow: hidden;
}

.faq-item[open] {
  background: rgba(255, 253, 248, 0.94);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
}

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

.faq-question strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}

.faq-question-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(241, 230, 212, 0.82);
  border: 1px solid rgba(179, 154, 125, 0.2);
}

.faq-question-icon::before,
.faq-question-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.faq-question-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-question-icon::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 24px 22px;
  border-top: 1px solid rgba(95, 85, 71, 0.08);
}

.faq-answer p {
  margin: 18px 0 0;
  color: var(--muted);
}

.news-accordion {
  display: grid;
  gap: 18px;
}

.news-accordion-item {
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(68, 57, 42, 0.08);
  overflow: hidden;
}

.news-accordion-item[open] {
  background: rgba(255, 253, 248, 0.94);
}

.news-summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  cursor: pointer;
}

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

.news-summary-main {
  min-width: 0;
  flex: 1;
}

.news-summary h3 {
  margin: 10px 0 0;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink);
}

.news-summary-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(241, 230, 212, 0.82);
  border: 1px solid rgba(179, 154, 125, 0.2);
}

.news-summary-icon::before,
.news-summary-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.news-summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.news-accordion-item[open] .news-summary-icon::after {
  opacity: 0;
}

.news-accordion-body {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(95, 85, 71, 0.08);
}

.news-accordion-body p {
  margin: 18px 0 0;
  color: var(--muted);
}

.news-accordion-body .link-arrow {
  margin-top: 18px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--green-deep);
  font-weight: 700;
}

.link-arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  padding-left: 72px;
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #8f785d;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

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

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

.job-card dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}

.job-card dt {
  color: var(--green);
  font-weight: 700;
}

.job-card dd {
  margin: 0;
  color: var(--muted);
}

.job-card .button {
  margin-top: 18px;
}

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

.contact-chip {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(68, 57, 42, 0.08);
}

.contact-chip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 1rem;
}

.contact-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-chip .contact-line-meta {
  display: flex;
  gap: 4px 12px;
  flex-wrap: wrap;
}

.contact-chip .contact-line-meta span {
  white-space: nowrap;
}

.form-shell {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.form-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(95, 85, 71, 0.18);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(175, 146, 110, 0.28);
  border-color: rgba(143, 120, 93, 0.62);
}

.form-notice {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 246, 221, 0.78);
  border: 1px solid rgba(212, 183, 117, 0.22);
  font-weight: 700;
}

.form-disabled-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-shell-disabled input,
.form-shell-disabled select,
.form-shell-disabled textarea {
  background: rgba(248, 244, 235, 0.68);
  color: rgba(95, 85, 71, 0.52);
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-line input {
  margin-top: 0.4em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 10px 14px 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(68, 57, 42, 0.14);
}

.button-disabled {
  color: rgba(95, 85, 71, 0.68);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(95, 85, 71, 0.14);
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.button-disabled .button-badge {
  color: rgba(95, 85, 71, 0.72);
  background: rgba(95, 85, 71, 0.08);
  border-color: rgba(95, 85, 71, 0.06);
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(95, 85, 71, 0.08);
  color: var(--ink);
}

.button-badge {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.button-secondary .button-badge {
  background: var(--sand);
  border-color: transparent;
}

.submit-row {
  margin-top: 24px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 28px;
  align-items: center;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.56), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(135deg, rgba(246, 239, 227, 0.98) 0%, rgba(240, 230, 217, 0.98) 100%);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  grid-column: 1;
  margin: 0 0 12px;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.65rem, 2vw, 2.08rem);
  line-height: 1.3;
}

.cta-band p {
  grid-column: 1;
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-content: flex-end;
  margin-top: 0;
}

.cta-band .button {
  background: var(--ink);
  border: 1px solid rgba(95, 85, 71, 0.08);
  color: #fff;
}

.cta-band .button-badge {
  background: rgba(255, 255, 255, 0.18);
}

.site-footer {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.84) 0%, rgba(243, 237, 225, 0.97) 100%);
  color: var(--ink);
  padding: 0 20px 52px;
  border-top: 1px solid rgba(95, 85, 71, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px 48px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 36px;
  border-top: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(241, 230, 212, 0),
    rgba(241, 230, 212, 0.76),
    rgba(246, 236, 214, 0.82),
    rgba(244, 230, 222, 0.46),
    rgba(231, 237, 244, 0.24),
    rgba(241, 230, 212, 0)
  );
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(95, 85, 71, 0.08);
  box-shadow: 0 14px 30px rgba(68, 57, 42, 0.06);
  border-radius: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-copy {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  color: var(--green-deep);
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
}

.footer-contact-line {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 12px 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 85, 71, 0.08);
  box-shadow: 0 10px 24px rgba(68, 57, 42, 0.05);
  color: var(--ink);
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--green-deep);
  background: rgba(241, 230, 212, 0.78);
  border-color: rgba(179, 154, 125, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .about-access-grid,
  .about-partner-grid,
  .page-hero-shell,
  .split-2,
  .cards-2,
  .cards-3,
  .contact-grid,
  .process-grid,
  .service-block,
  .job-grid,
  .office-card-grid {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: 6px;
  }

  .service-block > .panel {
    order: 1;
  }

  .service-block > .service-visual {
    order: 2;
  }

  .about-page .about-message-grid {
    grid-template-columns: minmax(150px, 34%) minmax(0, 1fr);
  }

  .about-photo-card.representative-photo {
    padding: 14px 14px 0;
  }

  .partner-visual-placeholder {
    min-height: 240px;
  }
}

@media (min-width: 1081px) and (max-width: 1400px) {
  .nav-wing {
    gap: 18px;
  }

  .nav-wing-left {
    padding-right: 34px;
  }

  .nav-wing-right {
    padding-left: 34px;
  }

  .wing-link {
    gap: 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1080px) {
  .nav-wing {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .brand {
    left: 20px;
    transform: none;
    top: 7px;
  }

  .brand-mark {
    width: 48px;
    padding: 4px;
    border-radius: 15px;
  }

  .brand-copy {
    text-align: left;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy span {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: block;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(253, 253, 244, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .site-nav ul {
    display: grid;
    gap: 12px;
    justify-content: stretch;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 8px 0;
    font-size: 1rem;
    font-weight: 700;
    background: none;
  }

  .site-nav a:hover {
    transform: none;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

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

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

@media (max-width: 640px) {
  .recruit-page-visual {
    padding: 12px;
    border-radius: 24px;
  }

  .recruit-page-visual img {
    border-radius: 18px;
  }

  .about-page .about-message-grid {
    grid-template-columns: minmax(112px, 36%) minmax(0, 1fr);
    gap: 16px;
  }

  .about-photo-card.representative-photo {
    padding: 10px 10px 0;
    border-radius: 22px;
  }

  .about-page .about-message-copy {
    padding: 20px 18px;
  }

  .group-entity-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .about-local-nav {
    gap: 12px;
  }

  .about-local-nav a {
    padding-right: 14px;
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 44px;
    padding: 4px;
    border-radius: 14px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy span {
    display: none;
  }

  .page-hero {
    padding-top: 42px;
  }

  .about-page .page-hero {
    padding-top: 34px;
  }

  .panel,
  .hero-panel,
  .info-card,
  .office-card,
  .job-card,
  .policy-card,
  .timeline-item,
  .notice-card,
  .form-shell,
  .cta-band {
    padding: 22px;
  }

  .cta-band {
    gap: 12px;
  }

  .cta-band h2 {
    margin-bottom: 8px;
  }

  .timeline-item {
    padding-left: 22px;
    padding-top: 68px;
  }

  .timeline-item::before {
    left: 22px;
    top: 18px;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .office-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .policy-meta-list div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0;
  }

  .policy-meta-list dt {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .policy-meta-list dd {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .job-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: 6px;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand-copy {
    gap: 6px;
  }

  .footer-brand img {
    width: 54px;
    height: 54px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@keyframes rainbowArcRise {
  0% {
    transform: translate3d(-1vw, 2vh, 0) scale(1);
    opacity: 0.3;
  }

  100% {
    transform: translate3d(1vw, -2vh, 0) scale(1.015);
    opacity: 0.38;
  }
}

@keyframes rainbowArcRiseSoft {
  0% {
    transform: translate3d(-1.5vw, 1.5vh, 0) scale(1.04);
    opacity: 0.14;
  }

  100% {
    transform: translate3d(1.5vw, -2.5vh, 0) scale(1.07);
    opacity: 0.22;
  }
}
