:root {
  --ink: #2b211d;
  --muted: #746760;
  --paper: #fbf4e8;
  --white: #ffffff;
  --teal: #315f43;
  --teal-dark: #243f2f;
  --coral: #b8402d;
  --gold: #d69a2d;
  --line: rgba(43, 33, 29, 0.14);
  --shadow: 0 20px 70px rgba(43, 33, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic",
    "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 244, 232, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(17, 34, 38, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  opacity: 0.7;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.82;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  padding: 10px 18px;
  background: var(--white);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.site-header.is-scrolled .header-cta {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 124px clamp(20px, 5vw, 72px) 80px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/ramo-work-peak.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 27, 31, 0.9) 0%, rgba(9, 27, 31, 0.58) 44%, rgba(9, 27, 31, 0.1) 100%),
    linear-gradient(0deg, rgba(9, 27, 31, 0.22), rgba(9, 27, 31, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow,
.section-label,
.role-type {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(232, 111, 81, 0.32);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button.secondary.dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  width: min(520px, calc(100% - 36px));
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel dd {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.intro-strip {
  background: #3b2a22;
  color: var(--white);
  padding: 26px clamp(20px, 5vw, 72px);
}

.intro-strip p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.55;
}

.section {
  padding: clamp(96px, 12vw, 156px) clamp(20px, 5vw, 72px);
}

.split,
.section-heading,
.culture {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.section-copy p,
.section-heading p,
.culture-copy p,
.entry p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-copy p + p {
  margin-top: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  max-width: 1180px;
  margin: clamp(56px, 7vw, 84px) auto 0;
}

.metrics article,
.value-grid article,
.culture-grid article,
.role-card,
.employment-card,
.job-grid article,
.voice-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 34, 38, 0.05);
}

.metrics article {
  padding: clamp(22px, 4vw, 34px);
}

.metrics strong {
  display: block;
  color: var(--teal);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.metrics span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.values {
  background: #f2e2cf;
}

.values > .section-label,
.values > h2,
.employment > .section-heading,
.job-detail > .section-label,
.job-detail > h2,
.voices > .section-heading,
.shop-info > .section-heading,
.gallery > .section-heading,
.faq > .section-heading,
.requirements > .section-heading,
.roles > .section-heading,
.blog-preview > .section-heading,
.blog-index > .section-heading,
.process > .section-label,
.process > h2 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  max-width: 1180px;
  margin: clamp(48px, 6vw, 76px) auto 0;
}

.value-grid article,
.culture-grid article {
  padding: 28px;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.value-grid p,
.culture-grid p,
.role-card p,
.employment-card p,
.job-grid p,
.voice-grid span,
.shop-info-card dd,
.faq p,
.gallery figcaption,
.requirements-row div,
.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.work-concept {
  background: #fffaf2;
}

.employment {
  background: #fffaf2;
}

.employment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 36px);
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
}

.employment-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: clamp(28px, 4vw, 40px);
}

.employment-card.featured {
  background: #2d3f2b;
  color: var(--white);
}

.employment-card.featured p,
.employment-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.employment-card h3 {
  font-size: clamp(28px, 4vw, 44px);
}

.employment-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-weight: 750;
}

.employment-card .button {
  width: fit-content;
  align-self: end;
  margin-top: 4px;
}

.roles {
  background: var(--paper);
}

.section-heading {
  align-items: end;
}

.role-list {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
}

.role-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.role-card a {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.requirements {
  background: #f2e2cf;
}

.requirements-table {
  display: grid;
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 34, 38, 0.05);
}

.requirements-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  max-width: 1180px;
  margin: clamp(42px, 6vw, 64px) auto 0;
}

.requirements-highlight article {
  min-height: 160px;
  padding: clamp(22px, 3vw, 30px);
  background: #2d3f2b;
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 34, 38, 0.12);
}

.requirements-highlight span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.requirements-highlight strong {
  display: block;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25;
}

