/* ====================================
   三協輸送株式会社 採用ホームページ
   メインスタイルシート v2.0
   カラー：深緑 #006B5B / アクセント #F5A623 / 白 #FFFFFF
   ==================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: #006B5B;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover { color: #004d41; }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === UTILITY === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 90px 0; }
.bg-light     { background: #F4F8F7; }
.bg-dark      { background: #003d32; }

/* === SECTION HEADER === */
.section-header       { text-align: center; margin-bottom: 56px; }
.section-header.light .section-label,
.section-header.light .section-title,
.section-header.light .section-sub { color: #fff; }

.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #006B5B;
  background: rgba(0,107,91,0.08);
  border: 1px solid rgba(0,107,91,0.25);
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-header.light .section-label {
  color: #7fe8d5;
  background: rgba(127,232,213,0.1);
  border-color: rgba(127,232,213,0.3);
}

.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #003d32;
  line-height: 1.3;
}

.section-sub {
  margin-top: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

/* ====================================
   HEADER
   ==================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 45, 36, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: background 0.3s, box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

.logo-text { color: #fff; }

/* NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: #7fe8d5;
  background: rgba(127,232,213,0.1);
}

.nav-link.nav-cta {
  background: #F5A623;
  color: #fff;
  font-weight: 700;
  padding: 8px 18px;
}

.nav-link.nav-cta:hover {
  background: #d4891a;
  color: #fff;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%; height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====================================
   HERO
   ==================================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* ---- Hero Slider ---- */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* インジケータードット */
.hero-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: #F5A623;
  border-color: #F5A623;
  transform: scale(1.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
}

/* Bottom accent line */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  z-index: 3;
  background: repeating-linear-gradient(
    90deg,
    #F5A623 0, #F5A623 40px,
    transparent 40px, transparent 70px
  );
  opacity: 0.8;
}

.hero-content {
  position: absolute;
  left: 60px;
  bottom: 80px;
  z-index: 2;
  color: #fff;
  text-align: left;
  max-width: 700px;
  width: calc(100% - 120px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F5A623;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 4px 20px rgba(0,0,0,0.7);
  white-space: nowrap;
}

.hero-title .highlight {
  color: #7fe8d5;
  position: relative;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,0.7);
}

.hero-sub i { color: #F5A623; margin-right: 4px; }

.hero-salary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 22px;
  border-radius: 60px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.salary-box { text-align: left; display: flex; align-items: center; gap: 4px; }

.salary-label {
  display: inline;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-right: 5px;
}

.salary-amount {
  font-size: 1.25rem;
  font-weight: 900;
  color: #F5A623;
}

.salary-amount em {
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}

.salary-amount-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #7fe8d5;
}

.salary-amount-sub em {
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  z-index: 2;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  font-family: inherit;
}

.btn-primary {
  background: #006B5B;
  color: #fff;
  border-color: #006B5B;
}

.btn-primary:hover {
  background: #004d41;
  border-color: #004d41;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,107,91,0.4);
}

.btn-orange {
  background: #F5A623;
  color: #fff;
  border-color: #F5A623;
}

.btn-orange:hover {
  background: #d98e10;
  border-color: #d98e10;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(245,166,35,0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.btn-jartic {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.75);
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

.btn-jartic:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.btn-jartic i {
  color: #F5A623;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ====================================
   APPEAL
   ==================================== */
.appeal {
  background: #003d32;
  padding: 56px 0;
}

.appeal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.appeal-item {
  text-align: center;
  color: #fff;
  padding: 32px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}

.appeal-item:hover {
  background: rgba(127,232,213,0.1);
  border-color: rgba(127,232,213,0.25);
  transform: translateY(-5px);
}

.appeal-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #F5A623, #c47f0a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: #fff;
}

.appeal-item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #7fe8d5;
}

.appeal-item p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ====================================
   GREETING
   ==================================== */
.greeting-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.greeting-img-wrap {
  flex-shrink: 0;
  text-align: center;
  width: 380px;
}

.greeting-photo {
  width: 380px;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,61,50,0.18);
  display: block;
}

.greeting-name-tag { margin-top: 14px; }

.greeting-text {
  flex: 1;
  min-width: 0;
}

.greeting-position {
  font-size: 0.78rem;
  color: #888;
}

.greeting-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #003d32;
}

.greeting-text h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #003d32;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 3px solid #006B5B;
  line-height: 1.5;
}

