:root {
  --ink: rgba(0, 0, 0, 0.8);
  --text: rgba(0, 0, 0, 0.8);
  --muted: rgba(0, 0, 0, 0.56);
  --paper: #fffdf9;
  --cream: #f7efe7;
  --cream-deep: #ead9c9;
  --rose: #5bb9c8;
  --rose-soft: #e0f5f7;
  --green: #64bfa4;
  --line: rgba(99, 80, 66, 0.16);
  --white: #fff;
  --shadow: 0 22px 60px rgba(74, 54, 44, 0.13);
  --leading-body: 1.5;
  --leading-heading: 1.55;
  --section-gap: clamp(34px, 5vw, 58px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "IBM Plex Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: var(--leading-body);
  letter-spacing: 0;
}

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

p,
h1,
h2,
h3,
li,
summary,
dd,
dt {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  /* カスタムスクロールインジケーターの基準 */
  isolation: isolate;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 36px);
  width: 100%;
  margin: 0;
  min-height: 92px;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(248, 247, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  line-height: 1;
}

.logo img {
  display: block;
  width: clamp(230px, 25vw, 340px);
  height: auto;
}

.logo-subtitle {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.header-menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 34px);
  min-width: 0;
}

.global-nav,
.utility-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.global-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 58px);
  min-width: 0;
}

.utility-nav {
  flex: 0 0 auto;
  gap: 16px;
  font-size: 13px;
  min-width: 0;
}

.global-nav a,
.utility-nav a {
  position: relative;
  padding: 4px 0;
}

.global-nav a:hover,
.utility-nav a:hover {
  color: var(--rose);
}

.global-nav a::after,
.utility-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.global-nav a:hover::after,
.utility-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(470px, 62vw, 700px);
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  content: "SANDIAS RECRUIT";
  position: absolute;
  right: -4vw;
  bottom: -8px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, serif;
  font-size: clamp(70px, 13vw, 200px);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(30, 44, 28, 0.58), rgba(30, 44, 28, 0.24) 58%, rgba(255, 255, 255, 0.05)),
    linear-gradient(0deg, rgba(30, 44, 28, 0.2), rgba(255, 255, 255, 0.06)),
    url("top-pic.jpeg") center/cover;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0 52px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: var(--leading-heading);
}

h1 {
  max-width: 720px;
  color: inherit;
  font-family: "IBM Plex Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 18px rgba(24, 25, 18, 0.52), 0 1px 3px rgba(24, 25, 18, 0.38);
}

.people-page h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: none;
}

.staff-interview h1,
.faq h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.25;
  text-shadow: none;
}

.staff-hero {
  max-width: 900px;
}

.staff-subtitle {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.45;
}

.staff-hero p:last-child {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.interview-list {
  display: grid;
  gap: 0;
  max-width: 1040px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.interview-list a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 900;
  line-height: 1.5;
}

.interview-thumb {
  width: 120px;
  height: 72px;
  background-size: cover;
  background-position: center;
  background-color: var(--line);
  border-radius: 4px;
  flex-shrink: 0;
}

.interview-title {
  display: block;
}

.interview-list a::after {
  content: ">";
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.interview-list a:hover {
  color: var(--rose);
}

.skill-hero h1 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: none;
}

h2 {
  font-size: clamp(28px, 3.7vw, 48px);
  font-weight: 800;
}

h3 {
  font-size: clamp(19px, 2vw, 25px);
}

.section-heading p,
.text-columns p,
.position-copy,
.faq p {
  color: var(--text);
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.5;
  text-shadow: 0 3px 14px rgba(24, 25, 18, 0.5), 0 1px 2px rgba(24, 25, 18, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  color: var(--ink);
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(221, 255, 250, 0.98), rgba(146, 218, 219, 0.96) 54%, rgba(205, 251, 236, 0.98)),
    #bcebe4;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 14px 30px rgba(26, 91, 91, 0.22);
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-link {
  color: var(--ink);
}

.secondary-link {
  color: var(--ink);
}

.primary-link:hover,
.secondary-link:hover {
  background:
    linear-gradient(135deg, rgba(237, 255, 252, 1), rgba(122, 207, 213, 0.98) 56%, rgba(222, 255, 243, 1)),
    #bcebe4;
  transform: translateY(-1px);
}

.primary-link::after,
.secondary-link::after,
.lime-apply-link::after,
.story-list a::after {
  content: ">";
  margin-left: 10px;
  font-weight: 900;
}

.apply-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 38px;
}

.lime-apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  color: #183018;
  background:
    linear-gradient(135deg, #eaff6f 0%, #b9f75f 42%, #62e8b8 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 34px rgba(89, 190, 83, 0.25),
    0 3px 10px rgba(19, 60, 31, 0.12);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lime-apply-link:hover {
  filter: brightness(1.04) saturate(1.06);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 40px rgba(89, 190, 83, 0.3),
    0 5px 14px rgba(19, 60, 31, 0.14);
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) 1fr;
  gap: clamp(52px, 9vw, 140px);
  align-items: start;
  background: #fff;
}

.section-photo {
  position: sticky;
  top: 128px;
  margin: 0;
}

.section-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  border-radius: 7px;
}