.requirements-highlight p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.requirements-row {
  display: grid;
  grid-template-columns: 0.62fr 1fr 1fr;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.requirements-table.single .requirements-row {
  grid-template-columns: 0.42fr 1fr;
}

.requirements-row:last-child {
  border-bottom: 0;
}

.requirements-row div {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  font-weight: 750;
  line-height: 1.6;
}

.requirements-row div:nth-child(n + 2) {
  align-items: flex-start;
}

.requirements-head div:nth-child(n + 2) {
  align-items: center;
}

.requirements-row div:last-child {
  border-right: 0;
}

.requirements-row div:first-child {
  color: var(--ink);
  font-weight: 900;
}

.requirements-head {
  min-height: 58px;
  background: #3b2a22;
}

.requirements-head div,
.requirements-head div:first-child {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  background: #fff7ed;
  border: 1px solid rgba(184, 64, 45, 0.16);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.culture {
  max-width: 1180px;
}

.job-detail {
  background: #0f352c;
  color: var(--white);
}

.job-detail > h2 {
  margin-bottom: clamp(52px, 7vw, 84px);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.job-grid article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(2, 18, 16, 0.28);
}

.job-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 23, 21, 0.78) 0%, rgba(7, 23, 21, 0.42) 48%, rgba(7, 23, 21, 0.14) 100%),
    linear-gradient(90deg, rgba(7, 23, 21, 0.25), rgba(7, 23, 21, 0));
}

.job-grid article > * {
  position: relative;
  z-index: 1;
}

.job-grid article:nth-child(1) {
  background-image: url("assets/ramo-work-open.jpg");
}

.job-grid article:nth-child(2) {
  background-image: url("assets/ramo-work-welcome.jpg");
}

.job-grid article:nth-child(3) {
  background-image: url("assets/ramo-work-peak.jpg");
}

.job-grid article:nth-child(4) {
  background-image: url("assets/ramo-work-close.jpg");
}

.job-grid span {
  display: inline-flex;
  min-width: 88px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(160px, 22vw, 230px);
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 15px;
  font-weight: 800;
}

.job-grid h3 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.job-grid p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 22px);
}

.voices {
  background: #fffaf2;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 36px);
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
}

.voice-grid article {
  min-height: 260px;
  padding: clamp(26px, 4vw, 38px);
}

.voice-grid article > p {
  margin: 0 0 36px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.voice-grid h3 {
  max-width: 520px;
  font-size: clamp(24px, 3vw, 34px);
}

.voice-grid span {
  display: block;
}

.gallery {
  background: #3b2a22;
  color: var(--white);
}

.gallery .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
}

.gallery-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-grid figure::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 23, 21, 0.62), rgba(7, 23, 21, 0.12)),
    linear-gradient(90deg, rgba(7, 23, 21, 0.22), rgba(7, 23, 21, 0));
  pointer-events: none;
}

.gallery-grid .gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  margin: 0;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 15px;
  font-weight: 900;
}

.shop-info {
  background: #fffaf2;
}

.shop-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
}

.shop-info-layout img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shop-info-card {
  display: grid;
  align-content: space-between;
  gap: 32px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 34, 38, 0.05);
}

.shop-info-card dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.shop-info-card dl > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.shop-info-card dl > div:last-child {
  border-bottom: 0;
}

.shop-info-card dt {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.shop-info-card dd {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 850;
}

.shop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq {
  background: #f2e2cf;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 34, 38, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.start-guide {
  background: #fffaf2;
}

.rank-system,
.guide-grid {
  display: grid;
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
}

.rank-system {
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(28px, 4vw, 44px);
  background: #2d3f2b;
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 34, 38, 0.12);
}

.rank-system-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) 1fr;
  gap: clamp(20px, 4vw, 46px);
  align-items: end;
}

.rank-system h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.35;
}

.rank-system-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.rank-grid article {
  display: grid;
  grid-template-rows: 44px 1fr 42px;
  min-height: 184px;
  overflow: hidden;
  padding: 22px 20px;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.rank-grid span {
  display: inline-flex;
  width: fit-content;
  min-width: 52px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 5px 12px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(214, 154, 45, 0.65);
  border-radius: 999px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.rank-grid h4 {
  margin: 0;
  color: var(--white);
  font-size: clamp(25px, 2.8vw, 32px);
  line-height: 1.35;
}

.rank-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.rank-pay {
  display: flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 7px 14px;
  background: rgba(214, 154, 45, 0.14);
  color: #fff6df;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.guide-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(22px, 3vw, 34px);
}

.guide-grid article,
.training-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 34, 38, 0.05);
}

