/* ==========================================
   株式会社プラスモバイル 採用LP専用スタイル
   ========================================== */

:root {
  --rec-navy: #0F2547;
  --rec-navy-light: #F0F4FA;
  --rec-navy-sub: #1E3E6E;
  --rec-green: #1F8A5B;
  --rec-green-light: #EDF7F2;
  --rec-orange: #FF6A00;
  --rec-orange-hover: #E55F00;
  --rec-orange-light: #FFF3EA;
  --rec-gray-light: #F8F9FB;
  --rec-border: rgba(15, 37, 71, 0.08);
  
  /* プレミアムシャドウ (多重ドロップシャドウ) */
  --rec-shadow-sm: 0 2px 8px rgba(15, 37, 71, 0.04);
  --rec-shadow-md: 0 12px 30px -10px rgba(15, 37, 71, 0.08), 0 1px 3px rgba(15, 37, 71, 0.02);
  --rec-shadow-lg: 0 20px 45px -12px rgba(15, 37, 71, 0.12), 0 1px 3px rgba(15, 37, 71, 0.02);
  --rec-shadow-premium: 0 30px 60px -15px rgba(15, 37, 71, 0.15), 0 2px 10px rgba(15, 37, 71, 0.05);

  /* イージング */
  --rec-ease: cubic-bezier(0.25, 1, 0.5, 1);
  --rec-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   共通・基本スタイル & 装飾
   ========================================== */
.rec-main-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image: radial-gradient(rgba(15, 37, 71, 0.03) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
}

/* 背景用グラデーションボール (Blur Blobs) */
.rec-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  animation: recFloat 25s infinite alternate ease-in-out;
}
.rec-blob-1 {
  top: 5%;
  left: -12%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--rec-orange) 0%, transparent 80%);
}
.rec-blob-2 {
  top: 38%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--rec-navy) 0%, transparent 80%);
  animation-delay: -6s;
  animation-duration: 30s;
}
.rec-blob-3 {
  bottom: 8%;
  left: 8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--rec-green) 0%, transparent 80%);
  animation-delay: -12s;
}

@keyframes recFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.08); }
}

.rec-section {
  position: relative;
  z-index: 1;
  padding: 100px 0; /* ゆとりのある余白 */
  overflow: hidden;
}
.rec-section--bg {
  background-color: rgba(240, 244, 250, 0.4); /* グラスマフィズムベースに調和 */
  backdrop-filter: blur(5px);
}
.rec-section--warm {
  background-color: rgba(251, 248, 243, 0.5);
  backdrop-filter: blur(5px);
}

/* セクションタイトル */
.rec-title-wrap {
  text-align: center;
  margin-bottom: 56px;
}
.rec-title-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.rec-title-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: transform 0.3s;
}
.rec-title-wrap:hover .rec-title-dots span {
  transform: scale(1.3);
}
.rec-title-dots span:nth-child(1) { background-color: var(--rec-orange); }
.rec-title-dots span:nth-child(2) { background-color: var(--rec-navy); }
.rec-title-dots span:nth-child(3) { background-color: var(--rec-green); }
.rec-title-dots span:nth-child(4) { background-color: #E8A33D; }

.rec-title-eng {
  display: block;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--rec-orange);
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}
.rec-title-main {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--rec-navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.rec-title-main span.orange {
  color: var(--rec-orange);
}

.rec-lead-text {
  text-align: center;
  color: var(--rec-navy-sub);
  opacity: 0.85;
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 760px;
  margin: -24px auto 56px;
}

/* ボタン調整 */
.rec-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.rec-btn-navy {
  background-color: var(--rec-navy) !important;
  color: #fff !important;
  border: 1px solid var(--rec-navy) !important;
}
.rec-btn-navy:hover {
  background-color: var(--rec-navy-sub) !important;
  border-color: var(--rec-navy-sub) !important;
}
/* LINEカジュアル面談ボタン */
.rec-btn-line {
  background-color: #06C755 !important;
  color: #fff !important;
  border: 1px solid #06C755 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.rec-btn-line:hover {
  background-color: #05b14c !important;
  border-color: #05b14c !important;
}
.rec-btn-line svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
/* 応募方法の補足注記 */
.rec-apply-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--rec-navy-sub);
  opacity: 0.85;
  line-height: 1.6;
  box-shadow: 0 10px 24px rgba(15, 37, 71, 0.25);
}

