/* ========================================
   煌 -KIRAMEKI- サイト - スタイルシート
   カラー: #E8302A (赤), #F5F5F0 (薄グレー), #1A1A1A (黒)
   ======================================== */

/* ---- リセット & 基本 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E8302A;
  --red-dark: #c0251f;
  --red-light: #fde8e7;
  --blue: #4A90D9;
  --blue-light: #EBF4FF;
  --gray-bg: #F5F5F0;
  --light-bg: #FFF9F9;
  --text: #1A1A1A;
  --text-muted: #666;
  --border: #E0E0E0;
  --white: #fff;
  --font: 'Noto Sans JP', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- セクション共通 ---- */
.section { padding: 80px 0; }
.section--gray { background: var(--gray-bg); }
.section--light { background: var(--light-bg); }

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.section-label--center { text-align: center; }

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
}
.section-title--center { text-align: center; }
.section-title--inline { display: inline; }

.section-header { margin-bottom: 40px; }

.text-red { color: var(--red); }

.text-highlight {
  background: var(--red);
  color: var(--white);
  padding: 2px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* ---- ボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,48,42,0.35); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--white); transform: translateY(-2px); }

.btn--outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline-red:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

/* ========================================
   保有資格・認定
   ======================================== */
.certifications__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.certifications__card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}
.certifications__card:hover { 
  transform: translateY(-5px); 
}

.certifications__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.certifications__list {
  list-style: none;
  padding: 0;
}
.certifications__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.certifications__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}
.certifications__list li small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .certifications__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header__logo img { height: 44px; width: auto; }

.header__nav { flex: 1; }
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-item {
  position: relative;
}

.header__nav-item > a,
.header__nav-item > span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.header__nav-item > a:hover,
.header__nav-item > span:hover {
  background: var(--gray-bg);
  color: var(--red);
}

/* ドロップダウン */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text);
  transition: background 0.15s;
}
.dropdown li a:hover { background: var(--gray-bg); color: var(--red); }

/* ヘッダー右上の問い合わせ導線（電話＋メール） */
.header__contact {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header__tel-num {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.02em;
}
.header__tel-num svg { width: 18px; height: 18px; }
.header__tel-hours {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.header__cta-btn {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s;
  white-space: nowrap;
}
.header__cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,48,42,0.3); }

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  padding: 16px 24px 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li a {
  display: block;
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 500;
}
.mobile-menu .mobile-cta {
  display: block;
  margin-top: 16px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
}

/* ========================================
   ヒーロー（メインビジュアル）
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 72px;
}

.hero__slider {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}

.hero__content {
  position: absolute;
  left: 6%;
  bottom: 15%;
  z-index: 2;
  color: var(--white);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__tag {
  background: var(--white);
  color: var(--text);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero__lead {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__social-good {
  position: absolute;
  left: 4%;
  top: 8%;
  z-index: 2;
  opacity: 0.7;
  pointer-events: none;
}
.hero__social-good-img {
  width: clamp(200px, 28vw, 380px);
  height: auto;
}

.hero__badge {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--white);
  text-align: right;
}
.hero__badge-label { font-size: 12px; font-weight: 500; display: block; }
.hero__badge-num {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  display: block;
  line-height: 1.1;
}
.hero__badge-num span { font-size: 0.5em; }

.hero__cta-card {
  position: absolute;
  right: 24px;
  bottom: 80px;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 280px;
  box-shadow: var(--shadow);
}
.hero__cta-note {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 6px;
}
.hero__cta-link {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
}
.hero__cta-link strong { color: var(--red); text-decoration: underline; }

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero__dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.3);
}

/* ========================================
   サービス概要
   ======================================== */
.about-service__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-service__img-wrap {
  position: relative;
}
.about-service__img--main {
  border-radius: 16px;
  width: 100%;
  max-width: 320px;
  height: 320px;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.about-service__img--sub {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.about-service__desc {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* 特徴ボックス（時給・CS検定など） */
.about-service__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 24px;
}

.about-service__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-bg);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}



.about-service__feature-item strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.about-service__feature-item br + strong {
  display: inline;
}

/* ========================================
   サテラボ
   ======================================== */
.satelab__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.satelab__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.satelab__catch {
  font-weight: 700;
  color: var(--red);
  font-size: 14px;
}

.satelab__circle-img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}