.guide-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
}

.guide-grid span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.guide-grid h3,
.training-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
}

.training-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) 1fr;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  max-width: 1180px;
  margin: clamp(22px, 3vw, 34px) auto 0;
  padding: clamp(24px, 4vw, 38px);
}

.training-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.training-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.training-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  background: #f7ead4;
  border: 1px solid rgba(49, 95, 67, 0.16);
  border-radius: 999px;
  font-weight: 850;
}

.process {
  background: #f7ead4;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  max-width: 1180px;
  margin: clamp(52px, 7vw, 84px) auto 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: block;
  margin-bottom: 48px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.blog-preview,
.blog-detail-section {
  background: #fffaf2;
}

.blog-hero {
  min-height: 56vh;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
  background: #2d3f2b;
  color: var(--white);
}

.blog-hero > * {
  max-width: 980px;
}

.blog-hero h1 {
  margin: 16px 0 22px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.08;
}

.blog-hero p:last-child {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 750;
}

.blog-list {
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin: clamp(42px, 6vw, 64px) auto 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-card {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.blog-card:first-child {
  border-top: 0;
}

.blog-card a {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  min-height: 150px;
  padding: clamp(22px, 3.5vw, 38px) clamp(18px, 3.5vw, 38px);
}

.blog-card a:hover {
  background: #fff4e0;
}

.blog-card .blog-meta span,
.blog-article-body span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
}

.blog-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.blog-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.blog-more {
  max-width: 1180px;
  margin: 34px auto 0;
}

.blog-index {
  background: var(--paper);
}

.blog-article {
  max-width: 860px;
  margin: 0 auto;
}

.blog-article-body {
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 34, 38, 0.05);
}

.blog-article-body h2 {
  margin: 14px 0 24px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
}

.blog-article-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.blog-article-body p + p {
  margin-top: 18px;
}

.blog-entry {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.blog-entry > div {
  justify-self: start;
}

.blog-entry-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.entry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
  background: #2d3f2b;
  color: var(--white);
}

.entry > div {
  max-width: 620px;
  justify-self: end;
}

.entry h2 {
  margin-bottom: 18px;
}

.entry p {
  color: rgba(255, 255, 255, 0.78);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 26px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 900;
}

.instagram-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.entry-form {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  padding: 26px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.22);
  border-color: var(--teal);
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 18px;
  }

  .desktop-nav {
    display: none;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero {
    min-height: 88vh;
    align-items: end;
    padding: 104px 20px 210px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 27, 31, 0.92) 0%, rgba(9, 27, 31, 0.58) 62%, rgba(9, 27, 31, 0.16) 100%),
      linear-gradient(90deg, rgba(9, 27, 31, 0.64), rgba(9, 27, 31, 0.18));
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .hero-panel {
    right: 18px;
    bottom: 22px;
  }

  .hero-panel dl,
  .metrics,
  .value-grid,
  .employment-grid,
  .requirements-highlight,
  .job-grid,
  .voice-grid,
  .rank-system,
  .rank-system-head,
  .guide-grid,
  .training-panel,
  .gallery-grid,
  .blog-list,
  .blog-article,
  .shop-info-layout,
  .timeline,
  .split,
  .section-heading,
  .culture,
  .entry {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

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

  .guide-grid article {
    min-height: auto;
  }

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

  .rank-system {
    padding: 30px 22px;
  }

  .rank-system h3 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .rank-system-head p {
    max-width: 620px;
  }

  .rank-grid article {
    min-height: 170px;
    padding: 20px 16px;
  }

  .rank-grid h4 {
    font-size: clamp(24px, 6.4vw, 32px);
  }

  .guide-grid span {
    margin-bottom: 22px;
  }

  .employment-card {
    min-height: auto;
  }

  .employment-card .button {
    width: 100%;
  }

  .job-grid article,
  .voice-grid article,
  .shop-info-layout img {
    min-height: auto;
  }

  .job-grid article {
    min-height: 390px;
    border-radius: 18px;
  }

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

  .gallery-grid .gallery-main {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid figure {
    min-height: 230px;
  }

  .shop-info-layout {
    grid-template-columns: 1fr;
  }

  .shop-links .button {
    width: 100%;
  }

  .job-grid span,
  .voice-grid article > p {
    margin-bottom: 22px;
  }

  .job-grid span {
    margin-bottom: 150px;
  }

  .requirements-table {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .requirements-head {
    display: none;
  }

  .requirements-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(17, 34, 38, 0.05);
  }

  .requirements-row div {
    align-items: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
  }

  .requirements-row div:nth-child(2)::before,
  .requirements-row div:nth-child(3)::before {
    display: inline-block;
    flex: 0 0 auto;
    min-width: 86px;
    margin-right: 12px;
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
  }

  .requirements-row div:nth-child(2)::before {
    content: "アルバイト";
  }

  .requirements-row div:nth-child(3)::before {
    content: "正社員";
  }

  .requirements-table.single .requirements-row div:nth-child(2)::before {
    content: "";
    display: none;
  }

  .requirements-row div:last-child {
    border-bottom: 0;
  }

  .role-card {
    grid-template-columns: 1fr;
  }

  .role-card a {
    width: 100%;
    height: 48px;
    border-radius: 999px;
  }

  .timeline li {
    min-height: auto;
  }

  .timeline span {
    margin-bottom: 22px;
  }

  .entry > div {
    justify-self: start;
  }

  .blog-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .blog-entry {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-cta {
    padding: 9px 13px;
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .hero-actions .button,
  .entry-form .button {
    width: 100%;
  }

  .hero {
    padding-bottom: 245px;
  }

  .hero-panel dd {
    font-size: 13px;
  }

  .requirements-highlight article {
    min-height: auto;
    padding: 20px;
  }

  .requirements-highlight span {
    margin-bottom: 10px;
  }

  .requirements-highlight strong {
    font-size: 28px;
  }

  .job-grid article {
    min-height: 340px;
    padding: 22px;
  }

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

  .rank-system {
    margin-top: 36px;
    padding: 24px 12px;
  }

  .rank-system-head {
    gap: 16px;
  }

  .rank-system h3 {
    font-size: 30px;
  }

  .rank-system-head p {
    font-size: 14px;
    line-height: 1.75;
  }

  .rank-grid article {
    grid-template-rows: 32px 1fr 34px;
    min-height: 144px;
    padding: 14px 10px;
  }

  .rank-grid span {
    min-width: 44px;
    min-height: 28px;
    padding: 4px 10px;
    font-size: 13px;
  }

  .rank-grid h4 {
    font-size: 20px;
    line-height: 1.3;
  }

  .rank-pay {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 12px;
  }

  .job-grid span {
    min-height: 38px;
    margin-bottom: 120px;
    font-size: 14px;
  }

  .job-grid h3 {
    font-size: 32px;
  }

  .job-grid p {
    font-size: 15px;
  }

  .requirements-row div {
    display: block;
  }

  .requirements-row div:nth-child(2)::before,
  .requirements-row div:nth-child(3)::before {
    display: block;
    margin: 0 0 6px;
  }

  .faq-list summary {
    padding: 18px 18px;
    font-size: 16px;
  }

  .faq-list p {
    padding: 0 18px 20px;
  }

  .section,
  .entry {
    padding-left: 18px;
    padding-right: 18px;
  }

  .entry-form {
    padding: 20px;
  }

  .instagram-link {
    width: 100%;
    justify-content: center;
  }

  .blog-hero h1 {
    font-size: 42px;
  }

  .blog-card a {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 22px 0;
  }

  .blog-list {
    background: transparent;
  }

  .blog-card {
    background: transparent;
  }

  .blog-arrow {
    width: fit-content;
  }

  .blog-article-body {
    padding: 22px;
  }

  .blog-entry-action,
  .blog-entry-action .button {
    width: 100%;
  }
}