.section-body {
  padding-top: clamp(4px, 1vw, 16px);
}

.dot-label {
  position: relative;
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.dot-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
}

.display-title {
  margin: 0;
  color: rgba(54, 62, 66, 0.28);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(68px, 8.1vw, 114px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: clamp(24px, 3.4vw, 36px) 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.notice-text {
  display: inline-block;
  margin: 18px 0 0;
  padding: 8px 16px;
  color: var(--ink);
  background: #fff3f5;
  border-left: 3px solid var(--rose);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 52px);
  margin-top: var(--section-gap);
  border-top: 1px solid var(--line);
}

.text-columns.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-columns article {
  padding-top: 24px;
}

.text-columns span {
  display: block;
  margin-bottom: 14px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.text-columns p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.intern-copy {
  max-width: 860px;
  margin-top: 28px;
}

.intern-copy p,
.intern-info p,
.intern-info li,
.intern-conditions dd {
  color: var(--text);
  font-size: 16px;
  line-height: 2;
}

.intern-copy p {
  margin: 0;
  line-height: 1.5;
}

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

.intern-info {
  margin-top: 44px;
}

.intern-info section {
  padding: 30px 0 36px;
  border-top: 1px solid rgba(91, 185, 200, 0.28);
}

.intern-info section:last-of-type {
  border-bottom: 1px solid rgba(91, 185, 200, 0.28);
}

.intern-info h3 {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 18px;
  color: var(--ink);
  background: #c9f7f1;
  border: 1px solid rgba(91, 185, 200, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.intern-info ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intern-info li {
  padding-left: 0;
}

.intern-conditions {
  margin: 0;
}

.intern-conditions div {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) 1fr;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(91, 185, 200, 0.2);
}

.intern-conditions div:first-child {
  border-top: 0;
  padding-top: 0;
}

.intern-conditions dt {
  justify-self: start;
  align-self: start;
  padding: 8px 18px;
  color: var(--ink);
  background: #c9f7f1;
  border: 1px solid rgba(91, 185, 200, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.intern-conditions dd {
  margin: 0;
}

.intern-flow-head {
  max-width: 760px;
  margin: 0 0 36px;
}

.intern-flow-head .eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.intern-flow-head h3 {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25;
}

.intern-flow-head p:last-child {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.intern-flow {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.intern-flow li {
  padding: 24px 0 26px;
  border-top: 1px solid rgba(91, 185, 200, 0.22);
}

.intern-flow li:first-child {
  border-top: 0;
  padding-top: 10px;
}

.intern-flow span {
  display: block;
  margin-bottom: 16px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.intern-flow strong {
  display: block;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.intern-flow p {
  margin: 10px 0 0;
}

.intern-closing {
  max-width: 860px;
  margin: 28px 0 0;
  font-weight: 700;
}

.section {
  padding: clamp(82px, 10vw, 136px) clamp(20px, 6vw, 84px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading p:last-child {
  margin: 0;
  max-width: 680px;
}

.position-list {
  display: grid;
  gap: 0;
  margin-top: var(--section-gap);
  border-top: 1px solid rgba(91, 185, 200, 0.28);
}

.position-item {
  padding: clamp(34px, 4.7vw, 52px) 0;
  border-bottom: 1px solid rgba(91, 185, 200, 0.2);
}

.position-label {
  position: relative;
  margin: 0 0 22px;
  padding: 10px 18px 10px 28px;
  color: var(--ink);
  background: #f3f1f1;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.position-label::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 2px;
  height: 22px;
  background: var(--rose);
  transform: translateY(-50%);
}

.position-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.55;
}

.position-copy {
  margin: 14px 0 34px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.position-data {
  display: grid;
  margin: 0 0 8px;
  overflow: hidden;
  background: transparent;
  border-top: 1px solid rgba(91, 185, 200, 0.22);
  border-bottom: 1px solid rgba(91, 185, 200, 0.22);
}

.position-data div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 28px;
  align-items: baseline;
  min-height: 76px;
  padding: 24px 32px 24px 28px;
  border-bottom: 1px solid rgba(91, 185, 200, 0.16);
}

.position-data div:last-child {
  border-bottom: 0;
}

.position-data dt {
  position: relative;
  justify-self: start;
  padding: 5px 14px 6px;
  color: var(--ink);
  background: rgba(188, 235, 228, 0.92);
  border: 1px solid rgba(91, 185, 200, 0.42);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.position-data dt::before {
  content: none;
}

.position-data dd {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
}

.intern-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

.detail-section,
.flow-section,
.culture-section {
  background: #fff;
}

.detail-list {
  max-width: 980px;
  border-top: 1px solid rgba(91, 185, 200, 0.22);
}

.detail-list dl {
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(18px, 4vw, 48px);
  padding: 24px 0;
  border-bottom: 1px solid rgba(91, 185, 200, 0.18);
}

.detail-list dt {
  justify-self: start;
  align-self: start;
  padding: 8px 18px;
  color: var(--ink);
  background: #c9f7f1;
  border: 1px solid rgba(91, 185, 200, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.detail-list dd {
  margin: 0;
  color: var(--text);
  line-height: 2;
}

.skill-hero,
.skill-section {
  background: #fff;
}

.skill-lead {
  max-width: 840px;
}

.skill-lead h2 {
  margin-top: 26px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.45;
}

.skill-lead p:not(.position-label) {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.skill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(36px, 6vw, 82px);
  margin-top: 42px;
  border-top: 1px solid rgba(91, 185, 200, 0.28);
}

.skill-list article {
  padding: 30px 0 34px;
  border-bottom: 1px solid rgba(91, 185, 200, 0.2);
}

.skill-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
}

.skill-list h3 {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
}

.skill-list p {
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.5;
}

.skill-data {
  max-width: 980px;
  margin: 44px 0 0;
  border-top: 1px solid rgba(91, 185, 200, 0.22);
}

.skill-data div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(18px, 4vw, 48px);
  padding: 24px 0;
  border-bottom: 1px solid rgba(91, 185, 200, 0.18);
}

.skill-data dt {
  justify-self: start;
  align-self: start;
  padding: 8px 18px;
  color: var(--ink);
  background: #c9f7f1;
  border: 1px solid rgba(91, 185, 200, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.skill-data dd {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin: var(--section-gap) 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(91, 185, 200, 0.22);
  list-style: none;
}

.flow-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.flow-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
}

.flow-list p,
.culture-text p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.culture-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
  max-width: 1080px;
  padding-top: 28px;
  border-top: 1px solid rgba(91, 185, 200, 0.22);
}

.people-section {
  background: var(--paper);
}

.story-list {
  display: grid;
  gap: 0;
  max-width: 960px;
  border-top: 1px solid var(--line);
}

.story-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.story-list a:hover {
  color: var(--rose);
  transform: translateY(-1px);
}

.faq {
  background: #fbf6f0;
  border-top: 1px solid var(--line);
}

.faq details {
  max-width: 940px;
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
}

.faq p {
  margin: 0;
  padding: 0 0 22px;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(20px, 6vw, 84px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--rose);
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 14px;
  min-width: min(280px, 100%);
}

.footer-links a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--rose);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    min-height: 0;
    flex-wrap: wrap;
  }

  .header-menu {
    width: 100%;
    flex-basis: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }

  .global-nav,
  .utility-nav {
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 3px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .global-nav::-webkit-scrollbar,
  .utility-nav::-webkit-scrollbar {
    display: none;
  }

  /* カスタムスクロールインジケーター */
  .nav-scroll-track {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0,0,0,0.08);
    pointer-events: none;
  }

  .nav-scroll-thumb {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,0.28);
    border-radius: 2px;
    transition: left 0.08s linear;
  }

  .hero,
  .visual-section,
  .section-heading,
  .position-data div,
  .detail-list div,
  .skill-data div,
  .flow-list,
  .culture-text,
  .text-columns {
    display: block;
  }

  .hero {
    min-height: 0;
    min-height: 520px;
  }

  .hero-media {
    min-height: 100%;
  }

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

  .section-photo {
    position: static;
    max-width: 420px;
    margin-bottom: 34px;
  }

  .section-photo img {
    aspect-ratio: 1.1;
  }

  .flow-list li,
  .culture-text p {
    margin-top: 22px;
  }

  .display-title {
    font-size: clamp(48px, 12vw, 82px);
  }

  .text-columns article {
    margin-top: 24px;
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    padding: 12px 14px;
  }

  .logo {
    align-items: flex-start;
  }

  .logo img {
    width: 230px;
  }

  .logo-subtitle {
    font-size: 11px;
  }

  .header-menu {
    display: block;
  }

  .global-nav {
    gap: 18px;
    font-size: 13px;
  }

  .utility-nav {
    gap: 16px;
    margin-top: 8px;
    font-size: 12px;
  }

  .global-nav a,
  .utility-nav a {
    padding: 5px 8px;
  }

  .section,
  .visual-section {
    width: auto;
    padding-inline: 18px;
  }

  .interview-list a {
    grid-template-columns: 90px 1fr auto;
    gap: 12px;
  }

  .interview-thumb {
    width: 90px;
    height: 56px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-actions,
  .footer {
    display: block;
  }

  .primary-link,
  .secondary-link,
  .lime-apply-link {
    width: 100%;
    margin-top: 10px;
    margin-right: 0;
  }

  .apply-cta {
    margin-top: 30px;
  }

  .position-data div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 20px;
  }

  .intern-info {
    margin-top: 34px;
  }

  .intern-conditions div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .skill-data div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer a {
    display: inline-block;
    margin-top: 12px;
  }
}