/* ========================================
   活躍事例（グリッド対応）
   ======================================== */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cases__grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.case-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gray-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 4px solid var(--white-bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.case-card__avatar img { width: 64px; height: 64px; }

.case-card__name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}
.case-card__name span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.case-card__text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.cases__cta { text-align: center; margin-top: 32px; }

/* ========================================
   求人情報
   ======================================== */
.jobs__sub {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}

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

@media (max-width: 768px) {
  .jobs__grid {
    grid-template-columns: 1fr;
  }
}


.job-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.job-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(232,48,42,0.1); }

.job-card__tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.job-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

/* 写真背景付きjob-card */
.job-card--has-img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 200px;
  border: none;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.job-card--has-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  z-index: 1;
}
.job-card--has-img .job-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 20px;
}
.job-card--has-img .job-card__tag {
  background: rgba(232,48,42,0.9);
  color: var(--white);
}
.job-card--has-img .job-card__title {
  color: var(--white);
  font-size: 14px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.jobs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.jobs__arrow--prev { left: -22px; }
.jobs__arrow--next { right: -22px; }
.jobs__arrow:hover { border-color: var(--red); color: var(--red); }

.jobs__cta { text-align: center; margin-top: 40px; }

/* ========================================
   ご利用方法
   ======================================== */
.flow__sub {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 14px;
}

.flow__steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 16px;
}

.flow__step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: var(--shadow);
}

.flow__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  margin: 0 auto 16px;
}

.flow__step-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.flow__step-img img { height: 72px; width: auto; }

.flow__step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

.flow__step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.flow__arrow {
  font-size: 32px;
  color: var(--red);
  flex-shrink: 0;
  align-self: center;
  font-weight: 900;
  padding-bottom: 60px;
  line-height: 1;
}

.flow__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ========================================
   利用者募集（リクルート）
   ======================================== */
.recruitment {
  background: var(--white);
}

.recruitment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 960px) {
  .recruitment__grid {
    grid-template-columns: 1fr;
  }
}

.recruitment__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.recruitment__card--transition { border-top: 5px solid var(--blue); }
.recruitment__card--type-a { border-top: 5px solid var(--red); }

.recruitment__type {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.recruitment__card--transition .recruitment__type { color: var(--blue); }
.recruitment__card--type-a .recruitment__type { color: var(--red); }

.recruitment__subtitle {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-bg);
}

.recruitment__list {
  margin-bottom: 24px;
  flex-grow: 1;
}
.recruitment__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.recruitment__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.recruitment__card--transition .recruitment__list li::before { color: var(--blue); }

.recruitment__group {
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 3px solid var(--border);
}
.recruitment__group-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.recruitment__data {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruitment__data-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.recruitment__data-label {
  font-weight: 700;
  color: var(--text-muted);
}

.recruitment__data-text {
  color: var(--text);
  font-weight: 500;
}

.recruitment__data-text small {
  display: block;
  font-size: 11px;
  margin-top: 2px;
  opacity: 0.8;
}

.recruitment__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--red);
  background: var(--red-light);
  padding: 10px 14px;
  border-radius: 6px;
}

/* ========================================
   お知らせ
   ======================================== */
.news__list { margin-bottom: 32px; }

.news__item { border-bottom: 1px solid var(--border); }
.news__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  transition: background 0.2s;
}
.news__link:hover { background: var(--gray-bg); }

.news__date {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 500;
}

.news__tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.news__text {
  font-size: 14px;
  font-weight: 500;
}

.news__cta { text-align: center; }

/* ========================================
   珊瑚保全プロジェクト
   ======================================== */