/* ==========================================
   1. ファーストビュー (Hero)
   ========================================== */
.rec-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.rec-hero-content {
  position: relative;
  z-index: 2;
}
.rec-hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--rec-orange);
  background-color: var(--rec-orange-light);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(255, 106, 0, 0.05);
}
.rec-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--rec-navy);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.rec-hero-title span.highlight {
  color: var(--rec-orange);
  position: relative;
  display: inline-block;
}
.rec-hero-title span.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: rgba(255, 106, 0, 0.15);
  z-index: -1;
  border-radius: 4px;
}
.rec-hero-desc {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--rec-navy-sub);
  opacity: 0.9;
  margin-bottom: 40px;
}
.rec-hero-media {
  position: relative;
}
.rec-hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--rec-shadow-lg);
  aspect-ratio: 4 / 3;
  border: 4px solid #fff;
  transition: transform 0.5s var(--rec-ease);
}
.rec-hero-img-wrap:hover {
  transform: scale(1.02) rotate(1deg);
}
.rec-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   2. 仕事内容カード (Work)
   ========================================== */
.rec-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.rec-work-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--rec-shadow-md);
  transition: all 0.5s var(--rec-ease-out-expo);
  position: relative;
  overflow: hidden;
}
.rec-work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.rec-work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--rec-shadow-premium);
  border-color: rgba(255, 106, 0, 0.3);
}
.rec-work-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--rec-orange-light);
  color: var(--rec-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.08);
  transition: transform 0.5s var(--rec-ease);
}
.rec-work-card:hover .rec-work-icon {
  transform: scale(1.1) rotate(6deg);
}
.rec-work-card:nth-child(even) .rec-work-icon {
  background-color: var(--rec-navy-light);
  color: var(--rec-navy);
  box-shadow: 0 4px 12px rgba(15, 37, 71, 0.06);
}
.rec-work-card:nth-child(3n) .rec-work-icon {
  background-color: var(--rec-green-light);
  color: var(--rec-green);
  box-shadow: 0 4px 12px rgba(31, 138, 91, 0.06);
}
.rec-work-icon svg {
  width: 30px;
  height: 30px;
}
}
.rec-work-h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 12px;
}
.rec-work-text {
  font-size: 0.92rem;
  color: var(--rec-navy-sub);
  opacity: 0.8;
  line-height: 1.7;
}

/* ==========================================
   3. 未経験タイムライン & 資格手当 (Training)
   ========================================== */
.rec-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 64px;
  padding: 24px 0;
}
.rec-timeline::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 6%;
  width: 88%;
  height: 4px;
  background: linear-gradient(90deg, var(--rec-navy) 0%, var(--rec-orange) 50%, var(--rec-green) 100%);
  opacity: 0.2;
  z-index: 1;
}
.rec-timeline-item {
  width: 18%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.rec-timeline-badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background-color: var(--rec-navy);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(15, 37, 71, 0.15);
}
.rec-timeline-item:nth-child(even) .rec-timeline-badge {
  background-color: var(--rec-orange);
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.15);
}
.rec-timeline-item:last-child .rec-timeline-badge {
  background-color: var(--rec-green);
  box-shadow: 0 4px 10px rgba(31, 138, 91, 0.15);
}
.rec-timeline-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid var(--rec-navy);
  color: var(--rec-navy);
  font-weight: 800;
  font-size: 1.15rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--rec-shadow-sm);
  transition: all 0.4s var(--rec-ease);
  position: relative;
}
.rec-timeline-circle::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.4s var(--rec-ease);
}
.rec-timeline-item:hover .rec-timeline-circle {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(15, 37, 71, 0.12);
}
.rec-timeline-item:hover .rec-timeline-circle::after {
  transform: scale(1.2);
  border-color: inherit;
  opacity: 0.5;
}
.rec-timeline-item:nth-child(even) .rec-timeline-circle {
  border-color: var(--rec-orange);
  color: var(--rec-orange);
}
.rec-timeline-item:last-child .rec-timeline-circle {
  border-color: var(--rec-green);
  color: var(--rec-green);
}
.rec-timeline-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 10px;
}
.rec-timeline-desc {
  font-size: 0.82rem;
  color: var(--rec-navy-sub);
  opacity: 0.8;
  line-height: 1.6;
}

