/* === リセット・基本スタイル === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2e2e2e;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 80px;
  width: 100%;
  max-width: 100%;
}

/* === メインコンテンツエリア === */
.main-content {
  flex: 1;
}

/* === フッターを最下部に固定 === */
.footer {
  margin-top: auto;
}

/* === Header関連のCSSは common/css/header.css に移動 === */

/* --- ファーストビュー（hero） --- */
.first-view {
  padding: 80px 0 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.first-view-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.first-view-left {
  min-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.first-view-btns {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.btn-outline-gradient, .btn-filled-gradient {
  width: 240px;
  height: 56px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px 0 #bfd3fe;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.btn-outline-gradient {
  border: 2px solid #2563eb;
  background: #fff;
  color: #2563eb;
}
.btn-outline-gradient:hover {
  background: #2563eb;
  color: #fff;
}
.btn-filled-gradient {
  border: none;
  background: linear-gradient(90deg, #2563eb 0%, #10b981 100%);
  color: #fff;
}
.btn-filled-gradient:hover {
  opacity: 0.8;
}
.first-view-img {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 480px;
}
.first-view-img img {
  width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* --- CAREER KAKERUの概要 --- */
.about {
  background: transparent;
  width: 100%;
  background: linear-gradient(110deg,#F3FBF9 50%, #F4F7FE 100%);
  padding: 80px 0 40px 0;
}

.about-bubbles {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  gap: 48px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .about {
    width: 100%;
    padding: 40px 0 20px 0;
  }
  .about-bubbles {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .bubble-bg {
    width: 90%;
    min-width: 0;
    max-width: 510px;
  }
}

/* --- CTAボタン（4ステップ前） --- */
.cta-steps {
  width: 100%;
  position: relative;
  background: none;
  padding: 48px 0;
  text-align: center;
  box-shadow: 0 4px 32px 0 rgba(37,99,235,0.06);
  overflow: hidden;
}
.cta-steps .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cta-steps .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 88%;
  display: block;
  filter: brightness(0.7);
}
.cta-steps .cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37,99,235,0.5) 0%, rgba(16,185,129,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}
.cta-steps .cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-steps .cta-btns {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.cta-steps .cta-btns a {
  text-decoration: none;
}

/* --- 強み --- */
.strength {
  /* 既存の.strengthのスタイルを流用・整理 */
}

/* === フリーランサーの実情（Figma node-385:8898） === */
.freelance-stats {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 60px 0;
  overflow: visible;
  z-index: 1;
}
.freelance-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.freelance-title-area {
  text-align: center;
}
.freelance-title {
  font-size: 40px;
  font-weight: bold;
  color: #2e2e2e;
  margin-bottom: 8px;
}
.freelance-gradient {
  width: 160px;
  height: 3px;
  margin: 0 auto 20px auto;
  border-radius: 20px;
  background: linear-gradient(90deg, #10b981 0%, #93b4fd 50%, #2563eb 100%);
}
.freelance-blocks-wrapper {
  background: linear-gradient(131deg, rgba(255,255,255,0.4) 0.3%, rgba(255,255,255,0.2) 99.7%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.freelance-block-label {
  font-size: 24px;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 8px;
}
.freelance-block-label-blue2 {
  color: #1d58d8;
}
.freelance-block-desc-large {
  font-size: 32px;
  color: #2e2e2e;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
}
.freelance-graph-img img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.freelance-block-illust {
  width:300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.freelance-block-illust img {
  width: 100%;
  height: auto;
  display: block;
}
.freelance-graphs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 48px;
  width: 100%;
}
.freelance-graph-box {
  background: linear-gradient(134deg, rgba(255,255,255,0.4) 0.3%, rgba(255,255,255,0.2) 99.7%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 40px 0 rgba(0,0,0,0.12);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 32px 32px 32px 32px;
  min-width: 340px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.freelance-graph-title {
  font-size: 20px;
  font-weight: bold;
  color: #2e2e2e;
  margin-bottom: 8px;
  text-align: center;
}
.freelance-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 0 0;
}
.freelance-arrow img {
  width: 46px;
  height: 50px;
  object-fit: contain;
  display: block;
  transform: rotate(90deg);
}
.freelance-summary {
  margin-top: 32px;
  text-align: center;
}
.freelance-summary-title {
  font-size: 32px;
  font-weight: bold;
  color: #2e2e2e;
  line-height: 1.4;
}

/* --- ユーザーの声 --- */
.voice {
  /* 既存の.voiceのスタイルを流用・整理 */
}

/* --- CAREERの選択が生んだ違い --- */
.compare-section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 40px 0;
  background: #fff;
  position: relative;
}

.compare-image-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.compare-image-wrapper img {
  display: block;
  margin: 0 auto;
}

.compare-chart img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}
.compare-chart-label {
  font-size: 15px;
  color: #2e2e2e;
  text-align: center;
}


/* --- ステップ --- */
.steps {
  background: #fff;
  width: 100%;
  padding: 40px 0;
  color: #2e2e2e;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}
.steps-title-area {
  text-align: center;
  margin-bottom: 56px;
}
.steps-sub span {
  color: #2563eb;
}
.steps-flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  margin-top: 32px;
}
.step-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.step-num {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  width: 40px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 8px;
}
.step-label {
  font-size: 20px;
  font-weight: bold;
  color: #2e2e2e;
  letter-spacing: 0.02em;
}
.step-img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin-bottom: 32px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.step-desc {
  font-size: 15px;
  color: #888;
  text-align: center;
  line-height: 1.7;
  font-weight: 400;
  max-width: 220px;
}
.step-arrow {
  width: 40px;
  height: 40px;
  object-fit: contain;
  align-self: center;
}

/* === クロージング（Figma node-385:8823） === */
.closing {
  position: relative;
  background: linear-gradient(110deg, #F3FBF9 50%, #F4F7FE 100%);
  margin: 0 auto;
  padding: 40px 0;
  overflow: visible;
}
.closing-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing-title-area {
  text-align: center;
}
.closing-title {
  font-size: 32px;
  font-weight: bold;
  color: #2e2e2e;
  line-height: 1.5;
}
.closing-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
}
.closing-card {
  background: linear-gradient(143.8deg, rgba(255,255,255,0.4) 0.3%, rgba(255,255,255,0.2) 99.7%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 40px 0 rgba(0,0,0,0.12);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 24px;
}
.closing-card-icon img {
  padding: 8px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}
.closing-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.closing-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 4px;
}
.closing-card-desc {
  font-size: 16px;
  color: #2e2e2e;
  font-weight: 400;
  line-height: 1.5;
  width: 240px;
}
.closing-btns {
  display: flex;
  gap: 24px;
}

/* --- 強みセクション --- */
.strength {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 40px 0;
  background: linear-gradient(151.96deg, rgba(37,99,235,0.10) 0%, rgba(16,185,129,0.10) 50.4%, rgba(37,99,235,0.10) 100.86%);;
}

.strength-cards {
  display: flex;
  padding: 20px 0;
  gap: 24px;
  justify-content: center;
}
.strength-card {
  display: flex;
  flex-flow: column;
  align-items: center;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  box-shadow: 0 0 40px 0 rgba(0,0,0,0.12);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(16px);
}
.strength-img {
  width: 240px;
  height: 160px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.strength-card h3 {
  font-size: 24px;
  font-weight: bold;
}
.strength-card p {
  font-size: 16px;
  color: #2e2e2e;
  margin: 0;
  width: 280px;
  text-align: left;
}

/* --- 転職をしたユーザーの声 --- */
.voice-section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 40px 0;
  background: #f8f8f8;
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
}
.voice-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.voice-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 0 16px 0 rgba(0,0,0,0.04);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.voice-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.voice-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.voice-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.voice-user-name {
  font-size: 18px;
  font-weight: bold;
  color: #2e2e2e;
}
.voice-user-meta {
  font-size: 15px;
  color: #6f6f6f;
}
.voice-comment {
  width: 320px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #2e2e2e;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 16px;
  box-sizing: border-box;
}

/* --- フロー --- */
.flow {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 40px 0;
  background: #fff;
}
.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}
.flow-step {
  background: rgba(255,255,255,0.95);
  border: 1px solid #bfd3fe;
  border-radius: 20px;
  box-shadow: 0 0 8px 0 #bfd3fe;
  padding: 32px 24px;
  width: 220px;
  text-align: center;
  position: relative;
}
.flow-step-img {
  width: 128px;
  height: 128px;
  margin: 0 auto 16px auto;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}
.flow-step-num {
  font-size: 20px;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 8px;
}
.flow-step-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.flow-step-desc {
  font-size: 14px;
  color: #2e2e2e;
}
.flow-arrow {
  width: 46px;
  height: 50px;
  background: url('../../assets/img/freelance/arrow.svg') center/contain no-repeat;
  align-self: center;
}

/* --- フッター --- */
/* フッターのスタイルは common/css/footer.css で定義 */

/* --- 確かな選択で正社員へ --- */
.merit-section {
  position: relative;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.merit-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 480px;
  z-index: 0;
  pointer-events: none;
}
.merit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(180deg);
}
.merit-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 40px 0;
}
.merit-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}
.merit-lead-gradient {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(90deg, #10b981 0%, #93b4fd 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: block;
  text-align: center;
}
.merit-lead-sub {
  font-size: 20px;
  color: #2e2e2e;
  text-align: center;
  display: block;
}
.merit-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.merit-card {
  background: linear-gradient(145.8deg, rgba(255,255,255,0.4) 0.33%, rgba(255,255,255,0.2) 99.67%);
  border-radius: 20px;
  box-shadow: 0 0 40px 0 rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 40px 32px;
  width: 380px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  backdrop-filter: blur(16px);
}
.merit-icon {
  margin-bottom: 24px;
}
.merit-icon img {
  width: 48px;
  height: 48px;
  display: block;
}
.merit-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2e2e2e;
  margin: 0 0 8px 0;
}
.merit-content p {
  font-size: 16px;
  color: #2e2e2e;
  margin: 0;
}

/* === 4ステップで実現する理想のキャリア（白背景） === */
.steps {
  background: #fff;
  padding: 40px 0;
  color: #2e2e2e;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}
.steps-title-area {
  text-align: center;
  margin-bottom: 56px;
}
.steps-sub span {
  color: #2563eb;
}
.steps-flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  margin-top: 32px;
}
.step-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
}
.step-img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin-bottom: 32px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.step-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  background: #fff;
  color: #2563EB;
  border: 2px solid #2563EB;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  &.invert {
    background: #2563EB;
    color: #fff;
    border: 2px solid #2563EB;
  }
}
.step-label {
  font-size: 22px;
  font-weight: bold;
  color: #2e2e2e;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.step-desc {
  font-size: 15px;
  color: #888;
  text-align: center;
  line-height: 1.7;
  font-weight: 400;
  max-width: 220px;
}
.step-arrow {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  align-self: center;
}

/* === 正社員化の新しい選択肢訴求セクション === */
.fulltime-appeal {
  position: relative;
  background: linear-gradient(110deg, #F3FBF9 50%, #F4F7FE 100%);
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 80px 0;
  overflow: visible;
}
.fulltime-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fulltime-title-area {
  text-align: center;
  margin-bottom: 48px;
}
.fulltime-title {
  font-size: 40px;
  font-weight: bold;
  color: #2e2e2e;
  margin-bottom: 8px;
}
.fulltime-gradient {
  width: 160px;
  height: 3px;
  margin: 0 auto 20px auto;
  border-radius: 20px;
  background: linear-gradient(90deg, #10b981 0%, #93b4fd 50%, #2563eb 100%);
}
.fulltime-sub-gradient {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(90deg, #10b981 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 4px;
}
.fulltime-sub {
  font-size: 20px;
  color: #2e2e2e;
  margin-bottom: 0;
}
.fulltime-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
.fulltime-card {
  background: linear-gradient(145.8deg, rgba(255,255,255,0.4) 0.3%, rgba(255,255,255,0.2) 99.7%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 40px 0 rgba(0,0,0,0.12);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 16px;
  width: 336px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.fulltime-card-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.fulltime-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fulltime-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 4px;
}
.fulltime-card-desc {
  font-size: 16px;
  color: #2e2e2e;
  font-weight: 400;
}

.container {
  position: relative;
  background: #fff;
  height: 2vh;
}

.wave {
  position: absolute;
  height: 40px;
  width: 100%;
  background: #fff;
  bottom: 0;
}

.wave::before, .wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
}

.wave::before {
  width: 55%;
  height: 109%;
  background: linear-gradient(110deg,#F3FBF9 50%, #F4F7FE 100%);
  right: 0;
  top: 60%;
}
.wave::after {
  width: 55%;
  height: 100%;
  background-color: #fff;
  left: -1.5%;
  top: 40%;
  z-index: 1;
}

.freelance-block-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.freelance-timeline {
  width: 34px;
  object-fit: contain;
  margin-right: 32px;
  display: block;
}

.freelance-sp {
  display: none;
}
@media screen and (max-width: 1110px) {

  .first-view {
    flex-direction: column;
    align-items: center;
  }
  .first-view-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .first-view-left, .first-view-img {
    min-width: 0;
    width: 100%;
    text-align: center;
  }
  .first-view-img img {
    width: 90%;
    max-width: 520px;
    height: auto;
  }
  .strength-cards {
    flex-direction: column;
    align-items: center;
  }
  .voice-cards {
    flex-direction: column;
    align-items: center;
  }
  /* header関連のレスポンシブ対応は common/css/header.css に移動 */
  .fulltime-cards {
    flex-direction: column;
    align-items: center;
  }
  .closing-cards {
    flex-direction: column;
    align-items: center;
  }
  .steps-flow {
    flex-direction: column;
    align-items: center;
  }
  .step-block {
    flex-direction: row;
    width: 320px;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
  }
  .step-img {
    width: 64px;
    height: 64px;
    padding: 8px;
    margin: 0;
  }
  .step-info {
    align-items: flex-start;
    width: auto;
  }
  .step-label {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .step-num {
    font-size: 16px;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    margin-right: 8px;
  }
  .step-desc {
    font-size: 13px;
    margin-top: 2px;
    text-align: left;
    max-width: 100%;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0 0 16px  0;
  }
  .freelance-reality-pc {
    display: none;
  }
  .freelance-sp{
    display: block;
    width: 90%;
    height: auto;
  }
  .compare-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .compare-image-wrapper img {
    width: 90%;
    max-width: 760px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  /* フッターのレスポンシブ対応は common/css/footer.css で定義 */
}

/* カード型UIのフェードインアニメーション（is-visible時のみ） */
.step-block,
.strength-card,
.voice-card,
.fulltime-card,
.closing-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.step-block.is-visible,
.strength-card.is-visible,
.voice-card.is-visible,
.fulltime-card.is-visible,
.closing-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 連続で出現するようディレイを調整（例: .step-block:nth-child(n)） */
.steps-flow .step-block:nth-child(1) { animation-delay: 0.1s; }
.steps-flow .step-block:nth-child(2) { animation-delay: 0.2s; }
.steps-flow .step-block:nth-child(3) { animation-delay: 0.3s; }
.steps-flow .step-block:nth-child(4) { animation-delay: 0.4s; }
.strength-cards .strength-card:nth-child(1) { animation-delay: 0.1s; }
.strength-cards .strength-card:nth-child(2) { animation-delay: 0.2s; }
.strength-cards .strength-card:nth-child(3) { animation-delay: 0.3s; }
.voice-cards .voice-card:nth-child(1) { animation-delay: 0.1s; }
.voice-cards .voice-card:nth-child(2) { animation-delay: 0.2s; }
.voice-cards .voice-card:nth-child(3) { animation-delay: 0.3s; }
.fulltime-cards .fulltime-card:nth-child(1) { animation-delay: 0.1s; }
.fulltime-cards .fulltime-card:nth-child(2) { animation-delay: 0.2s; }
.fulltime-cards .fulltime-card:nth-child(3) { animation-delay: 0.3s; }
.closing-cards .closing-card:nth-child(1) { animation-delay: 0.1s; }
.closing-cards .closing-card:nth-child(2) { animation-delay: 0.2s; }
.closing-cards .closing-card:nth-child(3) { animation-delay: 0.3s; }