@charset "UTF-8";
/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", serif;
  color: #2E2E2B;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.grecaptcha-badge {
  display: none;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .header {
    padding: 0 16px 0 14px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  width: auto;
  height: 16px;
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 14px;
  color: #312B2A;
  letter-spacing: 0.04em;
}
.header__nav a:hover {
  opacity: 0.6;
}
.header__nav-cta {
  background: #E94F1F !important;
  color: #fff !important;
  padding: 9px 15px;
  border-radius: 20px;
  width: 190px;
  text-align: center;
  font-size: 13px !important;
  font-family: "Hiragino Mincho ProN", serif !important;
  letter-spacing: 0.04em;
  transition: opacity 0.2s !important;
}
.header__nav-cta:hover {
  opacity: 0.85 !important;
}
.header {
  /* hamburger (mobile) */
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #312B2A;
  transition: 0.3s;
}
.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  background: #312B2A;
  z-index: 99;
  padding: 8px 0 16px;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  /* 1920×1080（16:9）の縦横比 */
  height: 42.8571428571vw;
  overflow: hidden;
  background: #312B2A;
  margin-top: 52px;
}
@media (max-width: 768px) {
  .hero {
    height: 56vw;
    min-height: 280px;
  }
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.hero {
  /* 下部グラデーション（薄め） */
}
.hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(49, 43, 42, 0.35) 100%);
}
.hero__catch {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
  .hero__catch {
    font-size: clamp(24px, 6vw, 40px);
    right: 16px;
    bottom: 20px;
  }
}
@media (max-width: 480px) {
  .hero__catch {
    font-size: 7vw;
  }
}

/* ===== INTRO ===== */
.intro {
  background: #EAEBEF;
  padding: 72px 0 80px;
}
@media (max-width: 768px) {
  .intro {
    padding: 48px 0 56px;
  }
}
.intro__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 24px;
    align-items: start;
  }
}
.intro__heading {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #2E2E2B;
}
.intro__right {
  padding-top: 4px;
}
@media (max-width: 768px) {
  .intro__right {
    padding-top: 0;
  }
}
.intro__para {
  font-size: 16px;
  line-height: 2.1;
  color: #2E2E2B;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.intro__para:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .intro__para {
    font-size: 14px;
    line-height: 2.2;
    margin-bottom: 18px;
  }
}

@keyframes chevron-flow {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}
/* ===== ARROW DIVIDER ===== */
.arrow-divider {
  background: #EAEBEF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 80px 0 0;
}
.arrow-divider__chevron {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #E94F1F;
  opacity: 0;
  animation: chevron-flow 3.2s ease-in-out infinite;
}
.arrow-divider__chevron:nth-child(1) {
  animation-delay: 0s;
}
.arrow-divider__chevron:nth-child(2) {
  animation-delay: 0.45s;
}
.arrow-divider__chevron:nth-child(3) {
  animation-delay: 0.9s;
}
.arrow-divider__chevron:nth-child(4) {
  animation-delay: 1.35s;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: #EAEBEF;
  padding: 20px 0 80px;
}
.video-section__label {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 25px;
  font-weight: 400;
  color: #2E2E2B;
  text-align: center;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .video-section__label {
    font-size: 16px;
  }
}
.video-section__wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .video-section__wrap {
    padding: 0 24px;
  }
}
.video-section__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.video-section__player:hover .video-section__thumb {
  opacity: 0.7;
}
.video-section__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.video-section {
  /* "Drive her." テキスト */
}
.video-section__tagline {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Palatino Linotype", Palatino, serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.video-section {
  /* 再生ボタン */
}
.video-section__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.video-section__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.video-section__play-btn svg {
  margin-left: 4px; /* 三角形を視覚的にセンタリング */
}

/* ===== ABOUT ===== */
.about {
  background: #312B2A;
  padding: 72px 0 80px;
}
.about__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
}
.about {
  /* --- 左カラム --- */
}
.about__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #E94F1F;
  margin-bottom: 16px;
}
.about__label {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  line-height: 1.4;
}
.about__heading {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  line-height: 1.4;
}
.about__catch {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 3px solid #E94F1F;
}
.about__text {
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.about__text--closing {
  margin-top: 24px;
}
.about {
  /* 全幅：育成方針 + 人物像 */
}
.about__mission {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 40px;
  max-width: 760px;
}
@media (max-width: 768px) {
  .about__mission {
    padding-top: 28px;
  }
}
.about__who-title {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 28px 0 16px;
}
.about__who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__who-list li {
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.about__who-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E94F1F;
}
.about__links {
  grid-column: 1/-1;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 768px) {
  .about__links {
    flex-direction: column;
    gap: 8px;
  }
}
.about__link {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 calc(50% - 5px);
  background: #4a4542;
  overflow: visible;
  transition: background 0.25s;
  cursor: pointer;
  text-decoration: none;
  padding: 15px;
  height: 115px;
  min-width: 0;
}
@media (max-width: 768px) {
  .about__link {
    flex: none;
    width: 100%;
  }
}
.about__link:hover {
  background: #57504c;
}
.about__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background: #E94F1F;
  clip-path: path("M 0 0 L 25 0 L 25 25 Q 18 5 0 0 Z");
}
.about__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background: #E94F1F;
  clip-path: path("M 0 0 L 0 25 L 25 25 Q 7 20 0 0 Z");
}
.about__link-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 0;
}
.about__link-text {
  flex: 1;
  padding-left: 30px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
}
.about__link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
}
.about__link-arrow svg {
  display: block;
}
.about {
  /* --- 右カラム：ロールスライダー --- */
}
.about__right {
  position: relative;
  overflow: hidden;
  height: 560px;
}
.about__right::before, .about__right::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 1;
}
.about__right::before {
  top: 0;
  background: linear-gradient(to bottom, #312B2A 0%, transparent 100%);
}
.about__right::after {
  bottom: 0;
  background: linear-gradient(to top, #312B2A 0%, transparent 100%);
}
@media (max-width: 768px) {
  .about__right {
    height: auto;
    overflow: hidden;
  }
  .about__right::before, .about__right::after {
    display: none;
  }
}
.about__photo-reel {
  display: flex;
  flex-direction: column;
  animation: aboutPhotoRoll 32s linear infinite;
}
@media (max-width: 768px) {
  .about__photo-reel {
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
    animation: aboutPhotoRollSpH 26s linear infinite;
  }
}
.about__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .about__photo {
    width: 72vw;
    height: auto;
  }
}
.about {
  /* --- インタビューカード全体 --- */
}
.about__voices {
  grid-column: 1/-1;
  margin-bottom: 8px;
}
.about__voices-title {
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.about {
  /* --- フィルターボタン --- */
}
.about__voice-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.about__filter-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.about__filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.about__filter-btn--active {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.about__filter-btn--challenge.about__filter-btn--active {
  background: rgba(80, 160, 220, 0.25);
  border-color: #7ec8f0;
  color: #7ec8f0;
}
.about__filter-btn--win.about__filter-btn--active {
  background: rgba(233, 79, 31, 0.25);
  border-color: #f08060;
  color: #f08060;
}
.about__filter-btn--life.about__filter-btn--active {
  background: rgba(90, 185, 120, 0.25);
  border-color: #7ed6a0;
  color: #7ed6a0;
}
.about__voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 960px) {
  .about__voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .about__voices-grid {
    grid-template-columns: 1fr;
  }
}
.about {
  /* --- 1枚のカード --- */
}
.about__voice {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.about__voice:hover {
  background: rgba(255, 255, 255, 0.1);
}
.about__voice-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.about__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 20px;
}
.about__tag--challenge {
  background: rgba(80, 160, 220, 0.2);
  color: #7ec8f0;
  border: 1px solid rgba(80, 160, 220, 0.35);
}
.about__tag--win {
  background: rgba(233, 79, 31, 0.2);
  color: #f08060;
  border: 1px solid rgba(233, 79, 31, 0.35);
}
.about__tag--life {
  background: rgba(90, 185, 120, 0.2);
  color: #7ed6a0;
  border: 1px solid rgba(90, 185, 120, 0.35);
}
.about__voice-headline {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex: 1;
}
.about__voice-role {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 10px;
}
.about__voice--hidden {
  display: none;
}

/* ===== SECTION HEADER ===== */
/* セクションヘッダー：オレンジ丸 → 英語大見出し → 日本語小見出し */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E94F1F;
  margin: 0 auto 14px;
}
.section-header__en {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 44px;
  font-weight: 400;
  color: #2E2E2B;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .section-header__en {
    font-size: 28px;
  }
}
.section-header__ja {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 20px;
  color: #5D5D59;
  letter-spacing: 0.14em;
}