/* 資格手当ブロック */
.rec-allowance-box {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--rec-shadow-lg);
  align-items: center;
  transition: box-shadow 0.4s var(--rec-ease);
}
.rec-allowance-box:hover {
  box-shadow: var(--rec-shadow-premium);
}
.rec-allowance-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 16px;
  line-height: 1.35;
}
.rec-allowance-title span.orange {
  color: var(--rec-orange);
}
.rec-allowance-desc {
  font-size: 0.92rem;
  color: var(--rec-navy-sub);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 32px;
}
/* au資格テーブル */
.rec-cert-table-wrap {
  margin-bottom: 32px;
  overflow-x: auto;
}
.rec-cert-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}
.rec-cert-table th,
.rec-cert-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--rec-border);
}
.rec-cert-table th {
  background-color: rgba(15, 37, 71, 0.04);
  color: var(--rec-navy);
  font-weight: 800;
  font-size: 0.88rem;
}
.rec-cert-table td {
  color: var(--rec-navy-sub);
  background-color: rgba(255, 255, 255, 0.5);
}
.rec-cert-table tr:hover td {
  background-color: rgba(240, 244, 250, 0.3);
}
.rec-cert-table .cert-name {
  font-weight: 800;
  color: var(--rec-navy);
  white-space: nowrap;
}
.rec-cert-table tr:nth-child(1) .cert-name span {
  border-left: 4px solid var(--rec-navy);
  padding-left: 8px;
}
.rec-cert-table tr:nth-child(2) .cert-name span {
  border-left: 4px solid var(--rec-orange);
  padding-left: 8px;
}
.rec-cert-table tr:nth-child(3) .cert-name span {
  border-left: 4px solid var(--rec-green);
  padding-left: 8px;
}
.rec-cert-table .cert-desc {
  line-height: 1.6;
}

/* FP2級チャレンジボックス */
.rec-fp-challenge-box {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.04) 0%, rgba(255, 255, 255, 0.6) 100%);
  border: 1.5px dashed rgba(255, 106, 0, 0.25);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  margin-top: 24px;
}
.rec-fp-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background-color: var(--rec-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.2);
}
.rec-fp-h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 12px;
  margin-top: 4px;
}
.rec-fp-text {
  font-size: 0.85rem;
  color: var(--rec-navy-sub);
  line-height: 1.7;
}

.rec-allowance-img {
  text-align: center;
}
.rec-allowance-img img {
  max-width: 85%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(15, 37, 71, 0.08));
  transition: transform 0.5s var(--rec-ease);
}
.rec-allowance-box:hover .rec-allowance-img img {
  transform: translateY(-5px);
}

/* ==========================================
   4. 働く魅力 (Charm)
   ========================================== */
.rec-charm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.rec-charm-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  gap: 20px;
  box-shadow: var(--rec-shadow-md);
  transition: all 0.5s var(--rec-ease-out-expo);
  position: relative;
  overflow: hidden;
}
.rec-charm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.rec-charm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--rec-shadow-premium);
  border-color: rgba(15, 37, 71, 0.15);
}
.rec-charm-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--rec-navy-light);
  color: var(--rec-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(15, 37, 71, 0.05);
  transition: transform 0.5s var(--rec-ease);
}
.rec-charm-card:hover .rec-charm-icon {
  transform: scale(1.15) rotate(-10deg);
}
.rec-charm-card:nth-child(even) .rec-charm-icon {
  background-color: var(--rec-orange-light);
  color: var(--rec-orange);
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.05);
}
.rec-charm-card:nth-child(3) .rec-charm-icon,
.rec-charm-card:nth-child(5) .rec-charm-icon {
  background-color: var(--rec-green-light);
  color: var(--rec-green);
  box-shadow: 0 4px 10px rgba(31, 138, 91, 0.05);
}
.rec-charm-icon svg {
  width: 22px;
  height: 22px;
}
.rec-charm-body {
  flex: 1;
}
.rec-charm-h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 10px;
}
.rec-charm-text {
  font-size: 0.88rem;
  color: var(--rec-navy-sub);
  opacity: 0.8;
  line-height: 1.65;
}