.greeting-text p {
  margin-bottom: 16px;
  color: #444;
  line-height: 1.9;
}

.greeting-sign {
  margin-top: 28px;
  font-weight: 700;
  color: #003d32;
  font-size: 0.95rem;
  line-height: 1.9;
  padding-top: 20px;
  border-top: 1px solid #dde8e5;
}

/* ====================================
   COMPANY TABLE
   ==================================== */
.about-table-wrap { overflow-x: auto; }

.about-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.about-table tr {
  border-bottom: 1px solid #eaf0ee;
  transition: background 0.2s;
}

.about-table tr:last-child { border-bottom: none; }
.about-table tr:hover { background: #f4f9f7; }

.about-table th {
  width: 230px;
  background: #f0f7f5;
  color: #003d32;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 18px 24px;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}

.about-table th i {
  color: #006B5B;
  margin-right: 8px;
}

.about-table td {
  padding: 18px 24px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ====================================
   HISTORY / TIMELINE
   ==================================== */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #006B5B, #7fe8d5);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 22px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0,107,91,0.14);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: #006B5B;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,107,91,0.3);
}

.timeline-year {
  flex-shrink: 0;
  min-width: 110px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #006B5B;
  background: rgba(0,107,91,0.08);
  padding: 6px 12px;
  border-radius: 20px;
  text-align: center;
  align-self: flex-start;
  margin-top: 2px;
}

.timeline-content {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  align-self: center;
}

.timeline-ad {
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
  margin-left: 4px;
}

.timeline-event {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
}

.timeline-event i {
  font-size: 0.72rem;
  color: #006B5B;
  margin-right: 4px;
}

.timeline-event a {
  color: #006B5B;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.timeline-event a:hover {
  color: #F5A623;
}


/* ====================================
   RECRUIT / JOB CARD
   ==================================== */
.job-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px rgba(0,61,50,0.12);
  overflow: hidden;
  border: 2px solid #e0eeea;
  margin-bottom: 48px;
}

.job-card-header {
  background: linear-gradient(135deg, #003d32, #006B5B);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.job-title-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.job-badge {
  background: #F5A623;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.badge-sub {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}

.job-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
}

.job-title i {
  color: #F5A623;
  margin-right: 10px;
}

.job-salary-highlight { text-align: right; }

.salary-tag {
  display: block;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.6);
}

.salary-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: #F5A623;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
}

.recruit-table tr { border-bottom: 1px solid #eaf0ee; }

.recruit-table th {
  width: 210px;
  background: #f4f9f7;
  color: #003d32;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.recruit-table th i {
  color: #006B5B;
  margin-right: 8px;
}

.recruit-table td {
  padding: 20px 24px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.9;
}

.recruit-table strong {
  color: #F5A623;
  font-size: 1.05rem;
}

.note {
  display: block;
  font-size: 0.83rem;
  color: #888;
  margin-top: 4px;
}

.job-apply-btn {
  padding: 30px 36px;
  background: #f4f9f7;
  text-align: center;
  border-top: 2px solid #e0eeea;
}

/* 女性ドライバーセクション */
.women-section {
  display: flex;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #003d32, #006B5B);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 44px rgba(0,61,50,0.15);
}

.women-img {
  flex-shrink: 0;
  width: 360px;
}

.women-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
}

.women-text {
  padding: 36px 36px 36px 0;
  color: #fff;
}

.women-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5A623;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.women-text h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.5;
  color: #fff;
}

.women-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  line-height: 1.8;
}

.women-points {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.women-points li {
  font-size: 0.9rem;
  color: #7fe8d5;
  font-weight: 600;
}

.women-points li i {
  color: #F5A623;
  margin-right: 8px;
}

/* ====================================
   DRIVER VOICE（ドライバーの声）
   ==================================== */
.voice-section {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 2px dashed rgba(0,107,91,0.2);
}

/* ドライバーの声 ヒーロー画像 */
.voice-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.voice-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.voice-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,30,24,0.78) 0%,
    rgba(0,50,40,0.55) 60%,
    rgba(0,30,24,0.3) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
}

.voice-hero-overlay .section-label {
  color: #7fe8d5;
  background: rgba(127,232,213,0.15);
  border-color: rgba(127,232,213,0.35);
  align-self: flex-start;
  margin-bottom: 14px;
}

.voice-hero-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.voice-hero-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}

.voice-header {
  text-align: center;
  margin-bottom: 36px;
}