/* ===== JOBS ===== */
.jobs {
  background: #EAEBEF;
  padding: 140px 0 80px;
}
.jobs__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .jobs__inner {
    padding: 0 16px;
  }
}
.jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .jobs__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.jobs {
  /* カード全体：白背景ボーダー枠 */
}
.jobs__item {
  background: #3B3B35;
  border: 1px solid #d8d8d8;
  cursor: pointer;
  overflow: hidden;
}
.jobs__item:hover .jobs__item-img {
  transform: scale(1.04);
}
.jobs__item {
  /* 写真エリア（カードの上部・ボーダーなし） */
}
.jobs__item-img-wrap {
  overflow: hidden;
}
.jobs__item-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.jobs__item {
  /* 下部白帯：職種名 ──●── View More */
}
.jobs__item-bar {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 14px;
  color: #fff;
}
.jobs__item-name {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  white-space: nowrap;
}
.jobs__item {
  /* 実線 ── */
}
.jobs__item-line {
  flex: 1;
  height: 1px;
  background: #fff;
  margin: 0 8px 0 57px;
  position: relative;
  /* 実線末端の丸ドット ● */
}
.jobs__item-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}
.jobs__item-more {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 6px;
}

/* ===== MESSAGE BOX ===== */
.message {
  background: #EAEBEF;
  padding: 48px 40px 100px;
}
@media (max-width: 768px) {
  .message {
    padding: 32px 16px 56px;
  }
}
.message {
  /* 外枠ボックス：ボーダーなし・左上と右下にオレンジL字アクセントのみ */
}
.message__box {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 72px 64px;
  background: #EAEBEF;
}
@media (max-width: 768px) {
  .message__box {
    padding: 40px 24px 44px;
  }
}
.message__box {
  /* 上辺いっぱいの横線 */
}
.message__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E94F1F;
}
@media (max-width: 768px) {
  .message__box::before {
    height: 2px;
  }
}
.message__box {
  /* 下辺いっぱいの横線 */
}
.message__box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E94F1F;
}
@media (max-width: 768px) {
  .message__box::after {
    height: 2px;
  }
}
.message {
  /* 上辺コーナー三角 ― 18×18px */
}
.message__box-corner-tl { /* 左上：top-right の左右反転 */
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #E94F1F;
  clip-path: path("M 18 0 L 0 0 L 0 18 Q 5 4 18 0 Z");
}
.message__box-corner-tr { /* 右上：.about__link::before と同スタイル */
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: #E94F1F;
  clip-path: path("M 0 0 L 18 0 L 18 18 Q 13 4 0 0 Z");
}
.message {
  /* 下辺コーナー三角 ― 上辺を上下反転 */
}
.message__box-corner-bl { /* 左下：tl の上下反転 */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #E94F1F;
  clip-path: path("M 18 18 L 0 18 L 0 0 Q 5 14 18 18 Z");
}
.message__box-corner-br { /* 右下：tr の上下反転 */
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: #E94F1F;
  clip-path: path("M 0 18 L 18 18 L 18 0 Q 13 14 0 18 Z");
}
.message__heading {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 20px;
  font-weight: bold;
  color: #2E2E2B;
  text-align: center;
  letter-spacing: 0.14em;
  margin-bottom: 40px;
  line-height: 1.6;
}
.message__text {
  font-size: 16px;
  line-height: 2.4;
  color: #2E2E2B;
  letter-spacing: 0.04em;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .message__text {
    font-size: 14px;
    line-height: 2.2;
  }
}

/* スマホのみ表示する改行 */
.sp-br {
  display: none;
}

@media (max-width: 480px) {
  .sp-br {
    display: inline;
  }
}
/* PCのみ表示する改行（スマホでは自動折り返しに委ねる） */
@media (max-width: 480px) {
  br.pc-br {
    display: none;
  }
}
/* ===== 3枚横並び画像パネル ===== */
@keyframes photo-strip-roll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #EAEBEF;
  padding-bottom: 80px;
}
.photo-strip__track {
  display: contents;
}
.photo-strip__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.photo-strip__img--clone {
  display: none;
}
@media (max-width: 640px) {
  .photo-strip {
    display: block;
    overflow: hidden;
    padding-bottom: 40px;
  }
  .photo-strip__track {
    display: flex;
    gap: 4px;
    width: -moz-max-content;
    width: max-content;
    animation: photo-strip-roll 10s linear infinite;
  }
  .photo-strip__img {
    width: 75vw;
    aspect-ratio: 4/3;
    flex-shrink: 0;
    height: auto;
  }
  .photo-strip__img--clone {
    display: block;
  }
}

/* ===== GROWTH SESSION ===== */
.growth {
  padding: 100px 0 80px;
}
.growth__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}
.growth__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-left: 25px;
}
@media (max-width: 480px) {
  .growth__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.growth__header-right {
  text-align: right;
}
.growth__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.growth__label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E94F1F;
  flex-shrink: 0;
}
.growth__label-en {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 25px;
  font-weight: 400;
  color: #2E2E2B;
  letter-spacing: 0.08em;
}
.growth__title-ja {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 30px;
  font-weight: bold;
  color: #2E2E2B;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.growth__roles {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0;
  margin-bottom: 4px;
}
.growth__role-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.growth__role-label {
  font-size: 17px;
  color: #E94F1F;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-family: "Hiragino Mincho ProN", serif;
  display: block;
  text-align: left;
  font-weight: bold;
}
.growth__names {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 30px;
  font-weight: bold;
  color: #2E2E2B;
  letter-spacing: 0.1em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 480px) {
  .growth__names {
    font-size: clamp(20px, 5vw, 28px);
  }
}
.growth__name-cross {
  font-size: 1em;
  color: #5D5D59;
  letter-spacing: 0;
}
.growth__photo-wrap {
  position: relative;
  width: 100%;
}
@media (max-width: 640px) {
  .growth__photo-wrap {
    display: flex;
    flex-direction: column;
  }
}
.growth__main-photo {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.growth__caption {
  position: absolute;
  top: 24px;
  left: 24px;
  max-width: 400px;
}
@media (max-width: 640px) {
  .growth__caption {
    position: static;
    padding: 12px 0 0;
    max-width: 100%;
  }
}
.growth__caption-text {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 20px;
  font-weight: bold;
  color: #2E2E2B;
  line-height: 1.5;
  letter-spacing: 0.06em;
  display: inline;
  background: #fff;
  padding: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 640px) {
  .growth__caption-text {
    font-size: 16px;
    background: transparent;
    padding: 0;
  }
}
.growth__more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}
.growth__view-more {
  display: inline-block;
  padding: 12px 44px;
  background: var(--color-orange);
  color: #fff;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.25s;
}
.growth__view-more:hover {
  opacity: 0.82;
}

