/* =====================================================
   style-hs.css — 高校生採用LP スタイルシート
   大信トラスト株式会社
   デザイン：明るく・白・カラフル・やわらかい
   ===================================================== */

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

:root {
  --clr-line:    #06C755;   /* LINE グリーン */
  --clr-green:   #06C755;
  --clr-green-d: #049040;
  --clr-blue:    #3B82F6;
  --clr-yellow:  #FBBF24;
  --clr-orange:  #F97316;
  --clr-pink:    #EC4899;
  --clr-purple:  #8B5CF6;
  --clr-teal:    #14B8A6;

  --clr-bg:      #FFFFFF;
  --clr-bg-soft: #F8FAFF;
  --clr-bg-alt:  #F0FDF4;
  --clr-text:    #1E293B;
  --clr-text-s:  #64748B;
  --clr-border:  #E2E8F0;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.12);

  --ff-base:     'Noto Sans JP', sans-serif;
  --ff-accent:   'Nunito', 'Noto Sans JP', sans-serif;

  --nav-h:       64px;
  --fixed-line-h: 72px;
}

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

body {
  font-family: var(--ff-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- スクロールアニメーション ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- セクション共通 ---------- */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--clr-green);
  background: var(--clr-bg-alt);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--clr-text);
  letter-spacing: -.01em;
}

.section-desc {
  margin-top: 12px;
  color: var(--clr-text-s);
  font-size: .95rem;
  line-height: 1.8;
}

/* =====================================================
   ナビゲーション
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow .3s;
}
.nav.is-scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 24px;
}

.nav__logo-img {
  height: 36px;
  width: auto;
}

.nav__line-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-green);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 99px;
  transition: background .2s, transform .2s;
}
.nav__line-btn i { font-size: 1.1rem; }
.nav__line-btn:hover {
  background: var(--clr-green-d);
  transform: translateY(-1px);
}

/* =====================================================
   ヒーロー
   ===================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: linear-gradient(145deg, #EEF9FF 0%, #F0FDF4 40%, #FFF9EC 100%);
}

/* 背景の丸いブロブ */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,199,85,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.10) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--clr-green-d);
  background: rgba(6,199,85,.12);
  border: 1.5px solid rgba(6,199,85,.3);
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 20px;
  letter-spacing: .03em;
}

.hero__title {
  font-family: var(--ff-accent);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--clr-text);
  margin-bottom: 20px;
}
.hero__title-line1 { display: block; }
.hero__title-line2 {
  display: block;
  background: linear-gradient(135deg, var(--clr-green) 0%, var(--clr-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--clr-text-s);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--clr-text);
  background: #fff;
  border: 1.5px solid var(--clr-border);
  padding: 8px 18px;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.hero__tag i {
  font-size: .9rem;
  color: var(--clr-green);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-green);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 99px;
  box-shadow: 0 6px 24px rgba(6,199,85,.40);
  transition: background .2s, transform .2s, box-shadow .2s;
  letter-spacing: .02em;
}
.hero__cta i { font-size: 1.4rem; }
.hero__cta:hover {
  background: var(--clr-green-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(6,199,85,.50);
}

.hero__cta-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .8rem;
  color: var(--clr-text-s);
}
.hero__cta-note i { color: var(--clr-blue); }

/* スクロール矢印 */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-s);
  font-size: .65rem;
  letter-spacing: .12em;
  font-family: var(--ff-accent);
  font-weight: 700;
  z-index: 1;
}
.hero__scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-text-s), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* =====================================================
   4つの安心ポイント
   ===================================================== */
.points { background: var(--clr-bg); }

.points__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.point-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.point-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.point-card:nth-child(1) { border-top: 4px solid var(--clr-green); }
.point-card:nth-child(2) { border-top: 4px solid var(--clr-blue); }
.point-card:nth-child(3) { border-top: 4px solid var(--clr-yellow); }
.point-card:nth-child(4) { border-top: 4px solid var(--clr-orange); }