.voice-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #003d32;
  margin-top: 12px;
  margin-bottom: 8px;
}

.voice-sub {
  font-size: 0.92rem;
  color: #666;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.voice-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,61,50,0.1);
  border: 1px solid #d8eeea;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,107,91,0.18);
}

/* 写真エリア */
.voice-img-wrap {
  position: relative;
  background: linear-gradient(135deg, #e0f0ec, #c6e0d9);
  padding: 28px 20px 16px;
  text-align: center;
}

.voice-img-placeholder {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #b0d4cc, #88bdb2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 2.2rem;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,107,91,0.2);
}

/* 実写真が入ったときのスタイル */
.voice-img-wrap img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,107,91,0.2);
  display: block;
  margin: 0 auto 10px;
}

.voice-name-tag {
  display: flex;
  justify-content: center;
}

.voice-driver-label {
  display: inline-block;
  background: #006B5B;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* コメントエリア */
.voice-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.voice-quote-icon {
  color: #006B5B;
  font-size: 1.2rem;
  opacity: 0.35;
  margin-bottom: 8px;
}

.voice-comment {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.85;
  flex: 1;
  font-style: italic;
  min-height: 72px;
}

.voice-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #d4e8e3;
}

.voice-tag {
  font-size: 0.75rem;
  color: #006B5B;
  background: rgba(0,107,91,0.08);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* ====================================
   PHOTO GALLERY
   ==================================== */
.gallery-section {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 2px dashed rgba(0,107,91,0.2);
}

.gallery-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: block;
  width: 100%;
}

.gallery-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  vertical-align: bottom;
}

.gallery-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0,30,24,0.78) 0%,
    rgba(0,50,40,0.55) 60%,
    rgba(0,30,24,0.3) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  z-index: 1;
}

.gallery-hero-overlay .section-label {
  color: #7fe8d5;
  background: rgba(127,232,213,0.15);
  border-color: rgba(127,232,213,0.35);
  align-self: flex-start;
  margin-bottom: 14px;
}

.gallery-hero-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.gallery-hero-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,61,50,0.1);
  border: 1px solid #d8eeea;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,107,91,0.2);
}

.gallery-img-wrap {
  overflow: hidden;
  flex: 1;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 12px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #006B5B;
  background: rgba(0,107,91,0.05);
  border-top: 1px solid #d8eeea;
  text-align: center;
}

.gallery-caption i {
  margin-right: 5px;
  color: #F5A623;
}

/* ====================================
   WORKPLACE
   ==================================== */
.workplace-visual {
  margin-bottom: 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  position: relative;
}

.workplace-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 40%;
}

.workplace-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 10px 20px;
  text-align: center;
}

.workplace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.workplace-item {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 22px rgba(0,0,0,0.07);
  border-top: 4px solid #006B5B;
  transition: transform 0.3s, box-shadow 0.3s;
}

.workplace-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 36px rgba(0,107,91,0.15);
}

.wp-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #003d32, #006B5B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  color: #F5A623;
}

.workplace-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #003d32;
  margin-bottom: 12px;
}

.workplace-item p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
}

/* ====================================
   ACCESS
   ==================================== */
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.access-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.09);
}

.access-card-wide {
  grid-column: 1 / -1;
}