/* ===== ENVIRONMENT（環境と制度） ===== */
.env {
  background: #EAEBEF;
  padding: 80px 0;
}
.env__inner {
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .env__inner {
    padding: 0 24px;
  }
}
.env__rule {
  height: 5px;
  border-top: 1px solid #5D5D59;
  border-bottom: 1px solid #5D5D59;
  background: transparent;
}
.env {
  /* コンテンツ（テキスト＋ボタン） */
}
.env__body {
  padding: 40px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .env__body {
    padding: 40px 0 36px;
  }
}
.env__text {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 22px;
  font-weight: 400;
  color: #2E2E2B;
  letter-spacing: 0.18em;
  line-height: 1.5;
  margin-bottom: 28px;
}
.env__btn {
  display: inline-block;
  padding: 12px 44px;
  background: #E94F1F;
  color: #fff;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
  border-radius: 999px; /* pill形状 */
  transition: opacity 0.25s;
  text-decoration: none;
}
.env__btn:hover {
  opacity: 0.82;
}

/* ===== 環境と制度ページ固有（environment.html） ===== */
.env-section {
  background: var(--color-light);
  padding: 80px 0;
}
.env-section--white {
  background: #fff;
}
.env-section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .env-section__inner {
    padding: 0 20px;
  }
}

.env-lead {
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--color-text);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.env-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .env-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.env-card-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--color-orange);
}
.env-card-corner--tl {
  top: 0;
  left: 0;
  clip-path: path("M 18 0 L 0 0 L 0 18 Q 5 4 18 0 Z");
}
.env-card-corner--tr {
  top: 0;
  right: 0;
  clip-path: path("M 0 0 L 18 0 L 18 18 Q 13 4 0 0 Z");
}
.env-card-corner--bl {
  bottom: 0;
  left: 0;
  clip-path: path("M 18 18 L 0 18 L 0 0 Q 5 14 18 18 Z");
}
.env-card-corner--br {
  bottom: 0;
  right: 0;
  clip-path: path("M 0 18 L 18 18 L 18 0 Q 13 14 0 18 Z");
}

.env-feature-card {
  position: relative;
  background: #fff;
  padding: 32px 24px;
}
.env-section--white .env-feature-card {
  background: var(--color-light);
}
.env-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
}
.env-feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
}
.env-feature-card__num {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--color-orange);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-align: center;
}
.env-feature-card__title {
  font-family: var(--font-ja);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-align: center;
}
.env-feature-card__text {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-mid);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.env-office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .env-office-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.env-office-item {
  padding: 28px 24px;
  border-left: 3px solid var(--color-orange);
}
.env-office-item__title {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.env-office-item__text {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-mid);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

@keyframes marquee-fwd {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-rev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.env-marquee-wrap {
  width: 100vw;
  margin-top: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .env-marquee-wrap .env-marquee:not(:first-child) {
    display: none;
  }
}

.env-marquee {
  width: 100%;
  overflow: hidden;
}
.env-marquee__track {
  display: flex;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
}
.env-marquee__track--fwd {
  animation: marquee-fwd 52s linear infinite;
}
.env-marquee__track--rev {
  animation: marquee-rev 52s linear infinite;
}
.env-marquee__img {
  height: 220px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 640px) {
  .env-marquee__img {
    height: 150px;
  }
}

.env-dl {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.env-dl__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}
.env-dl__row:first-child {
  border-top: 1px solid #ddd;
}
@media (max-width: 640px) {
  .env-dl__row {
    grid-template-columns: 130px 1fr;
  }
}
.env-dl__term {
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.05em;
  padding-right: 16px;
}
.env-dl__desc {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.env-salary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .env-salary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .env-salary-grid {
    grid-template-columns: 1fr;
  }
}

.env-salary-card {
  position: relative;
  background: var(--color-light);
  padding: 28px 20px;
  text-align: center;
}
.env-section--white .env-salary-card {
  background: #f5f5f3;
}
.env-salary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
}
.env-salary-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
}
.env-salary-card__label {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-orange);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.env-salary-card__main {
  font-family: var(--font-ja);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.env-salary-card__text {
  font-family: var(--font-ja);
  font-size: 13px;
  color: var(--color-mid);
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
}

.env-eval-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.env-eval-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #ddd;
}
.env-eval-step:first-child {
  border-top: 1px solid #ddd;
}
.env-eval-step__num {
  font-family: var(--font-en);
  font-size: 28px;
  color: var(--color-orange);
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 4px;
}
.env-eval-step__title {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.env-eval-step__text {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-mid);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* ===== RECRUIT INFORMATION ===== */
.recruit {
  background: #312B2A;
  padding: 80px 0;
}
.recruit__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .recruit__inner {
    padding: 0 20px;
  }
}
.recruit__heading {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 80px;
  font-weight: 400;
  color: #E94F1F;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit__heading {
    font-size: clamp(36px, 10vw, 60px);
  }
}
.recruit__sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.recruit__sub-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E94F1F;
}
.recruit__sub-ja {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.16em;
}
.recruit {
  /* 白線枠ボックス */
}
.recruit__box {
  position: relative;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 40px;
}
@media (max-width: 768px) {
  .recruit__box {
    padding: 24px 16px;
  }
}
.recruit {
  /* 四隅コーナー三角（白） */
}
.recruit__box-corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  clip-path: path("M 18 0 L 0 0 L 0 18 Q 5 4 18 0 Z");
}
.recruit__box-corner-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  clip-path: path("M 0 0 L 18 0 L 18 18 Q 13 4 0 0 Z");
}
.recruit__box-corner-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  clip-path: path("M 18 18 L 0 18 L 0 0 Q 5 14 18 18 Z");
}
.recruit__box-corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  clip-path: path("M 0 18 L 18 18 L 18 0 Q 13 14 0 18 Z");
}
.recruit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .recruit__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.recruit__card {
  background: #f5f5f3;
  border-radius: 8px;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
}
.recruit__card-en {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 20px;
  color: #5D5D59;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.recruit__card-ja {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 28px;
  font-weight: bold;
  color: #2E2E2B;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  line-height: 1.3;
}
.recruit__card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}
.recruit__card-img {
  width: 58%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  display: block;
}
.recruit__card-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #000;
  color: #fff;
  font-family: "Palatino Linotype", Palatino, serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.recruit__card-btn:hover {
  background: #3f3f3c;
}

/* ===== FOOTER CATCH BANNER ===== */
.footer-catch {
  background: #E94F1F;
  padding: 28px 40px;
}
@media (max-width: 640px) {
  .footer-catch {
    padding: 20px 16px;
    text-align: center;
  }
}
.footer-catch__text {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: clamp(20px, 3.2vw, 40px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .footer-catch__text {
    font-size: clamp(13px, 4vw, 18px);
    white-space: nowrap;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #312B2A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 48px;
}
.footer__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
}
.footer__logo {
  display: block;
  margin-bottom: 32px;
}
.footer__logo img {
  height: 20px;
  width: auto;
  display: block;
  filter: invert(1);
}
.footer__sub-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}
.footer__sub-links {
  display: flex;
  flex-direction: column;
}
.footer__sub-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  line-height: 2.2;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__sub-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .footer__nav {
    grid-template-columns: 1fr;
  }
}
.footer__nav-heading {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
}
.footer__nav-list a {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 12px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.04em;
  line-height: 2.4;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav-list a:hover {
  color: rgba(255, 255, 255, 0.9);
}

:root {
  --color-orange: #E94F1F;
  --color-dark: #312B2A;
  --color-mid: #5D5D59;
  --color-light: #EAEBEF;
  --color-text: #2E2E2B;
  --font-en: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-ja: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', '游明朝', serif;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--color-light);
  padding-top: 104px;
  padding-bottom: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .page-header {
    padding-top: 80px;
  }
}
.page-header__title {
  font-family: var(--font-ja);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.14em;
  line-height: 1.2;
}
.page-header {
  /* タブナビゲーション */
}
.page-header__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .page-header__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .page-header__tabs::-webkit-scrollbar {
    display: none;
  }
}
.page-header__tab {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-mid);
  letter-spacing: 0.08em;
  padding: 12px 24px 14px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .page-header__tab {
    font-size: 12px;
    padding: 10px 16px 12px;
    flex-shrink: 0;
  }
}
.page-header__tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}
.page-header__tab:hover {
  color: var(--color-text);
}
.page-header__tab--active {
  color: var(--color-text);
  font-weight: 600;
}
.page-header__tab--active::after {
  background: var(--color-orange);
}