/* ==========================================
   5. 先輩の声 (Voice)
   ========================================== */
.rec-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.rec-voice-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 44px 32px;
  box-shadow: var(--rec-shadow-md);
  transition: all 0.5s var(--rec-ease-out-expo);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rec-voice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.rec-voice-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--rec-shadow-premium);
  border-color: rgba(31, 138, 91, 0.25);
}
.rec-voice-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 4px solid var(--rec-green-light);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform 0.5s var(--rec-ease);
}
.rec-voice-card:nth-child(2) .rec-voice-avatar {
  border-color: var(--rec-navy-light);
}
.rec-voice-card:nth-child(3) .rec-voice-avatar {
  border-color: var(--rec-orange-light);
}
.rec-voice-card:hover .rec-voice-avatar {
  transform: scale(1.08) rotate(3deg);
}
.rec-voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rec-voice-meta {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--rec-navy-sub);
  opacity: 0.7;
  margin-bottom: 8px;
}
.rec-voice-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 20px;
}
.rec-voice-quote {
  font-size: 0.9rem;
  color: var(--rec-navy-sub);
  opacity: 0.9;
  line-height: 1.85;
  text-align: left;
}

/* ==========================================
   6. 働く1日を見る導線 (1Day Teaser)
   ========================================== */
.rec-day-banner {
  background-color: var(--rec-navy-light);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--pm-shadow-md);
}
.rec-day-content {
  padding: 48px;
}
.rec-day-h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 14px;
}
.rec-day-text {
  font-size: 0.95rem;
  color: var(--pm-sub, #6B6B6B);
  line-height: 1.75;
  margin-bottom: 28px;
}
.rec-day-media {
  height: 100%;
  min-height: 280px;
}
.rec-day-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   7. 募集要項 (Requirements)
   ========================================== */
.rec-req-card {
  background-color: #fff;
  border: 1px solid var(--rec-border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--pm-shadow-md);
  max-width: 960px;
  margin: 0 auto;
}
.rec-req-h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--rec-navy);
  text-align: center;
  margin-bottom: 36px;
}
.rec-req-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rec-req-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rec-border);
}
.rec-req-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rec-req-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--rec-navy);
  font-size: 0.95rem;
}
.rec-req-label svg {
  width: 18px;
  height: 18px;
  color: var(--rec-orange);
}
.rec-req-val {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--pm-text);
}
.rec-req-val strong {
  font-size: 1rem;
  color: var(--rec-navy);
}
.rec-req-val p {
  margin-bottom: 6px;
}
.rec-req-val p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   8. アコーディオンFAQ (FAQ)
   ========================================== */