.satoumi__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.satoumi__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.satoumi__img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.satoumi__img {
  border-radius: 16px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.satoumi__img--sub {
  margin-top: 32px;
}

/* ========================================
   お問い合わせCTA
   ======================================== */
.contact { background: var(--white); }

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

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  line-height: 1.5;
}
.contact__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.contact__card--line { border-color: #06C755; color: #06C755; }
.contact__card--line:hover { background: #06C755; color: var(--white); }

.contact__card--mail { border-color: var(--red); color: var(--red); }
.contact__card--mail:hover { background: var(--red); color: var(--white); }

.contact__card--tel { border-color: var(--blue); color: var(--blue); }
.contact__card--tel:hover { background: var(--blue); color: var(--white); }

.contact__card--doc { border-color: #FF8C00; color: #FF8C00; }
.contact__card--doc:hover { background: #FF8C00; color: var(--white); }

.contact__icon { width: 40px; height: 40px; }

/* ========================================
   アクセス
   ======================================== */
.access { background: var(--bg-light); padding-bottom: 0; }

.access__map-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
}

.access__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .access__map-wrap {
    height: 300px;
    border-radius: 16px;
  }
}

/* ========================================
   フッター
   ======================================== */
.footer__top {
  background: var(--red);
  color: var(--white);
  padding: 60px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
}

/* ロゴは白背景前提のデザインのため、赤いフッター上では白の下地を敷いて視認性を確保 */
.footer__logo img {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.footer__tagline { font-size: 13px; opacity: 0.9; margin-bottom: 20px; }

/* フッター下部の連絡先 */
.footer__contact {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.9;
}
.footer__contact a { font-weight: 700; }
.footer__contact a:hover { text-decoration: underline; }
.footer__copy-bar {
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  background: #c0251f;
}

.footer__sns {
  display: flex;
  gap: 12px;
}
.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transition: background 0.2s;
}
.footer__sns-link:hover { background: rgba(255,255,255,0.4); }

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

.footer__nav-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__nav ul li a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer__nav ul li a:hover { opacity: 1; text-decoration: underline; }

.footer__contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer__contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.footer__contact-btn--line {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.footer__contact-btn--line:hover { background: rgba(255,255,255,0.35); }
.footer__contact-btn--consult {
  background: var(--white);
  color: var(--red);
}
.footer__contact-btn--consult:hover { background: var(--gray-bg); }

.footer__bottom {
  background: #b01e19;
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--white); }

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ========================================
   固定サイドバー
   ======================================== */
.fixed-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fixed-sidebar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  width: 56px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  border-radius: 8px 0 0 8px;
  transition: all 0.2s;
  writing-mode: vertical-rl;
  writing-mode: unset;
}

.fixed-sidebar__btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.fixed-sidebar__btn--line {
  background: #06C755;
  color: var(--white);
}
.fixed-sidebar__btn--line:hover { background: #05a847; }

.fixed-sidebar__btn--consult {
  background: var(--red);
  color: var(--white);
}
.fixed-sidebar__btn--consult:hover { background: var(--red-dark); }

/* ========================================
   下層ページ用ヒーロー（service-a / service-ikou）
   ======================================== */
.page-hero {
  position: relative;
  margin-top: 72px;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 56px 0;
}
.page-hero__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  opacity: 0.9;
}
.page-hero__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.page-hero__lead {
  margin-top: 14px;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 500;
  line-height: 1.8;
  max-width: 640px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* パンくず */
.breadcrumb {
  background: var(--gray-bg);
  padding: 10px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb a:hover { color: var(--red); text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }

/* ========================================
   トップ：3つの売り
   ======================================== */
.selling__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .selling__grid { grid-template-columns: 1fr; } }

.selling-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}
.selling-card:hover { transform: translateY(-5px); }
.selling-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 16px;
}
.selling-card__title {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 14px;
}
.selling-card__big {
  color: var(--red);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}
.selling-card__big small { font-size: 14px; font-weight: 700; }
.selling-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.selling-card__desc strong { color: var(--text); }
.selling__note {
  text-align: center;
  margin-top: 32px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
}
.selling__note span {
  background: var(--red-light);
  color: var(--red-dark);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
}

/* ========================================
   トップ：サービス紹介（A型 / 移行）＋ボタン
   ======================================== */
.service-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 768px) { .service-nav__grid { grid-template-columns: 1fr; } }

.service-nav-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-nav-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