/* ===== PRESIDENT MESSAGE ===== */
.president {
  background: var(--color-light);
  padding: 72px 0 96px;
}
@media (max-width: 768px) {
  .president {
    padding: 48px 0 64px;
  }
}
.president__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .president__inner {
    padding: 0 24px;
  }
}
.president__label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.president__label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}
.president__label-text {
  font-family: var(--font-ja);
  font-size: 16px;
  color: var(--color-text);
  letter-spacing: 0.1em;
}
.president__photo-wrap {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .president__photo-wrap {
    margin-bottom: 32px;
  }
}
.president__photo {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.president__catch {
  font-family: var(--font-ja);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .president__catch {
    font-size: clamp(18px, 4.5vw, 24px);
    margin-bottom: 24px;
  }
}
.president__body {
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .president__body {
    margin-bottom: 40px;
  }
}
.president__para {
  font-family: var(--font-ja);
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
.president__para + .president__para {
  margin-top: 0;
}
.president__signature {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 32px;
}
.president__signature-role {
  font-family: var(--font-ja);
  font-size: 12px;
  color: var(--color-mid);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.president__signature-name {
  font-family: var(--font-ja);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.14em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.president__signature-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ja);
  font-size: 13px;
  color: var(--color-mid);
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.president__signature-note:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
}
.president__signature-note-icon {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== JS: page-header のタブ切り替え ===== */
/* ===== COMPANY SECTION（会社概要・沿革共通） ===== */
.company-section {
  padding: 80px 0 96px;
}
@media (max-width: 768px) {
  .company-section {
    padding: 56px 0 72px;
  }
}
.company-section--history {
  padding-top: 0;
  padding-bottom: 96px;
}
.company-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .company-section__inner {
    padding: 0 24px;
  }
}
.company-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .company-section__header {
    margin-bottom: 32px;
  }
}
.company-section__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
}
.company-section__title {
  font-family: var(--font-ja);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.18em;
  line-height: 1.2;
}
.company-section__btn-wrap {
  margin-top: 56px;
  text-align: center;
}
@media (max-width: 768px) {
  .company-section__btn-wrap {
    margin-top: 40px;
  }
}
.company-section__pamphlet-btn {
  display: inline-block;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-ja);
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 20px 48px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  min-width: 320px;
  text-align: center;
}
@media (max-width: 768px) {
  .company-section__pamphlet-btn {
    min-width: 0;
    width: 100%;
    font-size: 13px;
    padding: 18px 24px;
  }
}
.company-section__pamphlet-btn:hover {
  background: #4a4542;
}

/* ===== COMPANY TABLE（定義リスト） ===== */
.company-table {
  width: 100%;
}
.company-table__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  align-items: start;
}
.company-table__row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .company-table__row {
    grid-template-columns: 110px 1fr;
    gap: 0 16px;
    padding: 16px 0;
  }
}
.company-table__term {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-mid);
  letter-spacing: 0.06em;
  line-height: 1.8;
  padding-top: 1px;
}
@media (max-width: 600px) {
  .company-table__term {
    font-size: 12px;
  }
}
.company-table__desc {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.9;
}
@media (max-width: 600px) {
  .company-table__desc {
    font-size: 13px;
  }
}
.company-table__cert-img {
  height: 52px;
  width: auto;
  display: block;
}

/* ===== 経営理念（.philosophy） ===== */
.philosophy {
  background: var(--color-light);
  padding: 64px 0 80px;
}
@media (max-width: 768px) {
  .philosophy {
    padding: 48px 0 64px;
  }
}
.philosophy__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .philosophy__inner {
    padding: 0 24px;
  }
}
.philosophy__box {
  position: relative;
  padding: 64px 48px 72px;
  text-align: center;
}
@media (max-width: 768px) {
  .philosophy__box {
    padding: 48px 24px 56px;
  }
}
.philosophy__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
}
.philosophy__box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
}
.philosophy__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--color-orange);
}
.philosophy__corner--tl {
  top: 0;
  left: 0;
  clip-path: path("M 18 0 L 0 0 L 0 18 Q 5 4 18 0 Z");
}
.philosophy__corner--tr {
  top: 0;
  right: 0;
  clip-path: path("M 0 0 L 18 0 L 18 18 Q 13 4 0 0 Z");
}
.philosophy__corner--bl {
  bottom: 0;
  left: 0;
  clip-path: path("M 18 18 L 0 18 L 0 0 Q 5 14 18 18 Z");
}
.philosophy__corner--br {
  bottom: 0;
  right: 0;
  clip-path: path("M 0 18 L 18 18 L 18 0 Q 13 14 0 18 Z");
}
.philosophy__title {
  font-family: var(--font-ja);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  line-height: 1.2;
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .philosophy__title {
    letter-spacing: 0.3em;
    margin-right: -0.3em;
    margin-bottom: 40px;
  }
}
.philosophy__block {
  margin-bottom: 40px;
}
.philosophy__block:last-child {
  margin-bottom: 0;
}
.philosophy__label {
  font-family: var(--font-en);
  font-size: 15px;
  color: var(--color-orange);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.philosophy__text {
  font-family: var(--font-ja);
  font-size: clamp(15px, 2vw, 19px);
  color: var(--color-text);
  letter-spacing: 0.2em;
  line-height: 2;
}

/* ===== 数字で見るCARPRODUCE（.numbers） ===== */
.numbers {
  background: var(--color-dark);
  padding: 80px 0 96px;
}
@media (max-width: 768px) {
  .numbers {
    padding: 56px 0 72px;
  }
}
.numbers__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .numbers__inner {
    padding: 0 24px;
  }
}
.numbers__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 768px) {
  .numbers__header {
    margin-bottom: 48px;
  }
}
.numbers__header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  margin-bottom: 4px;
}
.numbers__header-en {
  font-family: var(--font-en);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.18em;
}
.numbers__header-ja {
  font-family: var(--font-ja);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.14em;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 640px) {
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.numbers__item {
  padding: 40px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.numbers__item:nth-child(3n+1) {
  border-left: none;
}
.numbers__item:nth-child(n+4) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 640px) {
  .numbers__item {
    padding: 32px 20px;
  }
  .numbers__item:nth-child(3n+1) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  .numbers__item:nth-child(2n+1) {
    border-left: none;
  }
  .numbers__item:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.numbers__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
  line-height: 1;
}
.numbers__num {
  font-family: var(--font-en);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  color: var(--color-orange);
  letter-spacing: -0.02em;
}
.numbers__unit {
  font-family: var(--font-ja);
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.numbers__label {
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.numbers__note {
  font-family: var(--font-ja);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* ===== 事業内容（.biz） ===== */
.biz {
  background: #312B2A;
  padding: 72px 0 96px;
}
@media (max-width: 768px) {
  .biz {
    padding: 56px 0 72px;
  }
}
.biz__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .biz__inner {
    padding: 0 24px;
  }
}
.biz__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .biz__header {
    margin-bottom: 48px;
  }
}
.biz__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
}
.biz__title {
  font-family: var(--font-ja);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.18em;
}
.biz__item {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0 48px;
  align-items: start;
  padding: 48px 0;
}
@media (max-width: 768px) {
  .biz__item {
    grid-template-columns: 1fr;
    gap: 24px 0;
    padding: 40px 0;
  }
}
.biz__item-img-wrap {
  overflow: hidden;
  border-radius: 4px;
}
.biz__item-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.biz__item-body {
  padding-top: 8px;
}
.biz__item-heading {
  font-family: var(--font-ja);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .biz__item-heading {
    margin-bottom: 16px;
  }
}
.biz__item-text {
  font-family: var(--font-ja);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .biz__item-text {
    margin-bottom: 20px;
  }
}
.biz__item-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.biz__item-btn {
  display: inline-block;
  padding: 9px 20px;
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-ja);
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.biz__item-btn:hover {
  opacity: 0.82;
}
.biz__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
}
.biz__intent {
  padding: 56px 40px;
  background: #2A2622;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .biz__intent {
    padding: 40px 20px;
    gap: 36px;
  }
}
.biz__intent-block {
  max-width: 760px;
}
.biz__intent-block--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: none;
}
@media (max-width: 768px) {
  .biz__intent-block--hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.biz__intent-hero-img-wrap {
  overflow: hidden;
  border-radius: 6px;
}
.biz__intent-hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.biz__intent-label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin-bottom: 8px;
}
.biz__intent-heading {
  font-family: var(--font-ja);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.biz__intent-text {
  font-family: var(--font-ja);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  letter-spacing: 0.04em;
}
.biz__flywheel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.biz__flywheel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  gap: 4px;
}
.biz__flywheel-step--accent {
  border-color: var(--color-orange);
  background: rgba(233, 79, 31, 0.15);
}
@media (max-width: 600px) {
  .biz__flywheel-step {
    width: 76px;
    height: 76px;
  }
}
.biz__flywheel-num {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-orange);
  letter-spacing: 0.08em;
}
.biz__flywheel-name {
  font-family: var(--font-ja);
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
}
.biz__flywheel-arrow {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  flex-shrink: 0;
}
.biz__flywheel-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 600px) {
  .biz__flywheel-arrow {
    width: 16px;
  }
}