.rec-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rec-faq-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--rec-shadow-sm);
  transition: all 0.4s var(--rec-ease);
}
.rec-faq-item:hover {
  border-color: rgba(15, 37, 71, 0.15);
  box-shadow: var(--rec-shadow-md);
}
.rec-faq-item[open] {
  box-shadow: var(--rec-shadow-md);
  border-color: var(--rec-navy);
  background-color: #fff;
}
.rec-faq-q {
  font-weight: 800;
  font-size: 1rem;
  color: var(--rec-navy);
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
  transition: color 0.3s;
}
.rec-faq-q::-webkit-details-marker {
  display: none;
}
.rec-faq-q::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FF6A00' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4.5v15m7.5-7.5h-15'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s var(--rec-ease);
}
.rec-faq-item[open] .rec-faq-q::after {
  transform: rotate(135deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230F2547' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4.5v15m7.5-7.5h-15'/%3E%3C/svg%3E");
}
.rec-faq-a {
  padding: 0 28px 24px 28px;
  font-size: 0.92rem;
  color: var(--rec-navy-sub);
  opacity: 0.85;
  line-height: 1.8;
  border-top: 1px solid transparent;
  animation: recFaqSlide 0.4s ease-out;
}
.rec-faq-item[open] .rec-faq-a {
  border-top-color: var(--rec-border);
}

@keyframes recFaqSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   9. 最終応募CTA (Final CTA)
   ========================================== */
.rec-cta-banner {
  background: linear-gradient(135deg, var(--rec-orange-light) 0%, #FFEFE2 100%);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  box-shadow: 0 20px 50px -15px rgba(255, 106, 0, 0.18);
  transition: transform 0.4s var(--rec-ease);
}
.rec-cta-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -15px rgba(255, 106, 0, 0.25);
}
.rec-cta-content {
  padding: 60px 48px;
}
.rec-cta-h3 {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 16px;
  line-height: 1.35;
}
.rec-cta-text {
  font-size: 0.98rem;
  color: var(--rec-navy-sub);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 36px;
}
.rec-cta-media {
  height: 100%;
  min-height: 320px;
  position: relative;
}
.rec-cta-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 239, 226, 0.4) 0%, transparent 40%);
  pointer-events: none;
}
.rec-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--rec-ease);
}
.rec-cta-banner:hover .rec-cta-media img {
  transform: scale(1.04);
}

/* ==========================================
   10. flow.html 2カラムレイアウト
   ========================================== */
.rec-flow-container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* タイムライン */
.rec-flow-timeline {
  position: relative;
  padding-left: 56px;
}
.rec-flow-timeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 20px;
  width: 6px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, var(--rec-orange) 0%, var(--rec-navy) 50%, var(--rec-green) 100%);
  border-radius: 3px;
  z-index: 1;
  opacity: 0.85;
}
.rec-flow-item {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}
.rec-flow-item:last-child {
  margin-bottom: 0;
}
.rec-flow-time {
  position: absolute;
  left: -56px;
  top: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--rec-orange);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.28);
  border: 4px solid #fff;
  transition: all 0.3s var(--rec-ease);
}
.rec-flow-item:hover .rec-flow-time {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.4);
}
.rec-flow-item:nth-child(3n+2) .rec-flow-time {
  background-color: var(--rec-navy);
  box-shadow: 0 4px 12px rgba(15, 37, 71, 0.28);
}
.rec-flow-item:nth-child(3n+2):hover .rec-flow-time {
  box-shadow: 0 6px 16px rgba(15, 37, 71, 0.4);
}
.rec-flow-item:nth-child(3n) .rec-flow-time {
  background-color: var(--rec-green);
  box-shadow: 0 4px 12px rgba(31, 138, 91, 0.28);
}
.rec-flow-item:nth-child(3n):hover .rec-flow-time {
  box-shadow: 0 6px 16px rgba(31, 138, 91, 0.4);
}

.rec-flow-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--rec-shadow-md);
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 28px;
  align-items: center;
  transition: all 0.5s var(--rec-ease-out-expo);
}
.rec-flow-card:hover {
  transform: translateX(8px);
  box-shadow: var(--rec-shadow-premium);
  border-color: rgba(15, 37, 71, 0.12);
}
.rec-flow-card-content {
  flex: 1;
}
.rec-flow-card-h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 12px;
}
.rec-flow-card-text {
  font-size: 0.9rem;
  color: var(--rec-navy-sub);
  opacity: 0.85;
  line-height: 1.7;
}
.rec-flow-card-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--rec-shadow-sm);
  border: 2px solid #fff;
}
.rec-flow-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--rec-ease);
}
.rec-flow-card:hover .rec-flow-card-media img {
  transform: scale(1.08);
}