.access-card-header {
  background: linear-gradient(135deg, #003d32, #006B5B);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.access-badge {
  font-size: 0.77rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.access-badge.hq      { background: #F5A623; color: #fff; }
.access-badge.branch  { background: #2ecc71; color: #fff; }
.access-badge.sendai  { background: #3498db; color: #fff; }

.access-card-header h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.access-info {
  padding: 24px 28px 20px;
}

.access-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.access-info p i {
  color: #006B5B;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.access-inner-flex {
  display: flex;
  gap: 0;
}

.access-inner-flex .access-info {
  flex: 1;
  min-width: 260px;
}

.access-inner-flex .map-wide {
  flex: 1.6;
  height: 250px;
  min-height: 220px;
}

.map-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #e8f4f1 0%, #d0ebe4 100%);
  border: 2px dashed #a0cfc7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
}

.map-placeholder:hover {
  background: linear-gradient(135deg, #d4ecec 0%, #b8ddd4 100%);
  border-color: #006B5B;
}

.map-placeholder i {
  font-size: 2.8rem;
  color: #006B5B;
}

.map-placeholder-name {
  font-size: 1rem;
  font-weight: 700;
  color: #003d32;
  margin: 0;
}

.map-placeholder-addr {
  font-size: 0.82rem;
  color: #555;
  margin: 0;
}

.map-placeholder-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #006B5B;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
}

.map-placeholder:hover .map-placeholder-btn {
  background: #004d41;
}

/* PC：iframe表示 / スマホ：画像表示 */
.map-img-sp {
  display: none !important;
  width: 100%;
}

.map-img-sp img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .map-pc { display: none !important; }
  .map-img-sp { display: block !important; }
}

.map-link-wrap {
  padding: 10px 16px;
  background: #f4f9f7;
  border-top: 1px solid #e0eeea;
  text-align: right;
}

.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #006B5B;
  transition: color 0.2s;
}

.map-link-btn:hover {
  color: #004d41;
}

.map-link-btn i {
  font-size: 0.75rem;
}

/* ====================================
   CONTACT
   ==================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.contact-direct {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
}

.contact-direct h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #7fe8d5;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-office {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-office:first-child { padding-top: 0; border-top: none; }

.office-label {
  display: inline-block;
  font-size: 0.77rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.office-label.hq     { background: #F5A623; color: #fff; }
.office-label.branch { background: #2ecc71; color: #fff; }

.office-detail p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
  line-height: 1.65;
}

.tel-num a {
  font-size: 1.45rem;
  font-weight: 700;
  color: #F5A623;
  letter-spacing: 0.03em;
}

.mail-addr a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  word-break: break-all;
}

.contact-person i,
.office-hours i { color: #F5A623; margin-right: 6px; }

.contact-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 16px;
  background: rgba(127,232,213,0.08);
  border-radius: 10px;
  border: 1px solid rgba(127,232,213,0.2);
}

.contact-note i {
  color: #7fe8d5;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-note p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* フォーム */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 38px;
}

.contact-form-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003d32;
  margin-bottom: 26px;
}

.contact-form-wrap h3 i {
  color: #006B5B;
  margin-right: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 7px;
}