/* ===== 組織図（.org） ===== */
.org {
  background: #fff;
  padding: 80px 0;
}
.org__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .org__inner {
    padding: 0 20px;
  }
}
.org__chart {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.org__ceo-row {
  display: flex;
  justify-content: center;
}
.org__box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ja);
  font-size: 15px;
  letter-spacing: 0.06em;
  border: 1px solid var(--color-dark);
  padding: 12px 28px;
}
.org__box--ceo {
  background: var(--color-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  min-width: 220px;
}
.org__box--dept {
  background: var(--color-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  padding: 10px 16px;
}
.org__v-line {
  width: 1px;
  height: 40px;
  background: var(--color-dark);
}
.org__dept-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
@media (max-width: 640px) {
  .org__dept-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.org__dept-col {
  display: flex;
  flex-direction: column;
}
.org__team-group {
  border: 1px solid #d0d0d0;
  border-top: none;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.org__team {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.org__team-name {
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 4px;
}
.org__role-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.org__role-list li {
  font-family: var(--font-ja);
  font-size: 13px;
  color: var(--color-mid);
  letter-spacing: 0.04em;
  padding-left: 12px;
  position: relative;
}
.org__role-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-orange);
}

:root {
  --color-orange: #E94F1F;
  --color-dark: #312B2A;
  --color-mid: #5D5D59;
  --color-light: #EAEBEF;
  --color-text: #2E2E2B;
  --font-en: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-ja: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', '游明朝', serif;
}

/* ===== PAGE HEADER（Jobs仕様） ===== */
.page-header {
  background: var(--color-light);
  padding-top: 96px;
  padding-bottom: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .page-header {
    padding-top: 72px;
  }
}
.page-header__en {
  font-family: var(--font-en);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--color-mid);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.page-header__title {
  font-family: var(--font-ja);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.14em;
  padding-bottom: 32px;
  line-height: 1.2;
}
.page-header__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .page-header__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .page-header__tabs::-webkit-scrollbar {
    display: none;
  }
}
.page-header__tab {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-mid);
  letter-spacing: 0.08em;
  padding: 12px 28px 14px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .page-header__tab {
    font-size: 12px;
    padding: 10px 16px 12px;
    flex-shrink: 0;
  }
}
.page-header__tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}
.page-header__tab:hover {
  color: var(--color-text);
}
.page-header__tab--active {
  color: var(--color-text);
  font-weight: 600;
}
.page-header__tab--active::after {
  background: var(--color-orange);
}