/* 右カラム (サイドバー) */
.rec-flow-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.rec-sidebar-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--rec-shadow-md);
}
.rec-sidebar-h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--rec-orange);
  padding-bottom: 10px;
  position: relative;
}
.rec-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rec-sidebar-list-item {
  display: flex;
  gap: 16px;
}
.rec-sidebar-list-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--rec-orange-light);
  color: var(--rec-orange);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(255, 106, 0, 0.1);
}
.rec-sidebar-list-item:nth-child(even) .rec-sidebar-list-num {
  background-color: var(--rec-navy-light);
  color: var(--rec-navy);
  box-shadow: 0 2px 6px rgba(15, 37, 71, 0.05);
}
.rec-sidebar-list-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--rec-navy);
  margin-bottom: 6px;
}
.rec-sidebar-list-text {
  font-size: 0.82rem;
  color: var(--rec-navy-sub);
  opacity: 0.8;
  line-height: 1.6;
}

/* サイドバー先輩の声 */
.rec-sidebar-voice-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(15, 37, 71, 0.1);
}
.rec-sidebar-voice-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.rec-sidebar-voice-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.rec-sidebar-voice-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--rec-green-light);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s var(--rec-ease);
}
.rec-sidebar-voice-item:hover .rec-sidebar-voice-avatar {
  transform: scale(1.08) rotate(3deg);
}
.rec-sidebar-voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rec-sidebar-voice-info {
  line-height: 1.4;
}
.rec-sidebar-voice-meta {
  font-size: 0.72rem;
  color: var(--rec-navy-sub);
  opacity: 0.6;
}
.rec-sidebar-voice-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--rec-navy);
}
.rec-sidebar-voice-text {
  font-size: 0.82rem;
  color: var(--rec-navy-sub);
  opacity: 0.85;
  line-height: 1.65;
}

/* サイドバーミニCTA */
.rec-sidebar-cta {
  background: linear-gradient(135deg, var(--rec-navy-light) 0%, #EBF2FC 100%);
  border: 1px solid rgba(15, 37, 71, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s var(--rec-ease);
}
.rec-sidebar-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--rec-shadow-lg);
}
.rec-sidebar-cta-h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 10px;
}
.rec-sidebar-cta-text {
  font-size: 0.82rem;
  color: var(--rec-navy-sub);
  opacity: 0.85;
  line-height: 1.65;
  margin-bottom: 24px;
}
.rec-sidebar-cta-media {
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 110px;
  opacity: 0.08;
  pointer-events: none;
  transition: transform 0.6s var(--rec-ease);
}
.rec-sidebar-cta:hover .rec-sidebar-cta-media {
  transform: scale(1.1) rotate(5deg);
}
.rec-sidebar-cta-media img {
  width: 100%;
  height: auto;
}

/* flow.html ボトム導線 */
.rec-flow-bottom-box {
  background: rgba(15, 37, 71, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 37, 71, 0.05);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-top: 64px;
  transition: background 0.3s;
}
.rec-flow-bottom-box:hover {
  background: rgba(15, 37, 71, 0.05);
}
.rec-flow-bottom-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rec-navy);
  margin-bottom: 10px;
}
.rec-flow-bottom-sub {
  font-size: 0.9rem;
  color: var(--rec-navy-sub);
  opacity: 0.8;
  margin-bottom: 24px;
}
.rec-flow-bottom-link {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--rec-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.rec-flow-bottom-link:hover {
  color: var(--rec-orange-hover);
  gap: 10px;
}

/* ==========================================
   11. 採用フッターお問い合わせボックス
   ========================================== */
.rec-footer-contact-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 37, 71, 0.08);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  box-shadow: var(--rec-shadow-md);
  flex-wrap: wrap;
  gap: 20px;
}
.rec-footer-contact-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--rec-navy);
}
.rec-footer-contact-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--rec-navy);
}
.rec-footer-contact-tel svg {
  width: 24px;
  height: 24px;
  color: var(--rec-orange);
}
.rec-footer-contact-time {
  font-size: 0.78rem;
  color: var(--rec-navy-sub);
  opacity: 0.7;
  margin-left: 10px;
  font-weight: normal;
}