.required {
  background: #e74c3c;
  color: #fff;
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d4e6e0;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  color: #333;
  background: #f8fcfb;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #006B5B;
  box-shadow: 0 0 0 4px rgba(0,107,91,0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  cursor: pointer;
  accent-color: #006B5B;
}

.form-note {
  text-align: center;
  font-size: 0.77rem;
  color: #aaa;
  margin-top: 12px;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: #001a14;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-logo-img {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  flex-shrink: 0;
}

.footer-company-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  padding-top: 6px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: #7fe8d5; }

.footer-offices {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}

.footer-office {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.footer-office strong {
  display: block;
  color: #7fe8d5;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.footer-office a { color: rgba(255,255,255,0.55); }
.footer-office a:hover { color: #7fe8d5; }

.footer-copy {
  text-align: center;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ====================================
   PAGE TOP BUTTON
   ==================================== */
.page-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 52px; height: 52px;
  background: #006B5B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(0,107,91,0.5);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}

.page-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.page-top:hover {
  background: #004d41;
  color: #fff;
  transform: translateY(-4px);
}

/* ====================================
   FORM STEPS（3ステップUI）
   ==================================== */

/* ステップインジケーター */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e0eeea;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.form-step.active { opacity: 1; }
.form-step.done   { opacity: 0.7; }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.form-step.active .step-num { background: #006B5B; }
.form-step.done   .step-num {
  background: #006B5B;
  position: relative;
}
.form-step.done .step-num::after {
  content: '✓';
  position: absolute;
  font-size: 0.85rem;
}
.form-step.done .step-num { font-size: 0; }

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
}

.form-step.active .step-label { color: #006B5B; }

.step-line {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: #d4e8e0;
  margin: 0 6px;
  margin-bottom: 18px;
}

/* 確認画面テーブル */
.confirm-lead {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(0,107,91,0.06);
  border-radius: 8px;
  border-left: 4px solid #006B5B;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}

.confirm-table tr {
  border-bottom: 1px solid #eaf0ee;
}

.confirm-table tr:last-child { border-bottom: none; }

.confirm-table th {
  width: 130px;
  background: #f0f7f5;
  color: #003d32;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.confirm-table td {
  padding: 14px 18px;
  color: #333;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* 確認ボタン群 */
.confirm-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-back {
  background: #fff;
  color: #555;
  border: 2px solid #ccc;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-back:hover {
  border-color: #888;
  color: #333;
  background: #f5f5f5;
}

/* エラー表示ボックス */
.form-error-box {
  background: #fff0f0;
  border: 2px solid #e74c3c;
  border-radius: 10px;
  padding: 14px 18px;
  color: #c0392b;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.85;
  margin-bottom: 16px;
}

.form-error-box i { margin-right: 8px; }

/* 完了画面 */
.complete-box {
  text-align: center;
  padding: 20px 10px 10px;
}

.complete-icon {
  font-size: 4rem;
  color: #006B5B;
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.complete-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #003d32;
  margin-bottom: 16px;
}

.complete-msg {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 28px;
}

.complete-contact {
  background: #f4f9f7;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
  border: 1px solid #d0e8e0;
}

.complete-contact p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
}

.complete-contact p i { color: #006B5B; margin-right: 6px; }

.complete-tel {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #006B5B;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.complete-hours {
  font-size: 0.8rem;
  color: #999;
}

/* ====================================
   ANIMATIONS
   ==================================== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
  .appeal-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap       { grid-template-columns: 1fr; }
  .contact-direct     { order: 2; }
  .contact-form-wrap  { order: 1; }
  .footer-inner       { grid-template-columns: 1fr; gap: 28px; }
  .footer-offices     { text-align: left; }
  .access-inner-flex  { flex-direction: column; }
  .access-inner-flex .map-wide { width: 100%; flex: none; }
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: fixed;
    top: 70px; left: 0;
    width: 100%;
    background: #003d32;
    padding: 20px 16px 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  }
  .nav.open    { display: block; }
  .nav-list    { flex-direction: column; gap: 4px; }
  .nav-link    { display: block; padding: 12px 16px; font-size: 1rem; }
  .nav-toggle  { display: flex; }

  .hero-title       { font-size: 2.2rem; }
  .greeting-inner   { flex-direction: column; align-items: center; }
  .greeting-img-wrap { width: 100%; }
  .greeting-photo    { width: 100%; height: 220px; border-radius: 12px; }
  .voice-hero-overlay { padding: 0 28px; }
  .voice-hero-title { font-size: 1.5rem; }
  .gallery-hero-overlay { padding: 0 28px; }
  .gallery-hero-title { font-size: 1.5rem; }
  .gallery-hero-img   { height: 220px; object-position: center 25%; }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
  .access-grid      { grid-template-columns: 1fr; }
  .access-card-wide { grid-column: auto; }
  .workplace-grid   { grid-template-columns: 1fr; }
  .women-section    { flex-direction: column; }
  .women-img        { width: 100%; }
  .women-img img    { height: 240px; }
  .women-text       { padding: 28px 28px; }
  .voice-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section-pad  { padding: 64px 0; }
  .section-title{ font-size: 1.7rem; }

  .hero-content { left: 20px; bottom: 60px; max-width: calc(100% - 40px); width: calc(100% - 40px); }
  .hero-title   { white-space: normal; font-size: 1.75rem; }
  .hero-title        { font-size: 1.75rem; }
  .hero-salary       { padding: 14px 22px; flex-direction: column; gap: 10px; }
  .salary-amount     { font-size: 1.6rem; }
  .hero-btns         { flex-direction: column; align-items: flex-start; }

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

  .job-card-header   { flex-direction: column; align-items: flex-start; }
  .job-salary-highlight { text-align: left; }

  .recruit-table     { display: block; overflow-x: auto; }
  .recruit-table th  { width: 120px; font-size: 0.82rem; padding: 14px 14px; white-space: normal; }
  .recruit-table td  { padding: 14px 14px; font-size: 0.88rem; }

  .about-table th    { width: 130px; font-size: 0.82rem; padding: 14px 14px; white-space: normal; }
  .about-table td    { padding: 14px 14px; font-size: 0.88rem; }

  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .contact-direct    { padding: 24px 18px; }

  .timeline          { padding-left: 30px; }
  .timeline-item     { flex-direction: column; gap: 10px; padding: 18px 20px; }

  .workplace-img     { height: 240px; }
  .job-apply-btn     { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .appeal-grid { grid-template-columns: 1fr; }
  .hero-title  { font-size: 1.5rem; }
  .voice-grid        { grid-template-columns: 1fr; }
  .gallery-grid       { grid-template-columns: 1fr; }
  .gallery-hero-img   { height: 180px; }
  .gallery-hero-title { font-size: 1.3rem; }
  .gallery-hero-overlay { padding: 0 20px; }
}