/* ===== JOB SECTION（各職種） ===== */
.job-section {
  background: var(--color-light);
}
.job-section__label-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 48px 0;
}
@media (max-width: 768px) {
  .job-section__label-wrap {
    padding: 56px 24px 0;
  }
}
.job-section__label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.job-section__label-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-orange);
  flex-shrink: 0;
}
.job-section__label-text {
  font-family: var(--font-en);
  font-size: clamp(11px, 1.4vw, 13px);
  color: var(--color-orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.job-section__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 48px 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .job-section__body {
    padding: 24px 24px 64px;
  }
}
.job-section__name {
  font-family: var(--font-ja);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.job-section__catch {
  font-family: var(--font-ja);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.job-section__text {
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--color-text);
  line-height: 2.1;
  letter-spacing: 0.04em;
  text-align: left;
}

/* ===== 1日の流れ（.daily-flow） ===== */
.daily-flow {
  background: var(--color-light);
  padding: 0 48px 96px;
}
@media (max-width: 768px) {
  .daily-flow {
    padding: 0 24px 72px;
  }
}
.daily-flow__box {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px 64px;
}
@media (max-width: 768px) {
  .daily-flow__box {
    padding: 40px 20px 48px;
  }
}
.daily-flow__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
}
.daily-flow__box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
}
.daily-flow__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--color-orange);
}
.daily-flow__corner--tl {
  top: 0;
  left: 0;
  clip-path: path("M 18 0 L 0 0 L 0 18 Q 5 4 18 0 Z");
}
.daily-flow__corner--tr {
  top: 0;
  right: 0;
  clip-path: path("M 0 0 L 18 0 L 18 18 Q 13 4 0 0 Z");
}
.daily-flow__corner--bl {
  bottom: 0;
  left: 0;
  clip-path: path("M 18 18 L 0 18 L 0 0 Q 5 14 18 18 Z");
}
.daily-flow__corner--br {
  bottom: 0;
  right: 0;
  clip-path: path("M 0 18 L 18 18 L 18 0 Q 13 14 0 18 Z");
}
.daily-flow__title {
  font-family: var(--font-ja);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .daily-flow__title {
    margin-bottom: 40px;
  }
}
.daily-flow__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.daily-flow__item {
  display: grid;
  grid-template-columns: 72px 1fr 260px;
  gap: 0 24px;
  align-items: start;
  padding-bottom: 64px;
}
.daily-flow__item:not(:has(.daily-flow__right)) .daily-flow__center {
  grid-column: 2/-1;
}
@media (max-width: 768px) {
  .daily-flow__item {
    grid-template-columns: 60px 1fr;
    gap: 0 16px;
    padding-bottom: 32px;
  }
}
.daily-flow__item--last {
  padding-bottom: 0;
}
.daily-flow__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.daily-flow__time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .daily-flow__time {
    width: 48px;
    height: 48px;
    font-size: 11px;
  }
}
.daily-flow__line {
  display: block;
  width: 2px;
  flex: 1;
  min-height: 40px;
  border-left: 2px dashed var(--color-orange);
  margin-top: 6px;
}
.daily-flow__center {
  padding-top: 10px;
}
.daily-flow__item-title {
  font-family: var(--font-ja);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.daily-flow__item-text {
  font-family: var(--font-ja);
  font-size: 13px;
  color: var(--color-text);
  line-height: 2;
  letter-spacing: 0.04em;
}
.daily-flow__right {
  padding-top: 10px;
}
@media (max-width: 768px) {
  .daily-flow__right {
    grid-column: 2/3;
    margin-top: 4px;
    margin-bottom: 16px;
  }
}
.daily-flow__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

:root {
  --color-orange: #E94F1F;
  --color-dark: #312B2A;
  --color-mid: #5D5D59;
  --color-light: #EAEBEF;
  --color-text: #2E2E2B;
  --font-en: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-ja: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', '游明朝', serif;
  --session-w: 400px;
}

/* ===== PAGE HEADER（役員対談仕様） ===== */
.page-header--session {
  background: var(--color-light);
  padding-top: 96px;
  padding-bottom: 56px;
  text-align: center;
}
@media (max-width: 768px) {
  .page-header--session {
    padding-top: 72px;
    padding-bottom: 40px;
  }
}
.page-header--session .page-header__en {
  font-family: var(--font-en);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.page-header--session .page-header__title {
  font-family: var(--font-ja);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.session-kv {
  display: grid;
  grid-template-columns: var(--session-w) 1fr;
  background: var(--color-light);
  padding: 40px 5.3vw 0;
}
@media (max-width: 768px) {
  .session-kv {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.session-kv__side {
  padding: 0 0 0 48px;
  position: relative;
  overflow: visible;
  z-index: 2;
}
@media (max-width: 768px) {
  .session-kv__side {
    padding: 40px 24px 0;
    order: 2;
    overflow: hidden;
  }
}
.session-kv__media {
  overflow: hidden;
}
@media (max-width: 768px) {
  .session-kv__media {
    order: 1;
  }
}
.session-kv__photo {
  display: block;
  width: 100%;
  margin-top: -40px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 768px) {
  .session-kv__photo {
    width: 100%;
    margin-top: 0;
    aspect-ratio: 4/3;
  }
}

/* ===== 役職・名前ブロック ===== */
.session__names {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.session__person {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.session__role {
  font-family: var(--font-ja);
  font-size: 17px;
  color: var(--color-orange);
  letter-spacing: 0.12em;
  font-weight: bold;
}

.session__name {
  font-family: var(--font-ja);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: bold;
  color: var(--color-text);
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.session__cross {
  font-family: var(--font-ja);
  font-size: 40px;
  color: var(--color-mid);
  padding: 2px 0;
}

/* ===== キャッチコピーボックス ===== */
.session__caption {
  background: #fff;
  padding: 20px 28px;
  position: relative;
  z-index: 3;
  width: calc(100% + 220px);
  margin-bottom: 0;
  margin-top: -100px;
}
@media (max-width: 768px) {
  .session__caption {
    width: 100%;
    margin-top: 32px;
  }
}

.session__caption-text {
  font-family: var(--font-ja);
  font-size: clamp(16px, 1.3vw, 24px);
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.session-body {
  display: grid;
  grid-template-columns: var(--session-w) 1fr;
  align-items: start;
  padding: 0 5.3vw;
  background: var(--color-light);
}
@media (max-width: 768px) {
  .session-body {
    grid-template-columns: 1fr;
    background: none;
    padding: 0;
  }
}
.session-body__side {
  position: sticky;
  top: 52px;
  align-self: start;
  padding: 48px 35px 48px 48px;
}
@media (max-width: 768px) {
  .session-body__side {
    position: static;
    background: var(--color-light);
    padding: 32px 24px;
  }
}
.session-body__main {
  padding: 56px 56px 96px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .session-body__main {
    padding: 40px 24px 72px;
  }
}

/* ===== 導入テキスト ===== */
.session__intro {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-light);
}

.session__text {
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--color-text);
  line-height: 2.2;
  letter-spacing: 0.04em;
}

/* ===== PROFILE ===== */
.session-profile {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-light);
}
.session-profile__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.session-profile__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}
.session-profile__label {
  font-family: var(--font-en);
  font-size: 17px;
  color: var(--color-orange);
  letter-spacing: 0.12em;
}
.session-profile__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 24px;
  align-items: start;
}
@media (max-width: 600px) {
  .session-profile__grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
}
.session-profile__cross {
  font-family: var(--font-ja);
  font-size: 24px;
  color: var(--color-mid);
  text-align: center;
  padding: 0 4px;
  margin-top: 12px;
}
.session-profile__person-top {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 14px;
  align-items: start;
}
.session-profile__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.session-profile__role {
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--color-mid);
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.session-profile__name {
  font-family: var(--font-ja);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  line-height: 1.4;
}
.session-profile__bio {
  font-family: var(--font-ja);
  font-size: 12px;
  color: var(--color-mid);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ===== 対談記事 ===== */
/* ===== 目次（TOC） ===== */
.session-toc__title {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--color-orange);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.session-toc__list {
  list-style: none;
}
.session-toc__item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0 10px;
  align-items: start;
  margin-bottom: 16px;
}
.session-toc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-mid);
  margin-top: 5px;
  flex-shrink: 0;
  transition: background 0.35s;
}
.session-toc__item--active .session-toc__dot {
  background: var(--color-orange);
}
.session-toc__link {
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.8;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.session-toc__item--active .session-toc__link {
  color: var(--color-text);
}
.session-toc__link:hover {
  color: var(--color-text);
}

/* ===== チャプター ===== */
.session-chapter {
  margin-bottom: 72px;
}
.session-chapter:last-child {
  margin-bottom: 0;
}
.session-chapter__title {
  font-family: var(--font-ja);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.14em;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-top: 56px;
  border-top: 1px solid var(--color-light);
}
.session-chapter__title:first-child {
  border-top: none;
  padding-top: 0;
}
@media (max-width: 768px) {
  .session-chapter__title {
    margin-bottom: 28px;
  }
}

.session-chapter:first-child .session-chapter__title {
  border-top: none;
  padding-top: 0;
}

/* ===== 質問文 ===== */
.session-question {
  font-family: var(--font-ja);
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--color-mid);
  font-style: italic;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  padding-left: 1em;
  border-left: 2px solid var(--color-orange);
}
@media (max-width: 768px) {
  .session-question {
    margin-bottom: 24px;
  }
}

/* ===== 回答ブロック ===== */
.session-answer {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 20px;
  align-items: start;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .session-answer {
    grid-template-columns: 52px 1fr;
    gap: 0 12px;
    margin-bottom: 28px;
  }
}
.session-answer__speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.session-answer__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 768px) {
  .session-answer__avatar {
    width: 44px;
    height: 44px;
  }
}
.session-answer__name {
  font-family: var(--font-ja);
  font-size: 10px;
  color: var(--color-mid);
  letter-spacing: 0.06em;
  text-align: center;
}
.session-answer__text {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--color-text);
  line-height: 2.2;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

/* ===== PAGE HEADER modifier ===== */
.page-header__tabs--scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  justify-content: center;
}

/* ===== JOB LIST（求人一覧 / .jl-*） ===== */
.jl-section {
  background: var(--color-light);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .jl-section {
    padding: 56px 0;
  }
}

.jl-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .jl-inner {
    padding: 0 20px;
  }
}

.jl-lead {
  text-align: center;
  margin-bottom: 48px;
}

.jl-lead__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-mid);
  letter-spacing: 0.04em;
}

.jl-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.jl-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s;
}
.jl-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.jl-card__link {
  display: block;
  padding: 28px 32px;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 768px) {
  .jl-card__link {
    padding: 20px;
  }
}