/* ==========================================
   レスポンシブデザイン調整 (Mobile Breakpoints)
   ========================================== */
@media (max-width: 1024px) {
  .rec-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 40px 0;
  }
  .rec-hero-media {
    max-width: 520px;
    margin: 0 auto;
  }
  .rec-hero-desc {
    margin-bottom: 32px;
  }
  .rec-btn-group {
    justify-content: center;
  }
  .rec-work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .rec-charm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .rec-voice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .rec-day-banner {
    grid-template-columns: 1fr;
  }
  .rec-day-media {
    min-height: 240px;
  }
  .rec-cta-banner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rec-cta-media {
    min-height: 260px;
  }
  .rec-flow-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rec-section {
    padding: 70px 0;
  }
  /* au資格テーブル：スマホでは縦積みにして文字崩れを防ぐ */
  .rec-cert-table,
  .rec-cert-table tbody,
  .rec-cert-table tr,
  .rec-cert-table td {
    display: block;
    width: 100%;
  }
  .rec-cert-table thead {
    display: none;
  }
  .rec-cert-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--rec-border);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
  }
  .rec-cert-table td {
    border-bottom: none;
    padding: 14px 16px;
  }
  .rec-cert-table .cert-name {
    white-space: normal;
    background-color: rgba(15, 37, 71, 0.04);
    padding-bottom: 10px;
  }
  .rec-cert-table .cert-desc {
    padding-top: 10px;
  }
  .rec-hero-title {
    font-size: 2rem;
  }
  .rec-work-grid {
    grid-template-columns: 1fr;
  }
  .rec-charm-grid {
    grid-template-columns: 1fr;
  }
  .rec-voice-grid {
    grid-template-columns: 1fr;
  }
  .rec-timeline {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    padding-left: 36px;
    margin-bottom: 48px;
  }
  .rec-timeline::before {
    top: 0;
    left: 22px;
    width: 4px;
    height: 100%;
  }
  .rec-timeline-item {
    width: 100%;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .rec-timeline-circle {
    margin: 0;
    flex-shrink: 0;
  }
  .rec-timeline-badge {
    margin-bottom: 6px;
  }
  .rec-allowance-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .rec-allowance-img {
    display: none;
  }
  .rec-day-content {
    padding: 40px 24px;
    text-align: center;
  }
  .rec-cta-content {
    padding: 40px 24px;
    text-align: center;
  }
  .rec-req-card {
    padding: 24px;
  }
  .rec-req-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .rec-req-label {
    border-bottom: none;
    padding-bottom: 0;
  }
  .rec-flow-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rec-flow-card-media {
    order: -1;
  }
  .rec-footer-contact-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* ==========================================
   4.5 チーム文化・社員旅行バンド (Team & Culture)
   ========================================== */
.rec-culture-band {
  margin: 0 auto;
  max-width: 760px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--rec-shadow-lg);
  border: 4px solid #fff;
  position: relative;
  background-color: var(--rec-navy-light);
}
.rec-culture-band img {
  width: 100%;
  display: block;
  height: auto;
}
.rec-culture-band figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(0deg, rgba(15, 37, 71, 0.62) 0%, rgba(15, 37, 71, 0) 100%);
}
/* 写真準備中プレースホルダ（実写真が入ったら<img>に差し替え） */
.rec-culture-placeholder {
  min-height: 360px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--rec-navy);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.05) 0%, rgba(240, 244, 250, 0.7) 100%);
  border: 2px dashed rgba(255, 106, 0, 0.3);
}
.rec-culture-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--rec-orange);
  opacity: 0.85;
}
.rec-culture-placeholder .rec-culture-ph-main {
  font-size: 1.05rem;
  font-weight: 800;
}
.rec-culture-placeholder .rec-culture-ph-sub {
  font-size: 0.82rem;
  color: var(--rec-navy-sub);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .rec-culture-placeholder {
    min-height: 240px;
  }
}