.service-nav-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-nav-card__body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-nav-card__badge {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.service-nav-card--ikou .service-nav-card__badge { background: var(--blue); }
.service-nav-card__title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}
.service-nav-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-nav-card .btn { align-self: flex-start; }
.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover { background: #3a7bc0; border-color: #3a7bc0; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,144,217,0.35); }

/* ========================================
   情報テーブル（障害種別 / 利用料金）
   ======================================== */
.info-table-wrap { margin-top: 32px; overflow-x: auto; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 14px;
}
.info-table th, .info-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.info-table thead th {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}
.info-table tbody tr:nth-child(even) { background: var(--gray-bg); }
.info-table tbody th {
  font-weight: 700;
  color: var(--text);
  width: 40%;
}
.info-table .info-table__amount {
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
}
.info-table small { color: var(--text-muted); font-size: 12px; }
.table-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.table-highlight {
  margin-top: 20px;
  background: var(--red-light);
  color: var(--red-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

/* スコア公表ページ */
.score-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  line-height: 2;
  font-size: 15px;
}
.score-intro p { margin-bottom: 14px; }
.score-intro strong { color: var(--red); font-weight: 700; }
.score-subhead {
  max-width: 800px;
  margin: 44px auto 16px;
  font-size: 18px;
  font-weight: 700;
  padding-left: 14px;
  border-left: 5px solid var(--red);
  line-height: 1.5;
}
.score-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}
.score-table tbody th { width: 130px; white-space: nowrap; }
.score-table .score-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.2s;
}
.score-table .score-link:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232,48,42,0.3);
}
.score-link__icon { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.score-table-wrap + .table-note { max-width: 800px; margin-left: auto; margin-right: auto; }

/* 障害種別タグ */
.disability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.disability-tags li {
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

/* ========================================
   A型：特性に応じた仕事
   ======================================== */
.work-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.work-types__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .work-types__grid,
  .work-types__grid--3col {
    grid-template-columns: 1fr;
  }
}

.work-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.work-type-card__head {
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 8px;
}
.work-type-card__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.work-type-card__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.work-type-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}
.work-types__catch {
  text-align: center;
  margin-top: 32px;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 900;
  line-height: 1.6;
}

/* ========================================
   移行支援：定着率バッジ
   ======================================== */
.rate-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
  text-align: center;
  margin-top: 24px;
}
.rate-badge {
  position: relative;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff5a54, var(--red));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(232,48,42,0.4);
  flex-shrink: 0;
}
.rate-badge::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(255,255,255,0.6);
  border-radius: 50%;
}
.rate-badge__label { font-size: 15px; font-weight: 700; }
.rate-badge__num {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}
.rate-badge__num span { font-size: 32px; }
.rate-badge__plus { font-size: 16px; font-weight: 700; margin-top: 4px; }
.rate-hero__text { max-width: 420px; text-align: left; }
.rate-hero__text h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.5;
}
.rate-hero__text p { color: var(--text-muted); line-height: 1.9; }
@media (max-width: 600px) {
  .rate-hero__text { text-align: center; }
  .rate-badge { width: 190px; height: 190px; }
  .rate-badge__num { font-size: 60px; }
}

/* ========================================
   セクション末尾の共通CTA
   ======================================== */
.section-cta { text-align: center; margin-top: 44px; }
.section-cta .btn { margin: 6px; }

/* ========================================
   アニメーション
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__cta-btn { display: none; }
  .header__hamburger { display: flex; }
  .mobile-menu { display: block; }

  .about-service__inner,
  .satelab__inner,
  .satoumi__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-service__img--main { width: 240px; height: 240px; }
  .about-service__img--sub { width: 120px; height: 120px; }

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

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

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }

  .stats__grid { grid-template-columns: 1fr; }
  .stats__divider { width: 80%; height: 1px; margin: 0 auto; }

  .jobs__slide { min-width: calc(50% - 10px); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .header__inner { gap: 12px; }
  .header__tel-num { font-size: 17px; }
  .header__tel-hours { font-size: 10px; }

  .hero { height: 85vh; }
  .hero__content { left: 5%; right: 5%; }
  .hero__badge { display: none; }
  .hero__cta-card { right: 12px; bottom: 60px; max-width: 220px; }
  .hero__social-good { display: none; }

  .flow__steps { flex-direction: column; }
  .flow__arrow { display: none; }
  .flow__step { min-width: unset; width: 100%; }

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

  .footer__nav { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; align-items: flex-start; }
  .footer__bottom-links { gap: 12px; }

  .jobs__slide { min-width: 100%; }

  .fixed-sidebar { display: none; }
}

@media (max-width: 480px) {
  .header__logo img { height: 36px; }
  .header__tel-num { font-size: 15px; }
  .header__tel-num svg { width: 15px; height: 15px; }

  .hero__tags { gap: 8px; }
  .hero__tag { padding: 8px 16px; font-size: 16px; }
  .hero__cta-card { display: none; }

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

  .flow__cta { flex-direction: column; align-items: center; }
}