.jl-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.jl-card__dept {
  font-size: 12px;
  color: var(--color-mid);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.jl-card__title {
  font-size: 22px;
  font-weight: 400;
  color: var(--color-dark);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.jl-card__catch {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

.jl-card__employment {
  font-size: 12px;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  padding: 3px 10px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.jl-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .jl-card__meta {
    grid-template-columns: 1fr;
  }
}

.jl-card__meta-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
}
.jl-card__meta-item dt {
  color: var(--color-mid);
  width: 56px;
  flex-shrink: 0;
}
.jl-card__meta-item dd {
  color: var(--color-text);
}

.jl-card__meta-note {
  font-size: 11px;
  color: var(--color-mid);
  margin-left: 6px;
}

.jl-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
  gap: 16px;
}

.jl-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.jl-card__tag {
  font-size: 12px;
  color: var(--color-mid);
  background: rgba(0, 0, 0, 0.05);
  padding: 3px 10px;
  letter-spacing: 0.03em;
}

.jl-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ===== JOB DETAIL（求人詳細 / .jd-*） ===== */
.jd-intro {
  background: #fff;
  padding: 56px 0 48px;
}
@media (max-width: 768px) {
  .jd-intro {
    padding: 40px 0 32px;
  }
}

.jd-intro__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .jd-intro__inner {
    padding: 0 20px;
  }
}

.jd-intro__category {
  font-size: 13px;
  color: var(--color-mid);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.jd-intro__title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--color-dark);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.jd-intro__catch {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.9;
}

.jd-layout {
  background: var(--color-light);
  padding: 48px 0 80px;
}
@media (max-width: 768px) {
  .jd-layout {
    padding: 32px 0 56px;
  }
}

.jd-layout__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .jd-layout__inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.jd-section {
  background: #fff;
  padding: 32px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .jd-section {
    padding: 24px 20px;
  }
}

.jd-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.jd-section__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.jd-section__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
}

.jd-section__note {
  font-size: 13px;
  color: var(--color-mid);
  margin-top: 12px;
  line-height: 1.6;
}

.jd-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
}
.jd-list li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.jd-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-orange);
}

.jd-requirement {
  margin-bottom: 20px;
}
.jd-requirement:last-child {
  margin-bottom: 0;
}

.jd-requirement__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.jd-requirement__label--must {
  background: var(--color-orange);
  color: #fff;
}
.jd-requirement__label--pref {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
}

.jd-model {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .jd-model {
    grid-template-columns: 1fr;
  }
}

.jd-model-case {
  background: var(--color-light);
  padding: 20px 16px;
  text-align: center;
}

.jd-model-case__profile {
  font-size: 12px;
  color: var(--color-mid);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.jd-model-case__total {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 14px;
}
.jd-model-case__total strong {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-orange);
}

.jd-model-case__breakdown {
  list-style: none;
  text-align: left;
}
.jd-model-case__breakdown li {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-mid);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 5px 0;
}

.jd-model-case__annual {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  color: var(--color-mid);
}
.jd-model-case__annual strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.jd-flow {
  display: flex;
  align-items: flex-start;
}

.jd-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.jd-flow-step__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}

.jd-flow-step__label {
  font-size: 13px;
  color: var(--color-text);
}

.jd-flow-arrow {
  flex: 0 0 24px;
  height: 1px;
  background: var(--color-dark);
  margin-top: 22px;
}

.jd-sticky {
  position: sticky;
  top: 72px;
}
@media (max-width: 900px) {
  .jd-sticky {
    position: static;
  }
}

.jd-sidebar-card {
  background: #fff;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.jd-sidebar-card__job {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-dark);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.jd-sidebar-card__dept {
  font-size: 12px;
  color: var(--color-mid);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.jd-sidebar-card__summary {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}
.jd-sidebar-card__summary dt {
  font-size: 12px;
  color: var(--color-mid);
  margin-bottom: 2px;
}
.jd-sidebar-card__summary dd {
  font-size: 14px;
  color: var(--color-text);
}

.jd-sidebar-card__note {
  font-size: 11px;
  color: var(--color-mid);
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
}

.jd-entry-btn {
  display: block;
  background: var(--color-orange);
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.jd-entry-btn:hover {
  opacity: 0.85;
}
.jd-entry-btn--lg {
  display: inline-block;
  font-size: 16px;
  padding: 16px 48px;
}

.jd-bottom-entry {
  background: var(--color-dark);
  padding: 64px 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .jd-bottom-entry {
    padding: 48px 20px;
  }
}

.jd-bottom-entry__inner {
  max-width: 600px;
  margin: 0 auto;
}

.jd-bottom-entry__text {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== ENTRY FORM (ef-*) ===== */
.ef-section {
  background: #fff;
  padding: 56px 0 96px;
}
@media (max-width: 768px) {
  .ef-section {
    padding: 40px 0 72px;
  }
}

.ef-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .ef-inner {
    padding: 0 20px;
  }
}

/* 応募職種バッジ */
.ef-job-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-light);
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ef-job-badge__prefix {
  font-size: 13px;
  color: var(--color-mid);
  letter-spacing: 0.06em;
}
.ef-job-badge__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.06em;
  flex: 1;
}
.ef-job-badge__change {
  font-size: 12px;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  border-radius: 2px;
  padding: 3px 10px;
  transition: background 0.2s, color 0.2s;
}
.ef-job-badge__change:hover {
  background: var(--color-orange);
  color: #fff;
}

/* 説明文 */
.ef-desc {
  font-size: 14px;
  color: var(--color-mid);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

/* フォーム行 */
.ef-row {
  margin-bottom: 28px;
}
.ef-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .ef-row--2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* フィールド */
.ef-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ef-field--narrow {
  max-width: 240px;
}

/* ラベル */
.ef-label {
  font-size: 14px;
  color: var(--color-text);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 必須・任意バッジ */
.ef-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 2px;
}
.ef-badge--req {
  background: var(--color-orange);
  color: #fff;
}
.ef-badge--opt {
  background: #ddd;
  color: var(--color-mid);
}

/* テキスト入力 */
.ef-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}
.ef-input:focus {
  border-color: var(--color-orange);
}
.ef-input::-moz-placeholder {
  color: #bbb;
}
.ef-input::placeholder {
  color: #bbb;
}
.ef-input--date {
  max-width: 200px;
}

/* テキストエリア */
.ef-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  resize: vertical;
  line-height: 1.7;
  transition: border-color 0.2s;
}
.ef-textarea:focus {
  border-color: var(--color-orange);
}
.ef-textarea::-moz-placeholder {
  color: #bbb;
}
.ef-textarea::placeholder {
  color: #bbb;
}

/* エラー文 */
.ef-error {
  font-size: 12px;
  color: #d32f2f;
  letter-spacing: 0.04em;
  min-height: 18px;
}

/* ファイルアップロード */
.ef-file-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ef-file-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--color-dark);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ef-file-btn:hover {
  opacity: 0.8;
}
.ef-file-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ef-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ef-file-name {
  font-size: 13px;
  color: var(--color-mid);
  letter-spacing: 0.04em;
}

.ef-field-note {
  font-size: 12px;
  color: var(--color-mid);
  letter-spacing: 0.04em;
}

/* チェックボックス */
.ef-check-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ef-check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ef-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  letter-spacing: 0.04em;
  cursor: pointer;
}