/* アイコン共通：グラデーション円形バッジ */
.point-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
}
.point-card__icon--green {
  background: linear-gradient(135deg, #d1fae5, #6ee7b7);
  color: #059669;
  box-shadow: 0 4px 16px rgba(6,199,85,.25);
}
.point-card__icon--blue {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
  color: #2563EB;
  box-shadow: 0 4px 16px rgba(59,130,246,.25);
}
.point-card__icon--yellow {
  background: linear-gradient(135deg, #fef9c3, #fde047);
  color: #B45309;
  box-shadow: 0 4px 16px rgba(251,191,36,.30);
}
.point-card__icon--orange {
  background: linear-gradient(135deg, #ffedd5, #fdba74);
  color: #C2410C;
  box-shadow: 0 4px 16px rgba(249,115,22,.25);
}

.point-card__title {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--clr-text);
  line-height: 1.4;
}

.point-card__text {
  font-size: .875rem;
  color: var(--clr-text-s);
  line-height: 1.7;
}

.stat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #d1fae5, #6ee7b7);
  color: #059669;
  box-shadow: 0 4px 14px rgba(6,199,85,.20);
}

/* =====================================================
   数字で見る安心（STATS）
   ===================================================== */
.stats {
  background: linear-gradient(135deg, #F0FDF4 0%, #EEF9FF 100%);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(255,255,255,.8);
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card__num {
  font-family: var(--ff-accent);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--clr-green);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.stat-card__unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-s);
}

.stat-card__label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.stat-card__sub {
  font-size: .72rem;
  color: var(--clr-text-s);
  line-height: 1.5;
}

/* =====================================================
   どんな仕事？
   ===================================================== */
.job { background: #fff; }

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

.job__card {
  background: var(--clr-bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--clr-border);
  transition: transform .25s, box-shadow .25s;
}
.job__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* job カードアイコン */
.job__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.job__card-icon--blue   { background: linear-gradient(135deg,#dbeafe,#93c5fd); color:#2563EB; box-shadow:0 4px 14px rgba(59,130,246,.25); }
.job__card-icon--purple { background: linear-gradient(135deg,#ede9fe,#c4b5fd); color:#7C3AED; box-shadow:0 4px 14px rgba(139,92,246,.25); }
.job__card-icon--teal   { background: linear-gradient(135deg,#ccfbf1,#5eead4); color:#0F766E; box-shadow:0 4px 14px rgba(20,184,166,.25); }
.job__card-icon--green  { background: linear-gradient(135deg,#d1fae5,#6ee7b7); color:#059669; box-shadow:0 4px 14px rgba(6,199,85,.25); }

.job__card-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.job__card-text {
  font-size: .875rem;
  color: var(--clr-text-s);
  line-height: 1.8;
  margin-bottom: 16px;
}

.job__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
}
.job__card-tag--blue   { color:#2563EB; background:rgba(59,130,246,.12); }
.job__card-tag--purple { color:#7C3AED; background:rgba(139,92,246,.12); }
.job__card-tag--teal   { color:#0F766E; background:rgba(20,184,166,.12); }
.job__card-tag--green  { color:#059669; background:rgba(6,199,85,.12); }

.job__note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: .875rem;
  color: var(--clr-text);
  line-height: 1.7;
}
.job__note i {
  font-size: 1.4rem;
  color: #D97706;
  flex-shrink: 0;
}

/* =====================================================
   1日の流れ（タイムライン）
   ===================================================== */
/* タイムラインアイコン */
.tl-icon {
  font-size: .95rem;
  margin-right: 6px;
  vertical-align: -.05em;
}
.tl-icon--green  { color: var(--clr-green); }
.tl-icon--orange { color: var(--clr-orange); }
.tl-icon--yellow { color: var(--clr-yellow); }
.tl-icon--blue   { color: var(--clr-blue); }
.tl-icon--purple { color: var(--clr-purple); }

.timeline { background: var(--clr-bg-soft); }

.timeline__list {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
}

/* 縦線 */
.timeline__list::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-green), var(--clr-blue));
  border-radius: 99px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 80px 20px 1fr;
  gap: 0 20px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__time {
  font-family: var(--ff-accent);
  font-size: .9rem;
  font-weight: 900;
  color: var(--clr-text-s);
  text-align: right;
  padding-top: 4px;
  padding-right: 0;
  letter-spacing: .02em;
}

.timeline__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--clr-green);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(6,199,85,.12);
}
.timeline__dot--break {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}
.timeline__dot--end {
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12);
  background: var(--clr-blue);
}

.timeline__content {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1.5px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.timeline__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--clr-text);
}

.timeline__text {
  font-size: .83rem;
  color: var(--clr-text-s);
  line-height: 1.7;
  margin: 0;
}

/* =====================================================
   先輩の声
   ===================================================== */
.voice { background: #fff; }
/* voice アバター色分け */
.voice__avatar--pink  { background: linear-gradient(135deg,#fce7f3,#f9a8d4); color:#BE185D; border-color: #fbcfe8; }
.voice__avatar--blue  { background: linear-gradient(135deg,#dbeafe,#93c5fd); color:#1D4ED8; border-color: #bfdbfe; }
.voice__avatar--green { background: linear-gradient(135deg,#d1fae5,#6ee7b7); color:#065F46; border-color: #a7f3d0; }

.voice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 20px;
}

.voice__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice__bubble {
  background: var(--clr-bg-soft);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
  padding: 24px;
  font-size: .9rem;
  color: var(--clr-text);
  line-height: 1.8;
  flex: 1;
  position: relative;
}
.voice__bubble::after {
  content: '"';
  position: absolute;
  bottom: -10px; left: 20px;
  font-size: 2rem;
  color: var(--clr-green);
  line-height: 1;
  font-family: serif;
}

.voice__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
  margin-top: 4px;
}

.voice__avatar {
  font-size: 1.4rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-border);
  flex-shrink: 0;
  background: var(--clr-bg-alt);
  color: var(--clr-text-s);
}

.voice__name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--clr-text);
}
.voice__meta {
  font-size: .78rem;
  color: var(--clr-text-s);
  margin-top: 2px;
}

.voice__note {
  text-align: center;
  font-size: .78rem;
  color: var(--clr-text-s);
  margin-top: 12px;
}

/* =====================================================
   募集要項
   ===================================================== */
/* recruit カードアイコン */
.recruit__card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
}
.recruit__card-icon--green  { background: linear-gradient(135deg,#d1fae5,#6ee7b7); color:#059669; box-shadow:0 4px 14px rgba(6,199,85,.20); }
.recruit__card-icon--blue   { background: linear-gradient(135deg,#dbeafe,#93c5fd); color:#2563EB; box-shadow:0 4px 14px rgba(59,130,246,.20); }
.recruit__card-icon--orange { background: linear-gradient(135deg,#ffedd5,#fdba74); color:#C2410C; box-shadow:0 4px 14px rgba(249,115,22,.20); }

.recruit { background: var(--clr-bg-soft); }

.recruit__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.recruit__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

/* .recruit__card-icon はアイコンバッジとして上で定義 */
.recruit__card-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--clr-text-s);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.recruit__card-value {
  font-family: var(--ff-accent);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.recruit__card-value span {
  font-size: .8rem;
  font-weight: 400;
  color: var(--clr-text-s);
}
.recruit__card-note {
  font-size: .75rem;
  color: var(--clr-text-s);
}

.recruit__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.recruit__table th,
.recruit__table td {
  padding: 16px 20px;
  text-align: left;
  font-size: .875rem;
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top;
  line-height: 1.7;
}
.recruit__table tr:last-child th,
.recruit__table tr:last-child td { border-bottom: none; }
.recruit__table th {
  background: var(--clr-bg-soft);
  font-weight: 700;
  color: var(--clr-text-s);
  width: 120px;
  white-space: nowrap;
}

.recruit__ok {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-green-d);
  background: var(--clr-bg-alt);
  padding: 2px 10px;
  border-radius: 4px;
  margin-top: 4px;
}

/* =====================================================
   選考フロー
   ===================================================== */
/* flow ステップアイコン */
.flow__step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}
.flow__step-icon--green  { background: linear-gradient(135deg,#d1fae5,#6ee7b7); color:#059669; box-shadow:0 6px 20px rgba(6,199,85,.30); }
.flow__step-icon--blue   { background: linear-gradient(135deg,#dbeafe,#93c5fd); color:#2563EB; box-shadow:0 6px 20px rgba(59,130,246,.30); }
.flow__step-icon--orange { background: linear-gradient(135deg,#ffedd5,#fdba74); color:#C2410C; box-shadow:0 6px 20px rgba(249,115,22,.30); }
.flow {
  background: linear-gradient(135deg, #EEF9FF 0%, #F0FDF4 100%);
}

.flow__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.flow__step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  width: 240px;
  border: 1.5px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.flow__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.flow__step-num {
  font-family: var(--ff-accent);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-green);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .3;
}

.flow__step-title {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--clr-text);
}

.flow__step-text {
  font-size: .8rem;
  color: var(--clr-text-s);
  line-height: 1.7;
}

.flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-green);
  padding: 0 8px;
  flex-shrink: 0;
  opacity: .6;
}

/* =====================================================
   エントリー
   ===================================================== */
.entry {
  background: linear-gradient(145deg, #F0FDF4 0%, #EEF9FF 100%);
  padding: 100px 0;
}

.entry__inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.entry__line-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-green);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 22px 48px;
  border-radius: 99px;
  box-shadow: 0 8px 32px rgba(6,199,85,.40);
  transition: background .2s, transform .2s, box-shadow .2s;
  margin: 32px 0 24px;
  letter-spacing: .02em;
}
.entry__line-btn i { font-size: 1.8rem; }
.entry__line-btn:hover {
  background: var(--clr-green-d);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(6,199,85,.50);
}

.entry__reassure {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  border: 1.5px solid var(--clr-border);
  margin-bottom: 32px;
}
.entry__reassure li {
  font-size: .875rem;
  font-weight: 700;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.entry__reassure li i {
  font-size: 1rem;
  color: var(--clr-green);
  flex-shrink: 0;
}

.entry__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--clr-text-s);
  font-size: .85rem;
}
.entry__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.entry__contact-item i { color: var(--clr-green); }
.entry__contact-item a {
  color: var(--clr-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================
   フッター
   ===================================================== */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,.8);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer__address,
.footer__copy {
  font-size: .78rem;
  text-align: center;
}

/* =====================================================
   固定 LINE ボタン
   ===================================================== */
.fixed-line {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 900;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 99px;
  box-shadow: 0 6px 28px rgba(6,199,85,.45);
  transition: background .2s, box-shadow .2s,
              transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s;
  opacity: 0;
  white-space: nowrap;
}
.fixed-line i { font-size: 1.3rem; }

.fixed-line.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.fixed-line:hover {
  background: var(--clr-green-d);
  box-shadow: 0 10px 36px rgba(6,199,85,.55);
}

/* =====================================================
   セクション写真ギャラリー（共通）
   ===================================================== */
.sec-photos {
  margin-top: 40px;
}
/* 写真が 1 枚以上あるときだけ上マージン確保 */
.sec-photos:empty { margin-top: 0; }

/* 横スクロールなし・ラッピンググリッド */
.sec-photos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

/* ヒーロー専用：画面幅ぴったりに広げる */
.sec-photos--hero {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  margin: 0;
  z-index: 0;
  pointer-events: none; /* ヒーローCTAを邪魔しない */
}
.sec-photos--hero .sec-photos__grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0;
}
.sec-photos--hero .sec-photo-item img {
  border-radius: 0;
  opacity: .35;
  filter: brightness(.7) saturate(.9);
}
.sec-photos--hero .sec-photo-item figcaption { display: none; }

/* 写真1枚アイテム */
.sec-photo-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--clr-bg-soft);
  box-shadow: var(--shadow-sm);
}
.sec-photo-item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
}
.sec-photo-item:hover img { transform: scale(1.04); }

.sec-photo-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
}

/* =====================================================
   レスポンシブ
   ===================================================== */

/* タブレット（〜 768px） */
@media (max-width: 768px) {
  section { padding: 64px 0; }

  .hero__title { font-size: clamp(2.6rem, 12vw, 4rem); }

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

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

  .job__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .flow__steps { gap: 16px; flex-direction: column; align-items: center; }
  .flow__arrow { transform: rotate(90deg); }
  .flow__step { width: 100%; max-width: 400px; }

  .timeline__list::before { left: 68px; }
  .timeline__item { grid-template-columns: 68px 20px 1fr; }
  .timeline__time { font-size: .8rem; }

  .recruit__table th { width: 90px; }

  .entry__line-btn { font-size: 1rem; padding: 18px 32px; }

  .voice__bubble::after { display: none; }
}

/* スマホ（〜 480px） */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }

  .nav__line-btn { font-size: .78rem; padding: 8px 14px; }

  .hero__title { font-size: clamp(2.4rem, 13vw, 3.2rem); }
  .hero__cta { font-size: .95rem; padding: 16px 28px; }

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

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card__num { font-size: 2rem; }

  .job__grid { grid-template-columns: 1fr; }
  .job__card { padding: 24px 20px; }

  .timeline__list::before { left: 56px; }
  .timeline__item { grid-template-columns: 56px 20px 1fr; gap: 0 12px; }
  .timeline__time { font-size: .72rem; }

  .voice__grid { grid-template-columns: 1fr; }
  .flow__steps { flex-direction: column; align-items: center; }
  .flow__arrow { transform: rotate(90deg); }
  .flow__step { width: 100%; max-width: 340px; }

  .recruit__cards { grid-template-columns: 1fr; }
  .recruit__table { font-size: .8rem; }
  .recruit__table th,
  .recruit__table td { padding: 12px 14px; }
  .recruit__table th { width: 72px; }

  .entry__line-btn { font-size: .95rem; padding: 16px 24px; }

  .fixed-line { font-size: .88rem; padding: 14px 24px; }

  .section-title { font-size: clamp(1.3rem, 6vw, 1.8rem); }
}

/* =====================================================
   アクセシビリティ・プリント非表示
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal-up { opacity: 1; transform: none; }
}