.ef-check-box {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.ef-check-input:checked + .ef-check-label .ef-check-box {
  background: var(--color-orange);
  border-color: var(--color-orange);
}
.ef-check-input:checked + .ef-check-label .ef-check-box::after {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.ef-policy-link {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 送信ボタン */
.ef-submit-row {
  margin-top: 48px;
  text-align: center;
}

.ef-submit-btn {
  display: inline-block;
  padding: 16px 64px;
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ef-submit-btn:hover {
  opacity: 0.85;
}
.ef-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== CAR PRODUCE を知る ===== */
.cp-about {
  background: #fff;
  padding: 56px 0 64px;
}
.cp-about__header {
  text-align: center;
  margin-bottom: 36px;
}
.cp-about__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E94F1F;
  margin: 0 auto 14px;
}
.cp-about__en {
  font-family: "Palatino Linotype", Palatino, serif;
  font-size: 13px;
  color: #5D5D59;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.cp-about__ja {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: #2E2E2B;
  letter-spacing: 0.12em;
}
.cp-about__links {
  display: flex;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .cp-about__links {
    flex-direction: column;
    padding: 0 24px;
  }
}
.cp-about__links .about__link {
  flex: 1;
  height: 140px;
}
.cp-about__links .about__link .about__link-img {
  width: 130px;
  flex-shrink: 0;
}
.cp-about__links .about__link-text {
  font-size: 18px;
}

/* ===== 実際に働く仲間の声 ===== */
.voices-section {
  background: #fff;
  padding: 64px 0 80px;
}
.voices-section .section-header__en {
  color: #5D5D59;
}
.voices-section .section-header__ja {
  color: #2E2E2B;
}
.voices-section__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .voices-section__inner {
    padding: 0 20px;
  }
}
.voices-section__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.voices-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) {
  .voices-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .voices-section__grid {
    grid-template-columns: 1fr;
  }
}

.vs-filter-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 20px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
}
.vs-filter-btn:hover {
  border-color: #888;
  color: #444;
}
.vs-filter-btn--active {
  border-color: #2E2E2B;
  color: #2E2E2B;
  background: #f2f2f0;
}
.vs-filter-btn--challenge.vs-filter-btn--active {
  border-color: #1a6fa8;
  color: #1a6fa8;
  background: rgba(30, 120, 190, 0.08);
}
.vs-filter-btn--win.vs-filter-btn--active {
  border-color: #c0400f;
  color: #c0400f;
  background: rgba(233, 79, 31, 0.08);
}
.vs-filter-btn--life.vs-filter-btn--active {
  border-color: #287a3f;
  color: #287a3f;
  background: rgba(50, 160, 80, 0.08);
}

.vs-card {
  background: #EAEBEF;
  border-radius: 6px;
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vs-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.vs-card--hidden {
  display: none;
}
.vs-card__icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
}
.vs-card__icon svg {
  width: 100%;
  height: 100%;
}
.vs-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.vs-card__headline {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 14px;
  font-weight: 600;
  color: #2E2E2B;
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex: 1;
}
.vs-card__role {
  font-size: 12px;
  color: #5D5D59;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 10px;
}

.vs-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 20px;
}
.vs-tag--challenge {
  background: rgba(30, 120, 190, 0.1);
  color: #1a6fa8;
  border: 1px solid rgba(30, 120, 190, 0.25);
}
.vs-tag--win {
  background: rgba(233, 79, 31, 0.1);
  color: #c0400f;
  border: 1px solid rgba(233, 79, 31, 0.25);
}
.vs-tag--life {
  background: rgba(50, 160, 80, 0.1);
  color: #287a3f;
  border: 1px solid rgba(50, 160, 80, 0.25);
}

/* ===== VOICE INTERVIEW 詳細ページ (vi-*) ===== */
.vi-hero {
  background: #312B2A;
  padding: 120px 40px 64px;
  text-align: center;
}
@media (max-width: 768px) {
  .vi-hero {
    padding: 100px 24px 48px;
  }
}
.vi-hero__dept {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.vi-hero__catch {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 640px;
}
.vi-hero__name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.vi-hero__tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vi-body {
  background: #fff;
  padding: 72px 0 96px;
}
.vi-body__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .vi-body__inner {
    padding: 0 20px;
  }
}

.vi-section {
  margin-bottom: 56px;
}
.vi-section__heading {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 18px;
  font-weight: bold;
  color: #2E2E2B;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding-left: 14px;
  border-left: 3px solid #E94F1F;
  margin-bottom: 20px;
}
.vi-section__text {
  font-size: 15px;
  line-height: 2.1;
  color: #3a3a38;
  letter-spacing: 0.05em;
}

.vi-back {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #eee;
  text-align: center;
}
.vi-back__link {
  font-size: 13px;
  color: #5D5D59;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.vi-back__link:hover {
  color: #E94F1F;
}

/* ============================================================
   OPENING OVERLAY
   ============================================================ */
#opening-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #312B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.op-logo {
  width: clamp(140px, 28vw, 220px);
  filter: brightness(0) invert(1);
}

.op-tagline {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
}

@keyframes aboutPhotoRollSpH {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes aboutPhotoRoll {
  /* 各画像 12.5% サイクル：8% 移動 → 4.5% 停止 */
  /* cubic-bezier(0.45, 0, 0.15, 1)：ゆっくり加速し、なめらかに減速 */
  0% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
  }
  8% {
    transform: translateY(-6.25%);
    animation-timing-function: linear;
  }
  12.5% {
    transform: translateY(-6.25%);
    animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
  }
  20.5% {
    transform: translateY(-12.5%);
    animation-timing-function: linear;
  }
  25% {
    transform: translateY(-12.5%);
    animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
  }
  33% {
    transform: translateY(-18.75%);
    animation-timing-function: linear;
  }
  37.5% {
    transform: translateY(-18.75%);
    animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
  }
  45.5% {
    transform: translateY(-25%);
    animation-timing-function: linear;
  }
  50% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
  }
  58% {
    transform: translateY(-31.25%);
    animation-timing-function: linear;
  }
  62.5% {
    transform: translateY(-31.25%);
    animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
  }
  70.5% {
    transform: translateY(-37.5%);
    animation-timing-function: linear;
  }
  75% {
    transform: translateY(-37.5%);
    animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
  }
  83% {
    transform: translateY(-43.75%);
    animation-timing-function: linear;
  }
  87.5% {
    transform: translateY(-43.75%);
    animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
  }
  95.5% {
    transform: translateY(-50%);
    animation-timing-function: linear;
  }
  100% {
    transform: translateY(-50%);
  }
}
/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-animate=fade].will-animate {
  transform: none;
}

.is-animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ENTRY FORM — 送信完了メッセージ ===== */
.ef-success {
  padding: 64px 24px;
  text-align: center;
}
.ef-success__title {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 22px;
  font-weight: 400;
  color: #2E2E2B;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.ef-success__body {
  font-size: 15px;
  color: #5D5D59;
  line-height: 2;
}

/* ===== PRIVACY POLICY ===== */
.pp-section {
  padding: 64px 24px 80px;
}
@media (max-width: 768px) {
  .pp-section {
    padding: 40px 20px 60px;
  }
}

.pp-inner {
  max-width: 800px;
  margin: 0 auto;
}

.pp-article {
  color: #2E2E2B;
  font-size: 15px;
  line-height: 1.9;
}

.pp-lead {
  margin-bottom: 40px;
  color: #5D5D59;
}

.pp-block {
  margin-bottom: 36px;
}
.pp-block__title {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: 17px;
  font-weight: 400;
  color: #2E2E2B;
  letter-spacing: 0.06em;
  border-left: 3px solid #E94F1F;
  padding-left: 12px;
  margin-bottom: 12px;
}
.pp-block ul {
  padding-left: 20px;
  margin: 8px 0;
}
.pp-block ul li {
  list-style: disc;
  margin-bottom: 4px;
}
.pp-block p + p {
  margin-top: 8px;
}

.pp-date {
  margin-top: 48px;
  font-size: 13px;
  color: #9D9D97;
  text-align: right;
}

.notfound {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 80px 24px;
}
.notfound__inner {
  text-align: center;
  max-width: 480px;
  width: 100%;
}
.notfound__code {
  font-size: clamp(80px, 20vw, 160px);
  font-weight: 700;
  line-height: 1;
  color: #E94F1F;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.notfound__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9D9D97;
  margin-bottom: 32px;
}
.notfound__title {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", serif;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  color: #2E2E2B;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.notfound__text {
  font-size: 14px;
  line-height: 1.9;
  color: #5D5D59;
  margin-bottom: 48px;
}
.notfound__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.notfound__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.notfound__nav-btn:hover {
  opacity: 0.75;
}
.notfound__nav-btn--primary {
  background: #E94F1F;
  color: #fff;
}
.notfound__nav-btn:not(.notfound__nav-btn--primary) {
  border: 1.5px solid #C8C8C2;
  color: #2E2E2B;
}