/* ==============================================
   Career Connect LP - Custom Styles
   ============================================== */

/* ===== スクロールアニメーション ===== */
.cc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cc-reveal.cc-reveal-right {
  transform: translateX(60px);
}
.cc-reveal.cc-reveal-left {
  transform: translateX(-60px);
}
.cc-reveal-delay {
  transition-delay: 0.25s;
}
.cc-reveal.cc-visible {
  opacity: 1;
  transform: none;
}

/* ===== 強みセクション ワイプアニメーション ===== */
@keyframes cc-bar-wipe {
  0%   { transform: scaleX(0); transform-origin: left; }
  45%  { transform: scaleX(1); transform-origin: left; }
  46%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* 数字ラッパー */
.cc-feature-num-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 10px;
}
.cc-feature-num-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #63c1c3;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1;
}
.cc-feature-row.cc-visible .cc-feature-num-wrap::after {
  animation: cc-bar-wipe 0.7s cubic-bezier(.4,.4,0,1) 0.1s forwards;
}

/* 見出しラッパー */
.cc-feature-h3-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 20px;
}
.cc-feature-h3-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #63c1c3;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1;
}
.cc-feature-row.cc-visible .cc-feature-h3-wrap::after {
  animation: cc-bar-wipe 0.85s cubic-bezier(.4,.4,0,1) 0.4s forwards;
}

/* 本文はその後フェードイン */
.cc-feature-text p {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cc-feature-row.cc-visible .cc-feature-text p {
  opacity: 1;
  transition-delay: 0.9s;
}

:root {
  --cc-primary:    #050038;
  --cc-secondary:  #30ADCB;
  --cc-tertiary:   #63c1c3;
  --cc-quaternary: #485B9D;
  --cc-bg-mint:    #d9e6e7;
  --cc-bg-gray:    #F5F5F5;
  --cc-white:      #ffffff;
  --cc-text:       #333333;
  --cc-text-light: #666666;
  --cc-line:       #06C755;
  --cc-radius:     12px;
  --cc-shadow:     0 4px 20px rgba(0,0,0,.08);
}

/* リセット */
body.cc-lp * { box-sizing: border-box; }
body.cc-lp {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--cc-text);
  line-height: 1.7;
  background: var(--cc-white);
  margin: 0;
  padding: 0;
}
body.cc-lp a { text-decoration: none; color: inherit; }
body.cc-lp ul { list-style: none; margin: 0; padding: 0; }
body.cc-lp img { max-width: 100%; height: auto; display: block; }
body.cc-lp h1, body.cc-lp h2, body.cc-lp h3 { margin: 0; }
body.cc-lp p { margin: 0 0 1em; }
body.cc-lp p:last-child { margin-bottom: 0; }

/* コンテナ */
.cc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.cc-logo-img {
  height: auto;
  width: 120px;
  display: block;
}

/* ===== ボタン ===== */
.cc-lp .cc-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cc-line);
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 28px;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  text-decoration: none;
}
.cc-lp .cc-btn-line:hover {
  opacity: .85;
  transform: translateY(-2px);
  color: #ffffff !important;
}
.cc-lp .cc-btn-line.cc-btn-hero {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
  white-space: normal !important;
}
.cc-btn-hero {
  display: inline-block !important;
  padding: 16px 32px 16px 16px;
  font-size: 1rem;
  margin-top: 28px;
  margin-left: 16px;
  white-space: pre-wrap !important;
  line-height: 1.5;
  text-align: left;
}
.cc-btn-case {
  padding: 16px 48px;
  font-size: 1rem;
}
.cc-lp .cc-btn-cta {
  padding: 18px 52px;
  font-size: 1.1rem;
	/*padding: 18px 80px !important;*/
  font-size: 1rem !important;
  background: linear-gradient(180deg, #14d95e 0%, #06C755 55%, #05b04a 100%) !important;
  box-shadow: 0 3px 0 #049a40, 0 5px 14px rgba(6,199,85,.25) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.12);
  transition: opacity .2s, transform .2s, box-shadow .2s !important;
}

/* ===== ヘッダー ===== */
.cc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cc-white);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: background 0.3s, border-radius 0.3s, box-shadow 0.3s, backdrop-filter 0.3s, margin 0.3s, top 0.3s;
}
.cc-header.is-scrolled {
  top: 1rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  border-bottom: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  margin: 0 1rem;
}
.cc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100px;
  gap: 16px;
}
.cc-logo {
  flex-shrink: 0;
}
.cc-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 8px;
}
.cc-nav ul {
  display: flex;
  gap: 0;
  align-items: center;
}
.cc-nav a {
  display: block;
  padding: 6px 14px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--cc-text);
  border-radius: 6px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.cc-nav a:hover {
  color: var(--cc-secondary);
  background: rgba(48,173,203,.08);
}
.cc-header-btn {
  flex-shrink: 0;
  padding: 14px 28px;
  font-size: .95rem;
  font-weight: 700;
}
.cc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
  flex-shrink: 0;
}
/* 旧定義（上書き済みなので削除） */
.cc-hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--cc-primary);
  border-radius: 2px;
  transition: transform .3s;
}

/* ===== ドロワーメニュー ===== */
.cc-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
  opacity: 0;
  transition: opacity .3s;
}
.cc-drawer-overlay.is-open {
  display: block;
  opacity: 1;
}
.cc-drawer {
  position: fixed;
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: calc(100vw - 32px);
  max-width: 400px;
  background: var(--cc-white);
  z-index: 201;
  transform: translateX(calc(100% + 20px));
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 48px 40px 56px;
  box-shadow: -4px 0 40px rgba(0,0,0,.18);
  border-radius: 24px;
  overflow-y: auto;
}
.cc-drawer.is-open {
  transform: translateX(0);
}
.cc-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--cc-text);
  padding: 4px 8px;
  margin-bottom: 24px;
  line-height: 1;
}
.cc-drawer-logo {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--cc-primary);
  margin-bottom: 32px;
  display: block;
}
.cc-drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cc-drawer-nav li {
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.cc-drawer-nav a {
  display: block;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cc-text);
  transition: color .2s, padding-left .2s;
}
.cc-drawer-nav a:hover {
  color: var(--cc-secondary);
  padding-left: 8px;
}
.cc-drawer-btn {
  margin-top: 32px;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}

/* ===== ヒーロー ===== */
.cc-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 100px);
  background-size: cover;
  background-position: right 10%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
	padding-top:60px;
}
.cc-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 60px 80px 56px;
  max-width: 520px;
}
.cc-hero-label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-left: 35px !important;
  background: linear-gradient(135deg, #c850c0 0%, #ffcc70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid #c850c0;
  padding-bottom: 4px;
  display: inline-block;
}
.cc-hero-logo-img {
  display: block;
  width: 420px;
  max-width: 100%;
  height: auto;
  margin-bottom: 32px;
  margin-left: 0;
}
.cc-btn-hero {
  display: inline-block !important;
  padding: 20px 40px 20px 16px;
  font-size: 1.15rem;
  line-height: 1.4;
  text-align: left;
  border-radius: 25px !important;
  white-space: pre-wrap !important;
}
.cc-btn-hero .cc-highlight {
  color: #ffe88a;
}

/* ===== セクション共通 ===== */
.cc-section {
  padding: 80px 0;
}
.cc-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.cc-section-en {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--cc-secondary);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cc-section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--cc-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.cc-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--cc-secondary);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ===== プレースホルダー画像 ===== */
.cc-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--cc-radius);
  background: linear-gradient(135deg, var(--cc-bg-mint) 0%, #aed8db 100%);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.cc-img-placeholder::after {
  content: '📷 画像を設定してください';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: .75rem;
  color: var(--cc-secondary);
  white-space: nowrap;
}

/* ===== サービス紹介 ===== */
.cc-service-body {
  overflow: hidden;
}
.cc-service-img-photo {
  float: right;
  width: 46%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--cc-radius);
  margin: 0 0 32px 48px;
  display: block;
}
.cc-service-body h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cc-primary);
  line-height: 1.5;
  margin-bottom: 32px !important;
}
.cc-service-text h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cc-primary);
  line-height: 1.5;
  margin-bottom: 32px !important;
}
.cc-service-text p {
  color: var(--cc-text-light);
  font-size: 1.5rem;
}
.cc-service-body p {
  color: var(--cc-text-light);
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 2rem !important;
}
.cc-service-clearfix {
  clear: both;
}
.cc-service-full {
  margin-top: 24px;
}

/* ===== 転職活動で感じる悩み ===== */
.cc-pain {
  background: var(--cc-bg-gray);
  position: relative;
  overflow: hidden;
  padding-top: 320px;
}
.cc-pain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1488px;
  height: 340px;
  background: var(--cc-bg-mint);
  /* 凹アーチ: 両端300px・中央90px(制御点)でベジェ曲線 */
  clip-path: path('M0 0 H1488 V300 Q744 90 0 300 Z');
  z-index: 0;
}
.cc-pain::after {
  display: none;
}
.cc-pain .cc-section-en {
  text-transform: none;
  letter-spacing: 0;
  font-size: .85rem;
}
.cc-pain .cc-section-en::before {
  content: '• ';
}
.cc-pain .cc-container {
  position: relative;
  z-index: 2;
}
.cc-pain-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}
.cc-pain-card {
  width: 100%;
  background: var(--cc-white);
  border-radius: 120px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  margin-left: 0;
  margin-right: 0;
}
.cc-pain-card:nth-child(2) {
  margin-left: 80px;
}
.cc-pain-illust {
  flex-shrink: 0;
  width: 150px;
  height: 170px;
  min-height: 170px;
  border-radius: 12px;
  overflow: hidden;
}
.cc-pain-illust.cc-img-placeholder::after {
  font-size: .65rem;
}
.cc-pain-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cc-primary);
  margin-bottom: 12px !important;
}
.cc-pain-body p {
  color: var(--cc-text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0 !important;
}

/* ===== 私たちの強み ===== */
.cc-feature {
  background: #d9e6e7;
  overflow: hidden;
}
.cc-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 40px;
  background: var(--cc-white);
  padding: 48px;
}
.cc-feature-odd {
  border-radius: 480px 0 0 480px;
  margin-left: max(0px, calc((100vw - 1280px) / 4));
}
.cc-feature-even {
  border-radius: 0 480px 480px 0;
  width: calc(100vw - max(0px, calc((100vw - 1280px) / 4)));
}
.cc-feature-row:last-child { margin-bottom: 0; }
.cc-feature-text {
  padding-top: 32px;
  padding-bottom: 32px;
}
.cc-feature-img {
  height: auto;
  min-height: 360px;
  border-radius: 480px;
  overflow: hidden;
  position: relative;
}
.cc-feature-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}
.cc-feature-num {
  display: block;
  font-family: 'Anonymous Pro', monospace;
  font-size: 6rem;
  font-weight: 900;
  color: #63c1c3;
  line-height: 1;
  margin-bottom: 0;
}
.cc-feature-text h3 {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  background: #63c1c3;
  color: #ffffff;
  padding: 8px 20px;
  margin-top: 16px !important;
  margin-bottom: 24px !important;
  line-height: 1.3;
}
.cc-feature-text p {
  color: var(--cc-text-light);
  font-size: .95rem;
  line-height: 1.8;
}

/* ===== ご利用のながれ ===== */
.cc-flow {
  background: var(--cc-bg-mint);
}
.cc-flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.cc-flow-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cc-flow-step-label {
  font-family: 'Anonymous Pro', monospace;
  font-size: 1.2rem;
  color: var(--cc-secondary);
  letter-spacing: .05em;
}
.cc-flow-step-label strong {
  font-size: 1.5rem;
}
.cc-flow-icon {
  width: 132px;
  height: 132px;
  background: var(--cc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.cc-flow-icon svg,
.cc-flow-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.cc-flow-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc-primary);
  line-height: 1.4;
  margin: 0;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.cc-flow-step p {
	text-align:left;
  font-size: .82rem;
  color: var(--cc-text-light);
  line-height: 1.7;
  margin: 0;
}
.cc-flow-arrow {
  font-size: 1.4rem;
  color: var(--cc-secondary);
  flex-shrink: 0;
  margin-top: 128px;
  line-height: 1;
}

/* ===== 転職成功事例 ===== */
.cc-case { background: #f5f5f5; }
.cc-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  padding-top: 20px;
}
.cc-case-card {
  background: var(--cc-white);
  border-radius: var(--cc-radius);
  overflow: hidden;
  padding-bottom: 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  position: relative;
}
.cc-case-card:hover {
  transform: translateY(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.cc-case-avatar {
  width: calc(100% + 4px);
  margin: -2px -2px 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}
.cc-case-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.cc-case-body {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}
.cc-case-initial {
  font-family: 'Anonymous Pro', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc-primary);
  letter-spacing: .05em;
  white-space: nowrap;
}
.cc-case-job {
  font-size: .78rem;
  color: var(--cc-text-light);
  line-height: 1.4;
}
.cc-case-cta { text-align: center; }

/* ===== LINE CTA セクション ===== */
.cc-line-cta { background: var(--cc-bg-mint); padding: 10px 0; }
.cc-line-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 30px 24px;
}
.cc-line-cta-img {
  width: 460px;
  height: 260px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  background: #c8d8da;
}
.cc-line-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cc-line-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-left: -60px;
}
.cc-line-cta-label {
  font-size: 0.875rem;
  color: var(--cc-navy);
  font-weight: 400;
  margin: 0 !important;
}
.cc-btn-line-cta {
  font-size: 1.1rem !important;
	padding: 18px 80px !important;
	/*padding: 16px 40px !important;*/
  font-size: 1rem !important;
  margin-left: 1.5rem;
  background: linear-gradient(180deg, #14d95e 0%, #06C755 55%, #05b04a 100%) !important;
  box-shadow: 0 3px 0 #049a40, 0 5px 14px rgba(6,199,85,.25) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.12);
  transition: opacity .2s, transform .2s, box-shadow .2s !important;
}


.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cc-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.cc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.cc-modal-window {
  position: relative;
  width: min(92vw, 760px);
  height: min(88vh, 720px);
  background: var(--cc-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(.95);
  transition: transform .25s ease;
}
.cc-modal.is-open .cc-modal-window {
  transform: scale(1);
}
.cc-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  background: rgba(0,0,0,.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cc-modal-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 40px 48px;
}
.cc-modal-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cc-primary);
  line-height: 1.6;
  margin-bottom: 24px;
  background: var(--cc-bg-mint);
  padding: 20px 24px;
  border-radius: 8px;
}
.cc-modal-body p {
  font-size: .95rem;
  color: var(--cc-text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}
.cc-modal-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cc-bg-gray);
}
.cc-modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.cc-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cc-modal-name {
  font-family: 'Anonymous Pro', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cc-primary);
  margin-bottom: 4px !important;
}
.cc-modal-career {
  font-size: .9rem;
  color: var(--cc-secondary);
  font-weight: 600;
  margin: 0 !important;
}

/* ===== よくあるご質問 ===== */
.cc-faq {
  background: var(--cc-bg-gray);
}
.cc-faq .cc-section-title { display: block; text-align: center; }
.cc-faq .cc-section-title::after { margin: 12px auto 0; }
.cc-faq-list {
  max-width: 940px;
  margin: 48px auto 0;
}
.cc-faq-item {
  background: none;
  border-radius: 0;
  margin-bottom: 3rem;
  box-shadow: none;
}
.cc-faq-item:first-child {
  border-top: none;
}
.cc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  min-height: 100px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--cc-primary);
  transition: color .2s;
}
.cc-faq-q:hover { color: var(--cc-navy); background: none; }
.cc-faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 14px;
  height: 24px;
  background: none;
  border-radius: 0;
}
.cc-faq-icon::before,
.cc-faq-icon::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cc-primary);
  transition: opacity .25s ease;
  line-height: 1;
}
.cc-faq-icon::before { content: '|'; opacity: 1; }
.cc-faq-icon::after  { content: '·'; opacity: 0; font-size: 1.6rem; }
.cc-faq-q[aria-expanded="true"] .cc-faq-icon::before { opacity: 0; }
.cc-faq-q[aria-expanded="true"] .cc-faq-icon::after  { opacity: 1; }
.cc-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.cc-faq-a.is-open {
  grid-template-rows: 1fr;
}
.cc-faq-a-inner {
  overflow: hidden;
}
.cc-faq-a-inner > p {
  font-size: 1.0625rem;
  color: var(--cc-text-light);
  line-height: 1.8;
  padding: 20px 0 24px;
  margin: 0;
}

/* ===== コラム ===== */
.cc-column {
  background: var(--cc-white);
  position: relative;
  overflow: hidden;
  padding-top: 260px;
}
.cc-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1488px;
  height: 340px;
  background: var(--cc-bg-gray);
  clip-path: path('M0 0 H1488 V300 Q744 90 0 300 Z');
  z-index: 0;
}
.cc-column .cc-container {
  position: relative;
  z-index: 2;
}
.cc-column .cc-section-title { display: block; text-align: center; }
.cc-column .cc-section-title::after { margin: 12px auto 0; }
.cc-column-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cc-column-card {
  border-radius: var(--cc-radius);
  overflow: hidden;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,.08), 0 10px 25px -5px rgba(0,0,0,.11);
  transition: transform .25s ease, box-shadow .25s ease;
}
@media (hover: hover) {
  .cc-column-card:hover,
  .cc-column-card.cc-fade-in.cc-visible:hover {
    transform: translateY(6px);
    box-shadow: 0 6px 20px -4px rgba(0,0,0,.08), 0 4px 12px -2px rgba(0,0,0,.07);
  }
}
.cc-column-thumb {
  height: 200px;
  overflow: hidden;
}
.cc-column-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cc-img-column {
  min-height: 200px;
  border-radius: 0;
}
.cc-column-info {
  padding: 16px 20px;
}
.cc-column-date {
  font-size: .78rem;
  color: var(--cc-text-light);
  display: block;
  margin-bottom: 6px;
}
.cc-column-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--cc-primary);
  line-height: 1.5;
  margin: 0;
}

/* ===== CTAバナー ===== */
.cc-cta {
  background: var(--cc-white);
  padding: 60px 0;
}
.cc-cta-card {
  /*background: var(--cc-secondary);*/
	background:#59A9C6;
  border-radius: 40px;
  padding: 72px 40px;
  text-align: center;
}
.cc-cta-en {
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: .05em;
}
.cc-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--cc-white);
  margin-bottom: 20px;
}
.cc-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.95);
  margin-bottom: 24px;
  line-height: 1.9;
}
.cc-cta-text br { display: inline; }
.cc-cta-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
  letter-spacing: .05em;
}
/*.cc-btn-cta {
	background:#009b00 !important;
  font-size: 1rem !important;
  padding: 16px 64px !important;
}
.cc-btn-cta:hover {
	background:#007a00 !important;
	opacity:1 !important;
}*/
/* ===== フッター ===== */
.cc-footer {
  background: #f5f5f5;
  padding: 140px 0 60px;
  text-align: center;
}
.cc-footer-logo {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--cc-primary);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 52px;
  text-decoration: none;
}
body.cc-lp .cc-footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 40px;
  margin-bottom: 3rem;
  padding: 0;
  list-style: none;
}
.cc-footer-nav a {
  font-size: .95rem;
  color: var(--cc-primary);
  font-weight: 500;
  transition: opacity .2s;
}
.cc-footer-nav a:hover { opacity: .6; }
.cc-footer-sub {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.cc-footer-sub a {
  font-size: .85rem;
  color: var(--cc-primary);
  opacity: .6;
  transition: opacity .2s;
}
.cc-footer-sub a:hover { opacity: 1; }

/* ==============================================
   レスポンシブ
   ============================================== */
@media (max-width: 1024px) {
  .cc-hero-content { padding: 48px 40px; }
  .cc-feature-row { gap: 40px; }
}

@media (max-width: 768px) {
  /* ナビ - モバイルでは折りたたむ */
  .cc-nav, body.cc-lp .cc-header-btn { display: none; }
  .cc-nav.is-open {
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--cc-white);
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 99;
  }
  .cc-nav.is-open ul { flex-direction: column; gap: 0; }
  .cc-nav.is-open a { padding: 14px 24px; border-radius: 0; }

  /* ヒーロー */
  .cc-hero {
    min-height: 80vh;
    align-items: center;
    background-position: 75% center;
  }
  .cc-hero-content {
    padding: 40px 24px 60px;
    max-width: 100%;
  }
  .cc-hero-label { font-size: 1rem; margin-left: 1rem !important; }
  .cc-hero-logo-img { width: 50vw; max-width: 220px; margin-bottom: 0; }
  body.cc-lp .cc-btn-hero { padding: 6px 12px !important; font-size: .95rem; border-radius: 10px !important; }
	.cc-hero .cc-btn-line-cta {
		font-size:.75rem !important;
		margin-left:0;
		padding:12px 24px !important;
	}

  /* サービス */
  .cc-service-body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .cc-service-body h3 { order: 1; }
  .cc-service-body p:not(.cc-service-full) { order: 2; }
  .cc-service-img-photo {
    order: 3;
    float: none;
    width: 100%;
    margin: 16px 0;
    aspect-ratio: 4 / 3;
  }
  .cc-service-clearfix { order: 4; display: none; }
  .cc-service-full { order: 5; }
  .cc-service-body h3 { font-size: 1.3rem !important; }
  .cc-service-body p, .cc-service-text p { font-size: 0.875rem; }
  .cc-service-img { height: 240px; }

  /* 悩み */
	.cc-pain.cc-section{
		padding:80px 0;
	}
	.cc-pain::before{
		height:60px;
	}
  .cc-pain-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 32px;
    padding: 32px 24px 28px;
    gap: 16px;
  }
  .cc-pain-card:nth-child(2) { margin-left: 0; }
  .cc-pain-illust { width: 100px; height: 110px; min-height: 0; border-radius: 12px; }
  .cc-pain-body h3 { text-align: left; }
  .cc-pain-body p { text-align: left; }

  /* 強み */
  .cc-feature-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    border-radius: 40px !important;
    margin-left: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .cc-feature-text { padding: 0; }
  .cc-feature-text .cc-feature-num-wrap { display: block; text-align: center; order: 1; }
  .cc-feature-num { font-size: 3.5rem; }
  .cc-feature-text h3 { font-size: 1.15rem; margin-top: 8px !important; order: 2; }
  .cc-feature-text p { order: 3; font-size: .9rem; padding: 0 1rem; }
  .cc-feature-img {
    order: 4;
    height: 180px;
    min-height: 0;
    border-radius: 9999px;
    width: 100%;
  }
  .cc-feature-img .cc-img-placeholder { border-radius: 9999px; min-height: 180px; }

  /* フロー */
  .cc-flow-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .cc-flow-step { width: 100%; }
  .cc-flow-arrow { transform: rotate(90deg); margin: 0 auto; padding: 30px 0; text-align: center; display: block; }

  /* 事例 */
  .cc-case-grid { grid-template-columns: repeat(2, 1fr); }

  /* コラム：SPは2列、padding-topをアーチより大きく */
  .cc-column { padding-top: 280px; }
  .cc-column-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cc-column-thumb { height: 160px; }
  .cc-column-info { padding: 12px 12px 20px; }
  .cc-column-title { font-size: .85rem; }

  /* LINE CTA：縦積み */
  .cc-line-cta-inner {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
  .cc-line-cta-img {
    width: 300px;
    height: 170px;
  }
  .cc-line-cta.cc-section { padding: 30px 0; }
  .cc-line-cta-content {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .cc-btn-line-cta {
    padding: 16px 48px !important;
  }

  /* CTA バナー */
  .cc-cta { padding: 40px 0; }
  .cc-cta-card {
    border-radius: 24px;
    padding: 48px 24px;
  }
  .cc-cta-text br { display: none; }

  /* フッター */
  .cc-footer { padding: 120px 0 80px; }
  .cc-footer-logo { font-size: clamp(2.5rem, 12vw, 3.5rem); margin-bottom: 36px; }
  .cc-footer-nav { display: none; }
  .cc-footer-sub { gap: 28px; flex-direction: row; justify-content: center; }

  /* セクション余白 */
  .cc-section { padding: 60px 0; }
}

/* ===== フェードインアニメーション ===== */
.cc-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.cc-fade-in.cc-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
	.cc-header-inner {
		height:60px;
	}
  .cc-hero-content { padding: 40px 20px; }
  .cc-hero-title { font-size: 2.5rem; }
  .cc-btn-hero { padding: 14px 28px; font-size: .9rem; }

  /* コラム：極小でも2列キープ、カード最小調整 */
  .cc-column { padding-top: 100px; }
  .cc-column-grid { gap: 10px; }
  .cc-column-thumb { height: 140px; }
  .cc-column-title { font-size: .8rem; }
  .cc-column-date { font-size: .7rem; }
	.cc-column::before {
		height:60px;
	}

  /* LINE CTA */
  .cc-line-cta-img { width: 300px; height: 170px; }

  /* CTA */
  .cc-cta-card { padding: 40px 16px; border-radius: 20px; }

  /* フッター */
  .cc-footer { padding: 60px 0 40px; }
  .cc-footer-sub { flex-direction: row; gap: 28px; }
}

/* ==============================================
   シングル記事ページ
   ============================================== */
.cc-single-main {
  padding: 80px 0 120px;
  background: var(--cc-white);
  min-height: 60vh;
}
.cc-single-article {
  max-width: 760px;
  margin: 0 auto;
}
.cc-single-thumb {
  border-radius: var(--cc-radius);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
}
.cc-single-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cc-single-meta {
  margin-bottom: 12px;
}
.cc-single-date {
  font-size: .82rem;
  color: var(--cc-text-light);
  letter-spacing: .02em;
}
.cc-single-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--cc-primary);
  line-height: 1.5;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid #eee;
}
.cc-single-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--cc-text);
}
.cc-single-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cc-primary);
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--cc-secondary);
}
.cc-single-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cc-primary);
  margin: 32px 0 12px;
}
.cc-single-body p {
  margin-bottom: 1.5em;
}
.cc-single-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
  display: block;
}
.cc-single-body ul,
.cc-single-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.cc-single-body li {
  margin-bottom: .5em;
  line-height: 1.8;
}
.cc-single-back {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.cc-single-back-link {
  font-size: .9rem;
  color: var(--cc-secondary);
  font-weight: 600;
  transition: opacity .2s;
}
.cc-single-back-link:hover { opacity: .7; }

@media (max-width: 768px) {
  .cc-single-main { padding: 48px 0 80px; }
  .cc-single-title { font-size: 1.4rem; margin-bottom: 28px; }
  .cc-single-body { font-size: .95rem; }
  .cc-single-body h2 { font-size: 1.15rem; }
}


.cc-faq{
	background:#fff;
}
.cc-service{
	background:#f4f5f7;
}

 /* ==============================================
    固定ページ共通
    ============================================== */
 /* Cocoon自動生成の目次を非表示 */
 body.cc-lp .toc { display: none !important; }
 .cc-page-hero {
   background: var(--cc-bg-gray);
   padding: 60px 0 48px;
 }
 .cc-page-breadcrumb {
   font-size: .78rem;
   color: var(--cc-text-light);
   margin-bottom: 16px;
 }
 .cc-page-breadcrumb a {
   color: var(--cc-text-light);
   text-decoration: underline;
 }
 .cc-page-title {
   font-size: clamp(2rem, 4vw, 2.8rem);
   font-weight: 800;
   color: var(--cc-primary);
   line-height: 1.3;
 }
 .cc-page-main {
   padding: 72px 0 120px;
   background: var(--cc-white);
 }
 .cc-page-body {
   max-width: 820px;
   margin: 0 auto;
   font-size: .95rem;
   line-height: 1.9;
   color: var(--cc-text);
 }
 .cc-page-body p { margin-bottom: 1.4em; }
 .cc-page-body h2 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--cc-white);
   background: var(--cc-secondary);
   padding: 10px 20px;
   margin: 40px 0 16px;
   border-radius: 4px;
 }
 .cc-page-body h3 {
   font-size: .95rem;
   font-weight: 700;
   color: var(--cc-primary);
   margin: 24px 0 8px;
 }
 .cc-page-body ol,
 .cc-page-body ul {
   padding-left: 1.5em;
   margin-bottom: 1.4em;
 }
 .cc-page-body li { margin-bottom: .4em; }
 
 @media (max-width: 768px) {
   .cc-page-hero { padding: 40px 0 32px; }
   .cc-page-main { padding: 48px 0 80px; }
   .cc-page-body { font-size: .9rem; }
 }

/* =======================================================
   ★★★ ここから LP 用（企業向け採用LP 通常版）★★★
   page-employer-lp.php で使用する専用スタイル
   ─────────────────────────────────────────────────────
   【サーバー貼り付け用】
   このコメントから「★★★ ここまで LP 用 ★★★」まで
   を career-connect.css の該当箇所 or 末尾にコピーしてください。
   =======================================================

   企業向け採用LP (elp) - スタイル
   ======================================================= */

/* ===== 共通ボタン（プライマリ） ===== */
.cc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cc-secondary);
  color: #fff !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 32px;
  transition: opacity .2s, transform .2s;
  text-decoration: none;
  white-space: nowrap;
}
.cc-btn-primary:hover {
  opacity: .85;
  transform: translateY(-2px);
}

/* ===== ヒーロー ===== */
.elp-hero {
  background: linear-gradient(135deg, var(--cc-primary) 0%, #1a2a6c 60%, #2d4b8c 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.elp-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.elp-hero-text {
  flex: 1;
  max-width: 600px;
}
.elp-hero-fixed {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.elp-hero-zero {
  font-size: 1.2em;
  line-height: 1;
}
.elp-hero-sub1 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 4px;
}
.elp-hero-sub2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
}
.elp-hero-highlight {
  background: #f5c518;
  color: var(--cc-primary);
  padding: 0 6px 2px;
  border-radius: 4px;
  display: inline-block;
}
.elp-hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin: 0;
}
.elp-hero-img-wrap {
  flex-shrink: 0;
  width: clamp(240px, 35%, 420px);
}
.elp-hero-photo {
  width: 100%;
  height: auto;
  border-radius: var(--cc-radius);
  object-fit: cover;
}
.elp-hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--cc-radius);
  background: rgba(255,255,255,.12);
  border: 2px dashed rgba(255,255,255,.3);
}

/* ===== 固定費0円ってどういうこと？ ===== */
.elp-what {
  background: #f0f5ff;
  padding: 60px 0;
}
.elp-what-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.elp-speech-bubble {
  position: relative;
  background: var(--cc-white);
  border: 2px solid var(--cc-secondary);
  border-radius: 20px;
  padding: 20px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cc-primary);
  line-height: 1.6;
  text-align: center;
}
.elp-speech-bubble::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  border: 11px solid transparent;
  border-left-color: var(--cc-secondary);
}
.elp-speech-bubble::before {
  content: '';
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left-color: var(--cc-white);
  z-index: 1;
}
.elp-what-arrow {
  font-size: 2rem;
  color: var(--cc-secondary);
  flex-shrink: 0;
}
.elp-what-answer {
  flex: 1;
  min-width: 260px;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--cc-text);
  line-height: 1.8;
}
.elp-what-answer strong {
  color: var(--cc-primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--cc-secondary);
  text-underline-offset: 3px;
}

/* ===== 3つのポイント ===== */
.elp-points {
  background: var(--cc-primary);
}
.elp-points .cc-section-en  { color: rgba(255,255,255,.6); }
.elp-points .cc-section-title { color: #fff; }
.elp-points .cc-section-title::after { background: var(--cc-secondary); }
.elp-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.elp-point-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--cc-radius);
  padding: 36px 28px;
  transition: background .2s;
}
.elp-point-card:hover {
  background: rgba(255,255,255,.13);
}
.elp-point-label {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc-secondary);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.elp-point-num {
  font-size: 1.6rem;
  font-weight: 900;
  vertical-align: middle;
  line-height: 1;
}
.elp-point-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
}
.elp-point-body {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin: 0;
}

/* ===== こんな企業におすすめ ===== */
.elp-recommend {
  background: var(--cc-white);
}
.elp-recommend-body {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 56px;
}
.elp-recommend-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.elp-recommend-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cc-text);
  line-height: 1.7;
  padding: 16px 20px;
  background: var(--cc-bg-gray);
  border-radius: 10px;
  border-left: 4px solid var(--cc-secondary);
}
.elp-recommend-list li::before {
  content: '✓';
  color: var(--cc-secondary);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.elp-recommend-illust {
  flex-shrink: 0;
  width: clamp(180px, 28%, 280px);
}
.elp-recommend-illust img {
  width: 100%;
  height: auto;
}
.elp-illust-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--cc-radius);
  background: var(--cc-bg-mint);
  border: 2px dashed var(--cc-tertiary);
}

/* 比較表 */
.elp-compare {
  margin-top: 16px;
}
.elp-compare-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cc-primary);
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid var(--cc-secondary);
}
.elp-compare-table-wrap {
  overflow-x: auto;
}
.elp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  border-radius: var(--cc-radius);
  overflow: hidden;
  box-shadow: var(--cc-shadow);
}
.elp-compare-table thead th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
}
.elp-compare-table thead th:first-child {
  background: var(--cc-bg-gray);
  color: var(--cc-text-light);
  min-width: 120px;
}
.elp-th-general {
  background: #e8e8e8;
  color: var(--cc-text);
}
.elp-th-ours {
  background: var(--cc-primary);
  color: #fff;
}
.elp-compare-table tbody th {
  background: var(--cc-bg-gray);
  color: var(--cc-text);
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.elp-compare-table tbody td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}
.elp-td-general {
  background: #fafafa;
  color: var(--cc-text-light);
}
.elp-td-ours {
  background: #eef8ff;
  color: var(--cc-primary);
}
.elp-td-ours strong {
  font-weight: 800;
  color: var(--cc-primary);
}
.elp-compare-table tbody tr:last-child th,
.elp-compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== ご利用の流れ ===== */
.elp-flow {
  background: var(--cc-bg-gray);
}
.elp-flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.elp-flow-step {
  flex: 1;
  background: var(--cc-white);
  border-radius: var(--cc-radius);
  padding: 32px 20px 28px;
  text-align: center;
  box-shadow: var(--cc-shadow);
  position: relative;
}
.elp-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cc-primary);
  color: #fff;
  border-radius: 50%;
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
}
.elp-flow-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.elp-flow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.elp-flow-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cc-primary);
  line-height: 1.5;
  margin-bottom: 12px;
}
.elp-flow-desc {
  font-size: .88rem;
  color: var(--cc-text-light);
  line-height: 1.7;
  margin: 0;
}
.elp-flow-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  padding-top: 70px;
  font-size: 1.5rem;
  color: var(--cc-secondary);
}

/* ===== CTAバナー ===== */
.elp-cta-banner {
  background: linear-gradient(135deg, var(--cc-secondary) 0%, var(--cc-quaternary) 100%);
  padding: 72px 0;
}
.elp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.elp-cta-text {
  flex: 1;
}
.elp-cta-lead {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.elp-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
}
.elp-cta-qr-note {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
}
.elp-cta-btn {
  background: #fff !important;
  color: var(--cc-primary) !important;
  font-size: 1.05rem;
  padding: 16px 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.elp-cta-btn:hover {
  opacity: .9 !important;
}
.elp-cta-qr {
  flex-shrink: 0;
}
.elp-qr-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
}
.elp-qr-placeholder {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--cc-text-light);
  text-align: center;
  line-height: 1.4;
}

/* ===== LP用フッター ===== */
.elp-footer {
  background: var(--cc-primary);
  padding: 48px 0 32px;
  color: rgba(255,255,255,.85);
}
.elp-footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 32px;
}
.elp-footer-brand {
  flex-shrink: 0;
}
.elp-footer-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.elp-footer-logo-main {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: .02em;
}
.elp-footer-logo-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.elp-footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.elp-footer-company {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.elp-footer-op,
.elp-footer-address {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.elp-footer-copy {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  margin: 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .elp-hero-inner {
    flex-direction: column;
    padding: 60px 24px 48px;
    text-align: center;
  }
  .elp-hero-img-wrap {
    width: min(320px, 80%);
  }
  .elp-points-grid {
    grid-template-columns: 1fr;
  }
  .elp-recommend-body {
    flex-direction: column;
    align-items: center;
  }
  .elp-recommend-illust {
    width: min(260px, 70%);
  }
  .elp-flow-steps {
    flex-direction: column;
    gap: 16px;
  }
  .elp-flow-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    align-self: center;
  }
  .elp-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .elp-cta-text { order: 1; }
  .elp-cta-qr  { order: 0; }
  .elp-footer-inner {
    flex-direction: column;
    gap: 24px;
  }
  .elp-what-inner {
    flex-direction: column;
    text-align: center;
  }
  .elp-speech-bubble::after,
  .elp-speech-bubble::before {
    display: none;
  }
  .elp-what-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 600px) {
  .elp-hero-fixed { font-size: 3rem; }
  .elp-hero-sub2  { font-size: 2rem; }
}

/* ===== デザイン調整（決定版準拠） ===== */

/* キャッチコピー帯 */
.elp-catchcopy {
  background: #d4e0f0;
  padding: 56px 0;
  text-align: center;
}
.elp-catchcopy-text {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--cc-primary);
  line-height: 2;
  margin: 0;
  letter-spacing: .04em;
}

/* Point.1/2/3 ラベルをデザインに合わせてイエローグリーンに */
.elp-point-label {
  color: #9DC43A;
}

/* Pointsセクション：英語ラベル「POINTS」と「選ばれる3つの理由」見出しを非表示 */
.elp-points .cc-section-head {
  display: none;
}

/* FOR YOU・FLOW の英語ラベルを非表示 */
.elp-recommend .cc-section-en,
.elp-flow .cc-section-en {
  display: none;
}

/* 「こんな企業におすすめ」見出しをデザインに合わせて赤□スタイルへ */
.elp-recommend .cc-section-head {
  text-align: left;
  margin-bottom: 40px;
}
.elp-recommend .cc-section-title {
  padding-bottom: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}
.elp-recommend .cc-section-title::after {
  display: none;
}
.elp-recommend .cc-section-title::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #D63030;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* 比較表の左ボーダーを赤に */
.elp-compare-title {
  border-left-color: #D63030;
}

/* Hero: flex-startで上揃え・パディングで位置調整 */
.elp-hero-inner {
  align-items: center !important;
  padding: 80px 120px !important;
}
/* テキストブロックを flex column にして gap で行間制御 */
.elp-hero-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* p タグのデフォルト margin をリセット（!important でテーマを上書き） */
.elp-hero-text .elp-hero-fixed,
.elp-hero-text .elp-hero-sub1,
.elp-hero-text .elp-hero-sub2 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1;
}
/* 「成果だけに投資する」→ 一番小さいサブテキストに格下げ */
.elp-hero-sub1 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
}
/* 「0」を黄色・さらに大きく目立たせる */
.elp-hero-zero {
  color: var(--cc-primary);
  font-size: 1.6em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

/* CTA リード文を少し大きく */
.elp-cta-lead {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
}
/* CTA: 左端パディング追加 */
.elp-cta-banner .cc-container {
  padding: 0 60px;
}

/* ===== 白ベースカラースキーム ===== */
/* Hero: 白背景＋紺テキストへ変更 */
.elp-hero {
  background: #fff !important;
}
.elp-hero-fixed {
  color: var(--cc-primary) !important;
}
.elp-hero-sub1 {
  color: var(--cc-primary) !important;
}
.elp-hero-sub2 {
  color: var(--cc-primary) !important;
}
/* placeholder枠を白背景に合わせて調整 */
.elp-hero-photo-placeholder {
  background: #eef2f7 !important;
  border-color: #c8d8e8 !important;
}

/* 「0」の縦揃え修正: baseline基準で下揃え */
.elp-hero-zero {
  vertical-align: -0.15em !important;
}

/* Points: セクション背景を白に変更 */
.elp-points {
  background: #fff !important;
}
.elp-points .cc-section-title {
  color: var(--cc-primary) !important;
}
/* カードはチラシ同様に紺を維持、ただし白背景で映えるよう中明度に変更 */
.elp-point-card {
  background: #0f3460 !important;
  border-color: #0f3460 !important;
  box-shadow: 0 4px 20px rgba(5,0,56,.15);
}

/* ===== セクション間の視覚的分離 ===== */
/* Hero 下端に区切り線 */
.elp-hero {
  border-bottom: 3px solid #e8ecf5 !important;
  min-height: 620px !important;
}
/* Points セクションを薄グレー帯で前後のセクションと差別化 */
.elp-points {
  background: #f5f7fb !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
/* Points グリッドのパディング */
.elp-points-grid {
  padding: 0 20px;
}
/* Points カード: 白背景に合わせて影を強調 */
.elp-point-card {
  box-shadow: 0 8px 32px rgba(5,0,56,.25) !important;
}

/* ===== CTAボタンを黄色にして目立たせる ===== */
.elp-cta-btn {
  background: #f5c518 !important;
  color: var(--cc-primary) !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(245,197,24,.4) !important;
}
.elp-cta-btn:hover {
  background: #e8b800 !important;
  transform: translateY(-2px);
  opacity: 1 !important;
}

/* ===== Hero サイズ階層修正（チラシ準拠）=====
   チラシの比率: 人材採用(115) > 0(100) > 固定費円(65) > 成果だけに(45)
   ===== */
/* 固定費0円 ベースを縮小 → 「0」の迫力を高める */
.elp-hero-fixed {
  font-size: clamp(2.8rem, 5vw, 4rem) !important;
}
/* 「0」を2em(=8rem)に拡大 → サイズだけで圧倒的存在感（色は紺のまま） */
.elp-hero-zero {
  font-size: 2em !important;
  vertical-align: -0.1em !important;
  color: var(--cc-primary) !important;
}
/* 「人材採用へ。」→ バランス調整して5rem前後に */
.elp-hero-sub2 {
  font-size: clamp(3rem, 5.5vw, 5rem) !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--cc-primary) !important;
}

/* ===== Point.X ラベル 黄緑色・サイズ強化 ===== */
.elp-point-label {
  color: #9DC43A !important;
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  letter-spacing: .05em !important;
}
.elp-point-num {
  font-size: 1.8rem !important;
}
/* ポイントカードのタイトルをもう少し大きく */
.elp-point-title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important;
  line-height: 1.3 !important;
}

/* =====================================================
   フィードバック v2 — 企業向けLP デザイン改善
   ===================================================== */

/* アクセントカラー定義 */
body.cc-lp.cc-elp {
  --elp-accent:       #F5B400;
  --elp-accent-light: #FFF8E1;
  --elp-accent-dark:  #C89300;
}

/* ─── Hero: 0円強調を抑制 → バッジスタイルに格下げ ─── */
.elp-hero {
  background: #ffffff !important;
  border-bottom: 2px solid #e8e8e8 !important;
  min-height: 560px !important;
}
.elp-hero-inner {
  align-items: center !important;
  padding: 72px 120px !important;
}
/* 「固定費0円・完全成功報酬型」→ 小バッジ化 */
.elp-hero-fixed {
  display: inline-flex !important;
  align-items: center !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: var(--elp-accent-dark) !important;
  background: var(--elp-accent-light) !important;
  border: 1.5px solid var(--elp-accent) !important;
  border-radius: 20px !important;
  padding: 5px 16px 5px 14px !important;
  margin-bottom: 20px !important;
  line-height: 1.5 !important;
  letter-spacing: .01em !important;
}
.elp-hero-fixed::before {
  content: '✦';
  margin-right: 6px;
  color: var(--elp-accent);
  font-size: .8em;
}
/* 「0」は通常サイズに戻す */
.elp-hero-zero {
  font-size: 1em !important;
  color: inherit !important;
  font-weight: 900 !important;
  vertical-align: middle !important;
}
/* メインキャッチコピー（sub1）を主役に格上げ */
.elp-hero-sub1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem) !important;
  color: var(--cc-primary) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}
/* 「人材採用へ。」サブ */
.elp-hero-sub2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  color: var(--cc-primary) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-top: 6px !important;
  margin-bottom: 24px !important;
}
.elp-hero-highlight {
  background: var(--elp-accent) !important;
  color: var(--cc-primary) !important;
  padding: 0 8px 3px !important;
  border-radius: 6px !important;
}

/* ─── キャッチコピー帯 ─── */
.elp-catchcopy {
  background: linear-gradient(135deg, #e8f0ff 0%, #edf5ff 100%) !important;
  padding: 48px 0 !important;
}
.elp-catchcopy-text {
  color: var(--cc-primary) !important;
}

/* ─── お悩みセクション（新規） ─── */
.elp-worries {
  background: var(--elp-accent-light);
  padding: 80px 0;
}
.elp-worries-heading {
  text-align: center;
  margin-bottom: 48px;
}
.elp-worries-en {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--elp-accent-dark);
  margin-bottom: 12px;
}
.elp-worries-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--cc-primary);
  line-height: 1.45;
  margin: 0 0 0;
  display: inline-block;
}
.elp-worries-title .elp-accent-text {
  color: var(--elp-accent-dark);
}
.elp-worries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 44px;
}
.elp-worry-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-left: 5px solid var(--elp-accent);
  transition: transform .2s, box-shadow .2s;
}
.elp-worry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.elp-worry-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.elp-worry-body { flex: 1; }
.elp-worry-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc-primary);
  margin: 0 0 6px;
  line-height: 1.45;
}
.elp-worry-desc {
  font-size: .84rem;
  color: var(--cc-text-light);
  margin: 0;
  line-height: 1.7;
}
.elp-worries-resolve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  background: var(--cc-primary);
  color: #fff;
  border-radius: 16px;
  padding: 28px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.elp-worries-resolve-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}
.elp-worries-resolve-text strong {
  color: var(--elp-accent);
}
.elp-worries-resolve-arrow {
  font-size: 1.4rem;
  color: var(--elp-accent);
}

/* ─── Points: 白カードに全面リデザイン ─── */
.elp-points {
  background: #f5f7fb !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.elp-points .cc-section-head {
  display: block !important;
  text-align: center !important;
  margin-bottom: 44px !important;
}
.elp-points .cc-section-en {
  display: block !important;
  color: var(--cc-text-light) !important;
}
.elp-points .cc-section-title {
  color: var(--cc-primary) !important;
}
.elp-point-card {
  background: #fff !important;
  border: none !important;
  border-top: 4px solid var(--cc-secondary) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.07) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.elp-point-card:hover {
  background: #fff !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 36px rgba(0,0,0,.13) !important;
}
.elp-point-label {
  color: var(--elp-accent-dark) !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
}
.elp-point-num {
  font-size: 1.7rem !important;
}
.elp-point-title {
  color: var(--cc-primary) !important;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem) !important;
  line-height: 1.4 !important;
}
.elp-point-body {
  color: var(--cc-text-light) !important;
}

/* ─── 比較表: 当社列をセカンダリカラーに ─── */
.elp-th-ours {
  background: var(--cc-secondary) !important;
  color: #fff !important;
}
.elp-td-ours {
  background: #eef8ff !important;
  color: var(--cc-primary) !important;
}
.elp-td-ours strong {
  color: var(--cc-secondary) !important;
}

/* ─── Recommend: アクセントを黄色系に ─── */
.elp-recommend-list li {
  border-left-color: var(--elp-accent) !important;
}
.elp-recommend-list li::before {
  content: '✓';
  color: var(--elp-accent-dark) !important;
}

/* ─── CTA ボタン ─── */
.elp-cta-btn {
  background: var(--elp-accent) !important;
  color: var(--cc-primary) !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(245,180,0,.4) !important;
}
.elp-cta-btn:hover {
  background: var(--elp-accent-dark) !important;
  transform: translateY(-2px) !important;
  opacity: 1 !important;
}

/* ─── レスポンシブ ─── */
@media (max-width: 768px) {
  .elp-hero-inner {
    padding: 60px 24px 48px !important;
    text-align: center;
  }
  .elp-hero-fixed {
    margin: 0 auto 16px !important;
  }
  .elp-worries-grid {
    grid-template-columns: 1fr;
  }
  .elp-worries-resolve {
    flex-direction: column;
    gap: 8px;
    padding: 24px 20px;
  }
}

/* =====================================================
   v3 — Hero 画像フルハイト + テキスト文言リセット
   ===================================================== */

/* ─── Hero固定費0円: バッジ解除 → テキストに戻す ─── */
.elp-hero-fixed {
  display: block !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 6px !important;
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  font-weight: 900 !important;
  color: var(--cc-primary) !important;
  letter-spacing: -.02em !important;
  line-height: 1.1 !important;
}
.elp-hero-fixed::before {
  display: none !important;
}
/* 「0」: 控えめ強調（1.35em = ちょうどいいアクセント） */
.elp-hero-zero {
  font-size: 1.35em !important;
  color: var(--cc-primary) !important;
  font-weight: 900 !important;
  vertical-align: -.12em !important;
  display: inline-block !important;
}
.elp-hero-sub1 {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem) !important;
  color: rgba(5,0,56,.65) !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 6px !important;
}
.elp-hero-sub2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem) !important;
  color: var(--cc-primary) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-top: 4px !important;
  margin-bottom: 28px !important;
}

/* ─── Hero: 画像フルビューポート高さ ─── */
.elp-hero {
  min-height: 100vh !important;
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
}
.elp-hero-inner {
  display: flex !important;
  align-items: center !important;
  min-height: 100vh !important;
  padding: 80px 43% 80px 120px !important;
  max-width: 100% !important;
  gap: 0 !important;
}
.elp-hero-text {
  position: relative !important;
  z-index: 1 !important;
  max-width: 580px !important;
  flex: 0 0 auto !important;
}
/* 画像を右側に絶対配置でフルハイト */
.elp-hero-img-wrap {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 42% !important;
  overflow: hidden !important;
  flex: none !important;
}
.elp-hero-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 0 !important;
}
.elp-hero-photo-placeholder {
  height: 100% !important;
  min-height: 400px !important;
}

/* ─── Mobile: スタック表示に戻す ─── */
@media (max-width: 900px) {
  .elp-hero {
    display: flex !important;
    min-height: auto !important;
  }
  .elp-hero-inner {
    flex-direction: column !important;
    padding: 60px 24px 0 !important;
    min-height: auto !important;
    text-align: center;
    align-items: center !important;
  }
  .elp-hero-img-wrap {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: min(340px, 90%) !important;
    height: 300px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    margin-top: 40px !important;
  }
  .elp-hero-text {
    max-width: 100% !important;
  }
}

/* =====================================================
   v4 — Hero レイアウト修正（flex復元・ヘッダー分オフセット）
   ===================================================== */

/* flex復元 + ヘッダー100px分を引いてファーストビュー内に収める */
.elp-hero {
  display: flex !important;
  align-items: stretch !important;
  min-height: calc(100vh - 100px) !important;
  position: relative !important;
  overflow: hidden !important;
}
/* 内側を flex row + 垂直中央揃え */
.elp-hero-inner {
  flex: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 80px 44% 80px 120px !important;
  gap: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  min-height: unset !important;
}
/* テキストブロック */
.elp-hero-text {
  position: relative !important;
  z-index: 1 !important;
  max-width: 560px !important;
  flex: 0 0 auto !important;
}
/* 画像: Heroの高さに合わせて右側フルハイト */
.elp-hero-img-wrap {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 42% !important;
  overflow: hidden !important;
}
.elp-hero-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 0 !important;
}

/* Mobile */
@media (max-width: 900px) {
  .elp-hero {
    min-height: auto !important;
    align-items: flex-start !important;
  }
  .elp-hero-inner {
    flex-direction: column !important;
    padding: 60px 24px 0 !important;
    min-height: auto !important;
    align-items: center !important;
    text-align: center !important;
  }
  .elp-hero-img-wrap {
    position: relative !important;
    right: auto !important; top: auto !important; bottom: auto !important;
    width: 100% !important;
    height: 280px !important;
    margin-top: 40px !important;
    border-radius: 0 !important;
  }
  .elp-hero-text {
    max-width: 100% !important;
  }
}

/* =====================================================
   v5 — 固定費0円セクション: 画像グリッド追加
   ===================================================== */
.elp-what-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.elp-what-img-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.elp-what-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.elp-what-img-item:hover img {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .elp-what-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =====================================================
   v6 — Pointカードに画像追加
   ===================================================== */
.elp-point-card {
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}
.elp-point-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.elp-point-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.elp-point-card:hover .elp-point-img-wrap img {
  transform: scale(1.05);
}
.elp-point-card-body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   v7 — お悩みセクション
   ===================================================== */
body.cc-lp.cc-elp .elp-worries {
  background: #f7f9ff;
}
body.cc-lp.cc-elp .elp-worries-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  max-width: 860px;
  margin: 0 auto;
}
body.cc-lp.cc-elp .elp-worry-card {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 28px 24px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  box-shadow: 0 2px 12px rgba(26,42,110,.08) !important;
  border-left: 4px solid #1a2a6e !important;
}
body.cc-lp.cc-elp .elp-worry-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
body.cc-lp.cc-elp .elp-worry-text {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #1a2a6e !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
@media (max-width: 600px) {
  body.cc-lp.cc-elp .elp-worries-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =====================================================
   v8 — お悩みセクション（参考サイト合わせ）
   ===================================================== */
body.cc-lp.cc-elp .elp-worries {
  background: #1d325b !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
body.cc-lp.cc-elp .elp-worries .cc-section-en {
  color: rgba(255,255,255,.5) !important;
}
body.cc-lp.cc-elp .elp-worries .cc-section-title {
  color: #fff !important;
}
body.cc-lp.cc-elp .elp-worries-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 960px;
  margin: 0 auto 40px !important;
}
body.cc-lp.cc-elp .elp-worry-card {
  background: #fff !important;
  border-radius: 8px !important;
  padding: 36px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.15) !important;
  border-left: none !important;
  min-height: 120px;
}
body.cc-lp.cc-elp .elp-worry-icon {
  display: none !important;
}
body.cc-lp.cc-elp .elp-worry-text {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #1d325b !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}
body.cc-lp.cc-elp .elp-worries-cta {
  text-align: center !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  background: rgba(255,255,255,.15) !important;
  border: 2px solid rgba(255,255,255,.6) !important;
  border-radius: 40px !important;
  padding: 16px 40px !important;
  max-width: 600px;
  margin: 0 auto !important;
  display: block !important;
}
@media (max-width: 700px) {
  body.cc-lp.cc-elp .elp-worries-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =====================================================
   v9 — お悩みカード タイトル＋本文スタイル
   ===================================================== */
body.cc-lp.cc-elp .elp-worry-card {
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding: 32px 28px !important;
  gap: 0 !important;
  min-height: 200px;
}
body.cc-lp.cc-elp .elp-worry-title {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #1d325b !important;
  line-height: 1.6 !important;
  margin: 0 0 16px !important;
  padding-top: 8px;
  border-top: 2px solid #1d325b;
  width: 100%;
}
body.cc-lp.cc-elp .elp-worry-body {
  font-size: .875rem !important;
  color: #444 !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

/* =====================================================
   v10 — ヒーローに説明文追加・キャッチコピー帯を非表示
   ===================================================== */
body.cc-lp.cc-elp .elp-catchcopy {
  display: none !important;
}
body.cc-lp.cc-elp .elp-hero-desc {
  margin-top: 24px !important;
  font-size: .95rem !important;
  color: #1a2a6e !important;
  line-height: 1.8 !important;
  max-width: 380px;
}
body.cc-lp.cc-elp .elp-hero-desc strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================
   v11 — ヒーローレイアウト バランス調整
   ===================================================== */
/* テキストブロックを縦中央に */
body.cc-lp.cc-elp .elp-hero-inner {
  align-items: center !important;
  padding: 0 !important;
}
body.cc-lp.cc-elp .elp-hero-text {
  padding: 60px 46% 60px 80px !important;
  justify-content: center !important;
}

/* 固定費0円：「0」をより大きく */
body.cc-lp.cc-elp .elp-hero-fixed {
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
}
body.cc-lp.cc-elp .elp-hero-zero {
  font-size: 1.7em !important;
  line-height: 0.85 !important;
  vertical-align: -0.15em !important;
  display: inline-block;
}

/* サブタイトル */
body.cc-lp.cc-elp .elp-hero-sub1 {
  font-size: 1.15rem !important;
  color: #1a2a6e !important;
  margin-bottom: 4px !important;
  font-weight: 600 !important;
}
body.cc-lp.cc-elp .elp-hero-sub2 {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  margin-bottom: 20px !important;
  line-height: 1.3 !important;
}

/* 説明文 */
body.cc-lp.cc-elp .elp-hero-desc {
  font-size: .925rem !important;
  margin-top: 20px !important;
  line-height: 1.9 !important;
}

/* =====================================================
   v12 — v11リバート＋ヒーロー上部余白修正
   ===================================================== */
/* v11のalign-items:centerを元に戻す */
body.cc-lp.cc-elp .elp-hero-inner {
  align-items: stretch !important;
}
body.cc-lp.cc-elp .elp-hero-text {
  padding: 60px 44% 60px 80px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  width: auto !important;
  min-width: 0 !important;
  flex: 1 !important;
}
/* 固定費0円サイズ調整 */
body.cc-lp.cc-elp .elp-hero-fixed {
  font-size: 3rem !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 8px !important;
}
body.cc-lp.cc-elp .elp-hero-zero {
  font-size: 1.6em !important;
  line-height: 0.9 !important;
  vertical-align: -0.1em !important;
  display: inline-block !important;
}
body.cc-lp.cc-elp .elp-hero-sub1 {
  font-size: 1.1rem !important;
  margin-bottom: 2px !important;
  font-weight: 600 !important;
}
body.cc-lp.cc-elp .elp-hero-sub2 {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
}
body.cc-lp.cc-elp .elp-hero-desc {
  font-size: .9rem !important;
  margin-top: 16px !important;
  max-width: 400px !important;
}

/* =====================================================
   v13 — v11/v12全リバート（v4相当の状態に復元）
   ===================================================== */
body.cc-lp.cc-elp .elp-hero-inner {
  align-items: center !important;
  padding: 80px 44% 80px 120px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  min-height: unset !important;
}
body.cc-lp.cc-elp .elp-hero-text {
  padding: 0 !important;
  position: relative !important;
  z-index: 1 !important;
  max-width: 560px !important;
  flex: 0 0 auto !important;
  justify-content: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  min-width: unset !important;
}
body.cc-lp.cc-elp .elp-hero-fixed {
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  margin-bottom: 0 !important;
}
body.cc-lp.cc-elp .elp-hero-zero {
  font-size: 1.4em !important;
  line-height: 1 !important;
  vertical-align: -0.05em !important;
  display: inline-block !important;
}
body.cc-lp.cc-elp .elp-hero-sub1 {
  font-size: 1rem !important;
  margin-bottom: 0 !important;
  font-weight: 600 !important;
}
body.cc-lp.cc-elp .elp-hero-sub2 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  margin-bottom: 0 !important;
  line-height: 1.4 !important;
}
body.cc-lp.cc-elp .elp-hero-desc {
  font-size: .9rem !important;
  margin-top: 20px !important;
  max-width: 400px !important;
  line-height: 1.85 !important;
  color: #1a2a6e !important;
}

/* =====================================================
   v14 — ヒーロー余白縮小＋「0」拡大（参考サイト合わせ）
   ===================================================== */
/* top paddingを80→40pxに削減してテキストを上に */
body.cc-lp.cc-elp .elp-hero-inner {
  padding: 40px 44% 40px 80px !important;
}
/* 固定費0円：「0」を参考サイト並みに巨大化 */
body.cc-lp.cc-elp .elp-hero-fixed {
  font-size: 3rem !important;
  line-height: 1.0 !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.02em;
}
body.cc-lp.cc-elp .elp-hero-zero {
  font-size: 2.2em !important;
  line-height: 0.8 !important;
  vertical-align: -0.2em !important;
  display: inline-block !important;
  font-weight: 900 !important;
}

/* =====================================================
   v15 — ヒーローテキストを左エリアの中央に寄せる
   ===================================================== */
body.cc-lp.cc-elp .elp-hero-inner {
  /* 左padding を大きくしてテキストを中央寄りに */
  padding: 40px 44% 40px 10% !important;
}

/* =====================================================
   v16 — ヒーローテキスト左位置30%に調整
   ===================================================== */
body.cc-lp.cc-elp .elp-hero-inner {
  padding: 40px 44% 40px 30% !important;
}

/* =====================================================
   v17 — ヒーローテキスト左位置20%に調整
   ===================================================== */
body.cc-lp.cc-elp .elp-hero-inner {
  padding: 40px 44% 40px 20% !important;
}

/* =====================================================
   v18 — ヒーロー文字サイズ全体1.5倍
   ===================================================== */
body.cc-lp.cc-elp .elp-hero-fixed {
  font-size: 4.5rem !important;
}
body.cc-lp.cc-elp .elp-hero-sub1 {
  font-size: 1.65rem !important;
}
body.cc-lp.cc-elp .elp-hero-sub2 {
  font-size: 2.4rem !important;
}
body.cc-lp.cc-elp .elp-hero-desc {
  font-size: 1.35rem !important;
  max-width: 540px !important;
}

/* =====================================================
   v19 — 「0」を下揃え（text-bottom）
   ===================================================== */
body.cc-lp.cc-elp .elp-hero-zero {
  vertical-align: text-bottom !important;
}

/* =====================================================
   v20 — 「0」ベースライン揃え
   ===================================================== */
body.cc-lp.cc-elp .elp-hero-zero {
  vertical-align: baseline !important;
}

/* =====================================================
   v21 — お悩みセクション：背景明るく＋アイコン追加
   ===================================================== */
/* 背景を明るい紺に（#1d325b → #2e5fa3） */
body.cc-lp.cc-elp .elp-worries {
  background: #2e5fa3 !important;
}
/* アイコン：線の上に中央配置 */
body.cc-lp.cc-elp .elp-worry-icon {
  display: block !important;
  text-align: center !important;
  font-size: 2.4rem !important;
  margin-bottom: 16px !important;
  line-height: 1 !important;
}
/* タイトルの線（border-top）はそのまま */
body.cc-lp.cc-elp .elp-worry-title {
  border-top: 2px solid #1d325b !important;
}

/* =====================================================
   v22 — お悩みカード：中央揃え＋FAアイコンスタイル
   ===================================================== */
body.cc-lp.cc-elp .elp-worry-card {
  align-items: center !important;
  text-align: center !important;
}
body.cc-lp.cc-elp .elp-worry-title {
  text-align: center !important;
  width: 100% !important;
  padding-top: 14px !important;
}
body.cc-lp.cc-elp .elp-worry-body {
  text-align: left !important;
}
body.cc-lp.cc-elp .elp-worry-icon {
  display: block !important;
  text-align: center !important;
  font-size: 0 !important;
  margin-bottom: 14px !important;
}
body.cc-lp.cc-elp .elp-worry-icon .fa {
  font-size: 2.4rem !important;
  color: #1d325b !important;
  display: block !important;
  line-height: 1 !important;
}

/* ===== v23: ポイント詳細セクション ===== */
body.cc-lp.cc-elp .elp-point-details {
  background: #f0f4fa !important;
  padding: 60px 0 !important;
}
body.cc-lp.cc-elp .elp-point-detail {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 40px !important;
  margin-bottom: 32px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
body.cc-lp.cc-elp .elp-point-detail:last-child {
  margin-bottom: 0 !important;
}
body.cc-lp.cc-elp .elp-point-detail-header {
  border-left: 4px solid #3b82c4 !important;
  padding-left: 16px !important;
  margin-bottom: 28px !important;
}
body.cc-lp.cc-elp .elp-point-detail-header h3 {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #1d325b !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
body.cc-lp.cc-elp .elp-point-detail-header h3 span {
  font-size: 1.6rem !important;
}
body.cc-lp.cc-elp .elp-point-detail-content {
  display: flex !important;
  gap: 40px !important;
  align-items: flex-start !important;
  margin-bottom: 24px !important;
}
body.cc-lp.cc-elp .elp-point-detail-img {
  flex: 0 0 55% !important;
  max-width: 55% !important;
}
body.cc-lp.cc-elp .elp-point-detail-img img {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  display: block !important;
}
body.cc-lp.cc-elp .elp-point-detail-list {
  flex: 1 !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  justify-content: center !important;
}
body.cc-lp.cc-elp .elp-point-detail-list li {
  color: #3b82c4 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
  padding-left: 18px !important;
  position: relative !important;
}
body.cc-lp.cc-elp .elp-point-detail-list li::before {
  content: '•' !important;
  position: absolute !important;
  left: 0 !important;
  color: #3b82c4 !important;
  font-size: 1.2rem !important;
}
body.cc-lp.cc-elp .elp-point-detail-body {
  font-size: 0.95rem !important;
  color: #333 !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

/* ===== v24: ポイント詳細 - 画像高さ固定解除・テキスト確実表示 ===== */
body.cc-lp.cc-elp .elp-point-detail-img img {
  height: auto !important;
  max-height: none !important;
}
body.cc-lp.cc-elp .elp-point-detail-list li,
body.cc-lp.cc-elp .elp-point-detail-body {
  overflow: visible !important;
  display: block !important;
  max-height: none !important;
  -webkit-line-clamp: unset !important;
  white-space: normal !important;
}

/* ===== v25: ポイント詳細セクション 強制表示 ===== */
body.cc-lp.cc-elp .elp-point-details {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
body.cc-lp.cc-elp .elp-point-detail {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
body.cc-lp.cc-elp .elp-point-detail-content {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
body.cc-lp.cc-elp .elp-point-detail-list {
  display: flex !important;
  flex-direction: column !important;
  visibility: visible !important;
  opacity: 1 !important;
}
body.cc-lp.cc-elp .elp-point-detail-list li {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  list-style: none !important;
}
body.cc-lp.cc-elp .elp-point-detail-body {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ===== v26: ポイントカード 文字中央揃え ===== */
body.cc-lp.cc-elp .elp-point-card-body {
  text-align: center !important;
}
body.cc-lp.cc-elp .elp-point-label {
  text-align: center !important;
}
body.cc-lp.cc-elp .elp-point-title {
  text-align: center !important;
}

/* ===== v27: PointラベルA画像左上オーバーレイ ===== */
body.cc-lp.cc-elp .elp-point-card {
  position: relative !important;
}
body.cc-lp.cc-elp .elp-point-label {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(255,255,255,0.9) !important;
  color: var(--cc-secondary, #c8960c) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  z-index: 2 !important;
  text-align: left !important;
}
body.cc-lp.cc-elp .elp-point-card-body {
  text-align: center !important;
  padding-top: 16px !important;
}

/* ===== v28: スマホ ファーストビュー調整 ===== */
@media (max-width: 768px) {
  body.cc-lp.cc-elp .elp-hero {
    min-height: auto !important;
    padding-bottom: 0 !important;
  }
  body.cc-lp.cc-elp .elp-hero-inner {
    flex-direction: column !important;
    padding: 40px 20px 0 20px !important;
    align-items: flex-start !important;
  }
  body.cc-lp.cc-elp .elp-hero-text {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    text-align: left !important;
  }
  body.cc-lp.cc-elp .elp-hero-fixed {
    font-size: 2.8rem !important;
  }
  body.cc-lp.cc-elp .elp-hero-zero {
    font-size: 1.8em !important;
  }
  body.cc-lp.cc-elp .elp-hero-sub1 {
    font-size: 1rem !important;
  }
  body.cc-lp.cc-elp .elp-hero-sub2 {
    font-size: 1.5rem !important;
  }
  body.cc-lp.cc-elp .elp-hero-desc {
    font-size: 0.85rem !important;
    overflow: visible !important;
    white-space: normal !important;
    max-width: 100% !important;
  }
  body.cc-lp.cc-elp .elp-hero-img-wrap {
    position: relative !important;
    width: 100% !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    height: 260px !important;
    margin-top: 24px !important;
  }
  body.cc-lp.cc-elp .elp-hero-img-wrap img,
  body.cc-lp.cc-elp .elp-hero-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}

/* ===== v29: スマホ FV 全画面画像 + テキストオーバーレイ ===== */
@media (max-width: 768px) {
  body.cc-lp.cc-elp .elp-hero {
    min-height: 100svh !important;
    position: relative !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
  }
  body.cc-lp.cc-elp .elp-hero-img-wrap {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
  }
  body.cc-lp.cc-elp .elp-hero-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: left top !important;
  }
  body.cc-lp.cc-elp .elp-hero-inner {
    position: relative !important;
    z-index: 2 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 20px !important;
    min-height: 100svh !important;
  }
  body.cc-lp.cc-elp .elp-hero-text {
    position: relative !important;
    z-index: 3 !important;
    max-width: 55% !important;
    width: 55% !important;
    background: rgba(255, 255, 255, 0.88) !important;
    padding: 16px 12px !important;
    border-radius: 10px !important;
    text-align: left !important;
  }
  body.cc-lp.cc-elp .elp-hero-fixed {
    font-size: 2rem !important;
  }
  body.cc-lp.cc-elp .elp-hero-zero {
    font-size: 1.6em !important;
  }
  body.cc-lp.cc-elp .elp-hero-sub1 {
    font-size: 0.8rem !important;
  }
  body.cc-lp.cc-elp .elp-hero-sub2 {
    font-size: 1.2rem !important;
  }
  body.cc-lp.cc-elp .elp-hero-desc {
    font-size: 0.75rem !important;
    overflow: visible !important;
    white-space: normal !important;
    max-width: 100% !important;
    display: block !important;
  }
}

/* ===== v30: スマホ FV 調整 - 画像縮小・テキスト左寄せ ===== */
@media (max-width: 768px) {
  body.cc-lp.cc-elp .elp-hero-photo {
    width: 80% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: right top !important;
    margin-left: auto !important;
    display: block !important;
  }
  body.cc-lp.cc-elp .elp-hero-inner {
    justify-content: flex-start !important;
    padding: 20px 20px 20px 20px !important;
  }
  body.cc-lp.cc-elp .elp-hero-text {
    max-width: 58% !important;
    width: 58% !important;
    margin-right: 0 !important;
  }
}

/* ===== v31: スマホ FV キャッチ幅75% ===== */
@media (max-width: 768px) {
  body.cc-lp.cc-elp .elp-hero-text {
    max-width: 75% !important;
    width: 75% !important;
  }
}

/* ===== v32: スマホ ポイント詳細 縦並び ===== */
@media (max-width: 768px) {
  body.cc-lp.cc-elp .elp-point-detail-content {
    flex-direction: column !important;
  }
  body.cc-lp.cc-elp .elp-point-detail-img {
    max-width: 100% !important;
    flex: none !important;
    width: 100% !important;
  }
  body.cc-lp.cc-elp .elp-point-detail-img img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  body.cc-lp.cc-elp .elp-point-detail-list {
    width: 100% !important;
    flex: none !important;
    margin-top: 16px !important;
  }
}

/* ===== v33: スマホ おすすめセクション 縦並び（見出し→画像→リスト） ===== */
@media (max-width: 768px) {
  body.cc-lp.cc-elp .elp-recommend-body {
    flex-direction: column !important;
  }
  body.cc-lp.cc-elp .elp-recommend-illust {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }
  body.cc-lp.cc-elp .elp-recommend-illust img {
    width: 100% !important;
    max-width: 100% !important;
  }
  body.cc-lp.cc-elp .elp-recommend-list {
    order: 2 !important;
    width: 100% !important;
  }
}

/* ===== v34: スマホ おすすめ画像サイズ50% ===== */
@media (max-width: 768px) {
  body.cc-lp.cc-elp .elp-recommend-illust {
    width: 50% !important;
    max-width: 50% !important;
    margin: 0 auto 24px auto !important;
  }
}

/* =====================================================
   vGREEN — ベースカラーを青 → フォレストグリーンに変更
   ===================================================== */

/* ─── CSS変数の上書き ─── */
:root {
  --cc-primary:    #0B3D2A;
  --cc-secondary:  #2A9D6F;
  --cc-tertiary:   #52C999;
  --cc-quaternary: #1A6645;
  --cc-bg-mint:    #D9EDE6;
}

/* ─── Hero: ハードコードされた紺 → フォレストグリーン ─── */
body.cc-lp.cc-elp .elp-hero-desc {
  color: #0D4A30 !important;
}
body.cc-lp.cc-elp .elp-hero-photo-placeholder {
  background: #EEF7F2 !important;
  border-color: #C8DDD5 !important;
}

/* ─── キャッチコピー帯（非表示だが念のため） ─── */
body.cc-lp.cc-elp .elp-catchcopy {
  background: linear-gradient(135deg, #E8F5EF 0%, #EDF5F0 100%) !important;
}

/* ─── 固定費0円セクション（What）背景 ─── */
.elp-what {
  background: #F0FAF5;
}

/* ─── 比較表（当社列）ハイライト ─── */
.elp-td-ours {
  background: #EDFAF3 !important;
}

/* ─── Points セクション背景・カード上ライン ─── */
body.cc-lp.cc-elp .elp-points {
  background: #F5FAF7 !important;
}
body.cc-lp.cc-elp .elp-point-card {
  border-top-color: var(--cc-secondary) !important;
  box-shadow: 0 4px 24px rgba(11,61,42,.07) !important;
}
body.cc-lp.cc-elp .elp-point-card:hover {
  box-shadow: 0 10px 36px rgba(11,61,42,.13) !important;
}

/* ─── お悩みセクション背景（v21上書き） ─── */
body.cc-lp.cc-elp .elp-worries {
  background: #1E5C3A !important;
}
body.cc-lp.cc-elp .elp-worry-card {
  border-left-color: #2A9D6F !important;
  box-shadow: 0 4px 16px rgba(11,61,42,.15) !important;
}
body.cc-lp.cc-elp .elp-worry-title {
  color: #0B3D2A !important;
  border-top-color: #0B3D2A !important;
}
body.cc-lp.cc-elp .elp-worry-text {
  color: #0B3D2A !important;
}
body.cc-lp.cc-elp .elp-worry-icon .fa {
  color: #0B3D2A !important;
}

/* ─── ポイント詳細セクション ─── */
body.cc-lp.cc-elp .elp-point-details {
  background: #F0F7F3 !important;
}
body.cc-lp.cc-elp .elp-point-detail-header {
  border-left-color: #2A9D6F !important;
}
body.cc-lp.cc-elp .elp-point-detail-header h3 {
  color: #0B3D2A !important;
}
body.cc-lp.cc-elp .elp-point-detail-list li {
  color: #2A9D6F !important;
}
body.cc-lp.cc-elp .elp-point-detail-list li::before {
  color: #2A9D6F !important;
}

/* ─── Hero CTA ボタン（ゴールド）─── */
.elp-hero-cta {
  margin-top: 32px;
}
.elp-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--elp-accent, #F5B400);
  color: var(--cc-primary, #0B3D2A) !important;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 50px;
  padding: 16px 36px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(245,180,0,.35);
  white-space: nowrap;
}
.elp-hero-cta-btn:hover {
  background: var(--elp-accent-dark, #C89300);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,180,0,.45);
  color: var(--cc-primary, #0B3D2A) !important;
}
@media (max-width: 768px) {
  .elp-hero-cta { margin-top: 20px; }
  body.cc-lp.cc-elp .elp-hero-cta-btn {
    font-size: .9rem;
    padding: 14px 28px;
  }
}

/* ─── バグ修正: elp-hero-sub1 が #1a2a6e (ハードコード紺) のまま ─── */
body.cc-lp.cc-elp .elp-hero-sub1 {
  color: var(--cc-primary) !important;
}

/* ─── 案C: 「０」をゴールドに（固定費０円の０だけ差し色） ─── */
body.cc-lp.cc-elp .elp-hero-zero {
  color: var(--elp-accent, #F5B400) !important;
}

/* ─── 視認性改善: 固定費・円を濃い緑に、０を暗めゴールドに ─── */
body.cc-lp.cc-elp .elp-hero-fixed {
  color: #063320 !important;
}
body.cc-lp.cc-elp .elp-hero-zero {
  color: var(--elp-accent-dark, #C89300) !important;
}

/* ─── 「０」に濃いめの影をつけて立体感・視認性UP ─── */
body.cc-lp.cc-elp .elp-hero-zero {
  text-shadow:
    0 2px 6px rgba(100, 70, 0, 0.45),
    0 4px 12px rgba(80, 50, 0, 0.3) !important;
}

/* ─── 「０」くっきり影（ドンキPOPスタイル：ぼかしなし硬い影） ─── */
body.cc-lp.cc-elp .elp-hero-zero {
  text-shadow:
    2px 2px 0 #2C1800,
    3px 3px 0 #2C1800,
    4px 4px 0 #2C1800,
    5px 5px 0 rgba(44, 24, 0, 0.4) !important;
}

/* ─── 案B: ヘッドライン「固定費０円」をほぼ黒に（緑はアクセントのみ） ─── */
body.cc-lp.cc-elp .elp-hero-fixed {
  color: #1A1A1A !important;
}
body.cc-lp.cc-elp .elp-hero-zero {
  color: #1A1A1A !important;
  text-shadow: none !important;
}

/* =====================================================
   クラス切り替え式カラーバリエーション
   .elp-hero-fixed に zero-gold / zero-black を付け替えて使う
   ===================================================== */

/* ─── zero-gold: 固定費・円は黒、「０」だけゴールド＋ドンキ影 ─── */
body.cc-lp.cc-elp .elp-hero-fixed.zero-gold {
  color: #1A1A1A !important;
}
body.cc-lp.cc-elp .elp-hero-fixed.zero-gold .elp-hero-zero {
  color: var(--elp-accent-dark, #C89300) !important;
  text-shadow:
    2px 2px 0 #2C1800,
    3px 3px 0 #2C1800,
    4px 4px 0 #2C1800,
    5px 5px 0 rgba(44, 24, 0, 0.4) !important;
}

/* ─── zero-black: 「固定費０円」全部ほぼ黒・影なし（案B） ─── */
body.cc-lp.cc-elp .elp-hero-fixed.zero-black {
  color: #1A1A1A !important;
}
body.cc-lp.cc-elp .elp-hero-fixed.zero-black .elp-hero-zero {
  color: #1A1A1A !important;
  text-shadow: none !important;
}

/* =======================================================
   ★★★ ここまで LP 用 ★★★
   ======================================================= */


/* =======================================================
   ★★★ ここから pop LP 用（企業向け採用LP ポップ版）★★★
   page-employer-lp-pop.php / page.php (スラッグ: lp) で使用
   body.cc-elp-pop にスコープされているため既存スタイルに影響なし
   ─────────────────────────────────────────────────────────
   【サーバー貼り付け用】
   このコメントから「★★★ ここまで pop LP 用 ★★★」まで
   を career-connect.css の末尾に丸ごとコピーしてください。
   ======================================================= */

/* ─── cc-reveal アニメーション（pop LP スコープ版） ─── */
/* ※ career-connect.css の冒頭にある .cc-reveal / .cc-visible が
      すでにサーバー側の CSS に含まれている場合は不要です        */
body.cc-elp-pop .cc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.cc-elp-pop .cc-reveal.cc-reveal-right {
  transform: translateX(60px);
}
body.cc-elp-pop .cc-reveal.cc-reveal-left {
  transform: translateX(-60px);
}
body.cc-elp-pop .cc-reveal-delay {
  transition-delay: 0.25s;
}
body.cc-elp-pop .cc-reveal.cc-visible {
  opacity: 1;
  transform: none;
}

/* ─── CSS変数（ポップ版） ─── */
body.cc-elp-pop {
  --pop-dark:     #1E3A2F;   /* ダークフォレストグリーン（旧紺）*/
  --pop-green:    #4BA888;   /* ミドルグリーン */
  --pop-mint:     #7DCFC2;   /* パステルミント */
  --pop-mint-lt:  #B8EDE6;   /* ライトミント */
  --pop-yellow:   #FFE566;   /* パステルイエロー */
  --pop-yellow-dk:#E6BC00;   /* ディープイエロー（テキスト用）*/
  --pop-navy:     #1E3A2F;   /* ダークグリーン（見出し等）*/
  --pop-bg:       #ffffff;   /* 白ベース背景 */
  --pop-white:    #ffffff;
  --pop-text:     #333333;
  --pop-light:    #666666;
  --pop-radius:   16px;
  --pop-radius-lg:24px;
  --pop-shadow:   0 8px 32px rgba(0,0,0,.09);
  --pop-grad-hero: linear-gradient(135deg, #ffffff 0%, #f5fcfa 60%, #edf9f5 100%);
  --pop-grad-cta:  linear-gradient(135deg, #4BA888 0%, #7DCFC2 100%);
}

/* ─── リセット ─── */
body.cc-elp-pop * { box-sizing: border-box; }
body.cc-elp-pop {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--pop-text);
  line-height: 1.7;
  background: var(--pop-bg);
  margin: 0;
  padding: 0;
}
body.cc-elp-pop a { text-decoration: none; color: inherit; }
body.cc-elp-pop ul { list-style: none; margin: 0; padding: 0; }
body.cc-elp-pop img { max-width: 100%; height: auto; display: block; }
body.cc-elp-pop h1,
body.cc-elp-pop h2,
body.cc-elp-pop h3 { margin: 0; }
body.cc-elp-pop p { margin: 0 0 1em; }
body.cc-elp-pop p:last-child { margin-bottom: 0; }

/* ─── ヘッダー微調整 ─── */
body.cc-elp-pop .pop-header {
  border-bottom: 3px solid var(--pop-orange);
}

/* ─── プライマリボタン（ポップ版） ─── */
body.cc-elp-pop .cc-btn-primary {
  background: linear-gradient(135deg, var(--pop-green) 0%, var(--pop-mint) 100%);
  color: #fff !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 28px;
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(75, 168, 136, .35);
}
body.cc-elp-pop .cc-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(75, 168, 136, .45);
  color: #fff !important;
}

/* ─── ヒーロー ─── */
body.cc-elp-pop .pop-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
body.cc-elp-pop .pop-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--pop-grad-hero);
  z-index: 0;
}
/* 斜め多角形の背景装飾 */
body.cc-elp-pop .pop-hero-bg::before {
  content: '';
  position: absolute;
  top: -5%;
  right: 28%;
  width: 260px;
  height: 520px;
  background: rgba(75, 168, 136, .08);
  clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
  z-index: 0;
}
body.cc-elp-pop .pop-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 80px;
  background: #EDF9F5;
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 1;
}
/* 追加の多角形シェイプ（3枚目） */
body.cc-elp-pop .pop-hero-deco {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 140px;
  height: 280px;
  background: rgba(75, 168, 136, .06);
  clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}
body.cc-elp-pop .pop-hero-deco2 {
  position: absolute;
  bottom: 15%;
  left: 4%;
  width: 80px;
  height: 160px;
  background: rgba(75, 168, 136, .05);
  clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}
body.cc-elp-pop .pop-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  gap: 0;
  min-height: 500px;
}
body.cc-elp-pop .pop-hero-text {
  flex: 0 0 55%;
  max-width: 55%;
  padding-right: 40px;
  position: relative;
  z-index: 3;
}
/* 固定費0円の大きな文字 */
body.cc-elp-pop .pop-hero-fixed {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--pop-dark);
  line-height: 1.1;
  margin-bottom: 4px !important;
}
/* 固定費0円をサブコピーとして小さく表示 */
body.cc-elp-pop .pop-hero-fixed-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.7);
  border: 1.5px solid rgba(75,168,136,.35);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--pop-text);
  letter-spacing: .04em;
  margin-bottom: 20px !important;
}
body.cc-elp-pop .pop-hero-fixed-sub .pop-hero-zero {
  color: var(--pop-green);
  font-size: 1.1em;
  font-weight: 900;
}
body.cc-elp-pop .pop-hero-zero {
  color: var(--pop-green);
  font-size: 1.2em;
}
body.cc-elp-pop .pop-hero-sub1 {
  display: inline-block;
  background: rgba(75,168,136,.12);
  border: 1px solid rgba(75,168,136,.3);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--pop-dark);
  letter-spacing: .05em;
  margin-bottom: 10px;
}
body.cc-elp-pop .pop-hero-h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--pop-dark);
  margin-bottom: 16px !important;
  letter-spacing: -.02em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* メインフレーズ：「成果にだけ投資する」を主役に */
body.cc-elp-pop .pop-hero-main-phrase {
  font-size: clamp(2rem, 4.5vw, 3.3rem);  /* 70% ベースサイズ */
  font-weight: 900;
  color: #7e8b85;  /* くすんだグレーグリーン（成果・投資を引き立てる脇役色） */
  line-height: 1.2;
  letter-spacing: -.02em;
}
/* 「成果」「投資」だけフルサイズ・鮮やかな緑 */
body.cc-elp-pop .pop-hero-main-phrase .pop-hero-em {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  color: var(--pop-green);
  vertical-align: baseline;
  display: inline;
}
/* サブフレーズ：「人材採用へ。」は少し小さく */
body.cc-elp-pop .pop-hero-sub-phrase {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--pop-dark);
  line-height: 1.3;
}
body.cc-elp-pop .pop-hero-highlight {
  color: var(--pop-green);
}
body.cc-elp-pop .pop-hero-desc {
  font-size: 1.05rem;
  color: var(--pop-text);
  line-height: 1.8;
  margin-bottom: 24px;
}
body.cc-elp-pop .pop-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
body.cc-elp-pop .pop-badge {
  background: rgba(75,168,136,.1);
  border: 1px solid rgba(75,168,136,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--pop-dark);
  white-space: nowrap;
}
body.cc-elp-pop .pop-btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--pop-green) 0%, var(--pop-mint) 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(75,168,136,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
body.cc-elp-pop .pop-btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(75,168,136,.5);
  color: #fff !important;
}
/* ヒーローセクション内のCTAボタンは白 */
body.cc-elp-pop .pop-hero .pop-btn-cta {
  background: #ffffff;
  color: var(--pop-green) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  border: 2px solid var(--pop-mint);
}
body.cc-elp-pop .pop-hero .pop-btn-cta:hover {
  background: #f5fbf9;
  color: var(--pop-green) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  transform: translateY(-4px);
}
/* 大きな写真 - 重ねカード技法（非矩形・非平行四辺形） */
body.cc-elp-pop .pop-hero-img {
  flex: 0 0 46%;
  max-width: 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 8px 32px 32px;
  position: relative;
  z-index: 2;
}
/* 後ろのミントグリーンブロック（少し傾いてはみ出す） */
body.cc-elp-pop .pop-hero-img::before {
  content: '';
  position: absolute;
  inset: 12px 4px 4px 20px;
  background: rgba(125,207,194,.45);
  border-radius: 28px 28px 64px 28px;
  transform: rotate(-4deg);
  z-index: 0;
}
/* 右下の黄色アクセントブロック（別の角度で覗かせる） */
body.cc-elp-pop .pop-hero-img::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 55%;
  height: 42%;
  background: rgba(255,229,102,.55);
  border-radius: 16px 40px 16px 40px;
  transform: rotate(6deg);
  z-index: 0;
}
body.cc-elp-pop .pop-hero-photo {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px 28px 60px 28px;
  box-shadow: 0 16px 48px rgba(30,58,47,.22);
  transform: rotate(1.5deg);
  position: relative;
  z-index: 1;
  display: block;
}

/* ─── 実績数字バー ─── */
body.cc-elp-pop .pop-stats-bar {
  background: var(--pop-white);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  position: relative;
  z-index: 2;
  margin-top: -2px;
  padding: 32px 0;
}
body.cc-elp-pop .pop-stats-list {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
body.cc-elp-pop .pop-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 40px;
  border-right: 1px solid rgba(0,0,0,.08);
}
body.cc-elp-pop .pop-stat-item:last-child { border-right: none; }
body.cc-elp-pop .pop-stat-num {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--pop-green);
  line-height: 1;
  margin-bottom: 6px;
}
body.cc-elp-pop .pop-stat-label {
  font-size: .8rem;
  color: var(--pop-light);
  font-weight: 600;
  letter-spacing: .03em;
}

/* ─── セクション共通 ─── */
body.cc-elp-pop .pop-section {
  padding: 80px 0;
}
body.cc-elp-pop .pop-section-head {
  text-align: center;
  margin-bottom: 56px;
}
body.cc-elp-pop .pop-section-en {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--pop-green);
  text-transform: uppercase;
  border: 2px solid var(--pop-mint);
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 14px;
}
body.cc-elp-pop .pop-section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--pop-navy);
  line-height: 1.35;
  display: block;
}
body.cc-elp-pop .pop-title-accent {
  color: var(--pop-green);
}

/* ─── お悩みセクション ─── */
body.cc-elp-pop .pop-problem {
  background: #EDF9F5;
  color: var(--pop-text);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  margin-top: -2px;
}
/* 斜め線テクスチャ */
body.cc-elp-pop .pop-problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(75,168,136,.03) 20px,
    rgba(75,168,136,.03) 21px
  );
  z-index: 0;
  pointer-events: none;
}
/* セクション上部の波形区切り */
body.cc-elp-pop .pop-problem::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--pop-white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}
body.cc-elp-pop .pop-problem .cc-container {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
body.cc-elp-pop .pop-problem .pop-section-en {
  color: var(--pop-green);
  border-color: var(--pop-mint);
}
body.cc-elp-pop .pop-problem .pop-section-title {
  color: var(--pop-dark);
}
body.cc-elp-pop .pop-problem .pop-title-accent {
  color: var(--pop-green);
}
/* セクションタイトル下のVシェイプ区切り */
body.cc-elp-pop .pop-section-vtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
body.cc-elp-pop .pop-section-vtitle::before,
body.cc-elp-pop .pop-section-vtitle::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(255,255,255,.4);
}
body.cc-elp-pop .pop-section-vtitle-v {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid rgba(255,255,255,.4);
  margin: 0 8px;
}
body.cc-elp-pop .pop-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
body.cc-elp-pop .pop-problem-card {
  background: #ffffff;
  border-radius: var(--pop-radius-lg);
  padding: 36px 28px;
  position: relative;
  border-top: 4px solid var(--pop-mint);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
  box-shadow: 0 2px 12px rgba(75,168,136,.1);
}
body.cc-elp-pop .pop-problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pop-shadow);
}
body.cc-elp-pop .pop-problem-num {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(75, 168, 136, .12);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -.05em;
}
body.cc-elp-pop .pop-problem-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--pop-green);
}
body.cc-elp-pop .pop-problem-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pop-navy);
  margin-bottom: 14px !important;
  line-height: 1.5;
}
body.cc-elp-pop .pop-problem-body {
  font-size: .92rem;
  color: var(--pop-light);
  line-height: 1.75;
}
body.cc-elp-pop .pop-problem-footer {
  text-align: center;
  margin: 48px auto 0;
  font-size: 1.15rem;
  color: var(--pop-navy);
  font-weight: 700;
  padding: 20px 32px;
  background: linear-gradient(135deg, #E8F7F2 0%, #D0F0E8 100%);
  border-radius: 50px;
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: normal;
  box-sizing: border-box;
}
body.cc-elp-pop .pop-problem-footer strong {
  color: var(--pop-green);
}

/* ─── ポイントセクション ─── */
body.cc-elp-pop .pop-points {
  background: var(--pop-bg);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
/* 右上に斜め装飾シェイプ */
body.cc-elp-pop .pop-points::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 400px;
  background: rgba(75,168,136,.06);
  clip-path: polygon(100% 0, 100% 100%, 0 60%);
  pointer-events: none;
}
/* セクション下部の斜め区切り */
body.cc-elp-pop .pop-points::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: #FFFEF4;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}
body.cc-elp-pop .pop-point-row {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 72px;
  background: var(--pop-white);
  border-radius: var(--pop-radius-lg);
  padding: 48px;
  box-shadow: var(--pop-shadow);
}
body.cc-elp-pop .pop-point-row:last-child { margin-bottom: 0; }
body.cc-elp-pop .pop-point-row-reverse { flex-direction: row-reverse; }
body.cc-elp-pop .pop-point-img-wrap {
  flex-shrink: 0;
  width: 380px;
  max-width: 42%;
  border-radius: var(--pop-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
body.cc-elp-pop .pop-point-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.cc-elp-pop .pop-point-body { flex: 1; min-width: 0; }
body.cc-elp-pop .pop-point-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
body.cc-elp-pop .pop-point-badge span {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
body.cc-elp-pop .pop-point-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 900;
  color: var(--pop-navy);
  line-height: 1.35;
  margin-bottom: 16px !important;
}
body.cc-elp-pop .pop-point-text {
  font-size: 1rem;
  color: var(--pop-light);
  line-height: 1.85;
}
body.cc-elp-pop .pop-point-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.cc-elp-pop .pop-point-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--pop-dark);
  line-height: 1.6;
  background: rgba(75,168,136,.07);
  border-left: 3px solid var(--pop-green);
  border-radius: 0 8px 8px 0;
  padding: 8px 14px;
}
body.cc-elp-pop .pop-point-list li .fa {
  color: var(--pop-green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── おすすめ＋比較セクション ─── */
body.cc-elp-pop .pop-recommend {
  background: #FFFEF4;
  color: var(--pop-text);
  position: relative;
  overflow: hidden;
}
/* 斜め線テクスチャ */
body.cc-elp-pop .pop-recommend::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(75,168,136,.025) 20px,
    rgba(75,168,136,.025) 21px
  );
  pointer-events: none;
}
body.cc-elp-pop .pop-recommend .pop-section-en { color: var(--pop-mint); }
body.cc-elp-pop .pop-recommend .pop-section-title { color: var(--pop-dark); }
body.cc-elp-pop .pop-recommend .pop-title-accent { color: var(--pop-green); }

/* チェックリストチップ */
body.cc-elp-pop .pop-rec-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 64px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
body.cc-elp-pop .pop-rec-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(75,168,136,.07);
  border: 1.5px solid rgba(75,168,136,.25);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: .97rem;
  font-weight: 700;
  color: var(--pop-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transition: transform .15s, box-shadow .15s, background .15s;
}
body.cc-elp-pop .pop-rec-chip:hover {
  transform: translateY(-2px);
  background: rgba(75,168,136,.13);
  box-shadow: 0 6px 18px rgba(75,168,136,.18);
}
body.cc-elp-pop .pop-rec-chip .fa {
  color: var(--pop-green);
  font-size: 1.15rem;
}

/* 比較パネル – paizaスタイル横並び */
body.cc-elp-pop .pop-cmp-wrap {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
body.cc-elp-pop .pop-cmp-panel {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
body.cc-elp-pop .pop-cmp-general {
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
body.cc-elp-pop .pop-cmp-ours {
  box-shadow: 0 8px 40px rgba(75,168,136,.5);
  transform: scale(1.03);
  position: relative;
  z-index: 2;
}
/* ヘッダーバー */
body.cc-elp-pop .pop-cmp-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  font-weight: 800;
  font-size: 1.05rem;
}
body.cc-elp-pop .pop-cmp-general .pop-cmp-panel-head {
  background: #2d3040;
  color: #fff;
}
body.cc-elp-pop .pop-cmp-ours .pop-cmp-panel-head {
  background: var(--pop-green);
  color: #fff;
}
/* ボディ: アイコン左 + リスト右 */
body.cc-elp-pop .pop-cmp-body {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
}
body.cc-elp-pop .pop-cmp-illust {
  flex-shrink: 0;
  font-size: 5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  opacity: .85;
}
body.cc-elp-pop .pop-cmp-illust-ng { color: #b0bec5; }
body.cc-elp-pop .pop-cmp-illust-ok { color: var(--pop-green); }
/* 各パネルのリスト */
body.cc-elp-pop .pop-cmp-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.cc-elp-pop .pop-cmp-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.55;
  color: #444;
}
body.cc-elp-pop .pop-cmp-panel li .fa {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}
body.cc-elp-pop .pop-cmp-ng .fa { color: #e57373; }
body.cc-elp-pop .pop-cmp-ok .fa { color: var(--pop-green); }
body.cc-elp-pop .pop-cmp-ok strong { color: var(--pop-green); }

/* ─── 料金セクション ─── */
body.cc-elp-pop .pop-price {
  background: #EDF9F5;
  color: var(--pop-text);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
/* 斜め線テクスチャ */
body.cc-elp-pop .pop-price::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(75,168,136,.025) 30px,
    rgba(75,168,136,.025) 31px
  );
  z-index: 0;
  pointer-events: none;
}
/* 下部の波形区切り */
body.cc-elp-pop .pop-price::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--pop-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}
body.cc-elp-pop .pop-price .cc-container {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
body.cc-elp-pop .pop-price .pop-section-title {
  color: var(--pop-dark);
}
body.cc-elp-pop .pop-price .pop-section-en {
  color: var(--pop-mint);
  border-color: var(--pop-mint);
}
body.cc-elp-pop .pop-price .pop-title-accent {
  color: var(--pop-green);
}
body.cc-elp-pop .pop-price-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
body.cc-elp-pop .pop-price-card {
  background: rgba(75,168,136,.05);
  border: 2px solid rgba(75,168,136,.2);
  border-radius: var(--pop-radius-lg);
  padding: 48px 56px;
  text-align: center;
  min-width: 260px;
  flex: 1;
  max-width: 340px;
  transition: transform .25s, box-shadow .25s;
}
body.cc-elp-pop .pop-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(75,168,136,.2);
}
body.cc-elp-pop .pop-price-free {
  border-color: var(--pop-mint);
}
body.cc-elp-pop .pop-price-reward {
  border-color: var(--pop-green);
}
body.cc-elp-pop .pop-price-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--pop-mint);
}
body.cc-elp-pop .pop-flow-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  color: var(--pop-green);
  width: 48px;
  text-align: center;
}
body.cc-elp-pop .pop-badge .fa {
  color: var(--pop-green);
  margin-right: 4px;
}
  font-size: .9rem;
  color: var(--pop-light);
  font-weight: 600;
  margin-bottom: 8px !important;
}
body.cc-elp-pop .pop-price-num {
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--pop-green);
  line-height: 1;
  margin-bottom: 12px !important;
}
body.cc-elp-pop .pop-price-num span {
  font-size: 1.8rem;
}
body.cc-elp-pop .pop-price-reward .pop-price-num {
  font-size: 1.4rem;
  color: var(--pop-dark);
}
body.cc-elp-pop .pop-price-note {
  font-size: .85rem;
  color: var(--pop-light);
}
body.cc-elp-pop .pop-price-divider {
  font-size: 2.5rem;
  color: #ccc;
  font-weight: 300;
  flex-shrink: 0;
}
body.cc-elp-pop .pop-price-caption {
  text-align: center;
  color: var(--pop-light);
  font-size: .85rem;
  margin-top: 32px;
}

/* ─── 声セクション ─── */
body.cc-elp-pop .pop-voice {
  background: var(--pop-white);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
/* 左上に小さい装飾シェイプ */
body.cc-elp-pop .pop-voice::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 120px;
  height: 240px;
  background: rgba(75,168,136,.05);
  clip-path: polygon(0 0, 100% 40%, 100% 60%, 0 100%);
  pointer-events: none;
}
/* セクション下部の斜め区切り */
body.cc-elp-pop .pop-voice::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--pop-bg);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  z-index: 1;
}
body.cc-elp-pop .pop-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
body.cc-elp-pop .pop-voice-card {
  background: var(--pop-bg);
  border-radius: var(--pop-radius-lg);
  padding: 36px;
  border-left: 4px solid var(--pop-mint);
  transition: transform .25s, box-shadow .25s;
}
body.cc-elp-pop .pop-voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pop-shadow);
}
body.cc-elp-pop .pop-voice-img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid var(--pop-mint);
}
body.cc-elp-pop .pop-voice-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.cc-elp-pop .pop-voice-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
body.cc-elp-pop .pop-voice-company {
  font-weight: 700;
  color: var(--pop-navy);
  font-size: .95rem;
}
body.cc-elp-pop .pop-voice-industry {
  font-size: .8rem;
  color: var(--pop-white);
  background: var(--pop-mint);
  border-radius: 50px;
  padding: 3px 12px;
}
body.cc-elp-pop .pop-voice-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pop-navy);
  margin-bottom: 10px !important;
  line-height: 1.5;
}
body.cc-elp-pop .pop-voice-body {
  font-size: .92rem;
  color: var(--pop-light);
  line-height: 1.8;
}

/* ─── フローステップ ─── */
body.cc-elp-pop .pop-flow {
  background: #EDF9F5;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
body.cc-elp-pop .pop-flow::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 360px;
  background: rgba(75,168,136,.06);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
body.cc-elp-pop .pop-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
body.cc-elp-pop .pop-flow-step {
  background: var(--pop-white);
  border-radius: var(--pop-radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .2s;
}
body.cc-elp-pop .pop-flow-step:hover {
  transform: translateX(6px);
}
body.cc-elp-pop .pop-flow-arrow {
  text-align: center;
  color: var(--pop-teal);
  font-size: 1.4rem;
  padding: 6px 0;
  line-height: 1;
}
body.cc-elp-pop .pop-flow-num {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pop-mint) 0%, var(--pop-green) 100%);
  color: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  line-height: 1.2;
  min-width: 72px;
}
body.cc-elp-pop .pop-flow-num span {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
body.cc-elp-pop .pop-flow-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}
body.cc-elp-pop .pop-flow-body { flex: 1; min-width: 0; }
body.cc-elp-pop .pop-flow-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pop-navy);
  margin-bottom: 6px !important;
}
body.cc-elp-pop .pop-flow-desc {
  font-size: .9rem;
  color: var(--pop-light);
  margin-bottom: 0 !important;
}

/* ─── FAQ ─── */
body.cc-elp-pop .pop-faq {
  /*background: #EDF9F5;*/
	background:#fff;
  position: relative;
  overflow: hidden;
}
body.cc-elp-pop .pop-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pop-mint) 0%, var(--pop-yellow) 50%, var(--pop-mint) 100%);
}
body.cc-elp-pop .pop-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.cc-elp-pop .pop-faq-item {
  border: 2px solid rgba(75, 168, 136, .2);
  border-radius: var(--pop-radius);
  overflow: hidden;
  transition: border-color .2s;
}
body.cc-elp-pop .pop-faq-item:focus-within {
  border-color: var(--pop-mint);
}
body.cc-elp-pop .pop-faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  font-size: .98rem;
  font-weight: 700;
  color: var(--pop-navy);
  transition: background .2s;
}
body.cc-elp-pop .pop-faq-q:hover {
  background: rgba(48,173,203,.05);
}
body.cc-elp-pop .pop-faq-qlabel {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--pop-mint);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: .9rem;
  line-height: 1;
}
body.cc-elp-pop .pop-faq-q > span:nth-child(2) { flex: 1; }
body.cc-elp-pop .pop-faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--pop-green);
  transition: transform .25s;
  font-style: normal;
}
body.cc-elp-pop .pop-faq-q[aria-expanded="true"] .pop-faq-icon {
  transform: rotate(45deg);
}
body.cc-elp-pop .pop-faq-a {
  display: none;
  padding: 0 24px 20px 70px;
  font-size: .95rem;
  color: var(--pop-light);
  line-height: 1.8;
  position: relative;
}
body.cc-elp-pop .pop-faq-a.is-open { display: flex; gap: 14px; align-items: flex-start; padding-left: 24px; }
body.cc-elp-pop .pop-faq-alabel {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--pop-yellow) 0%, var(--pop-green) 100%);
  color: var(--pop-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: .9rem;
  line-height: 1;
  margin-top: 2px;
}
body.cc-elp-pop .pop-faq-a p { margin: 0; flex: 1; }

/* ─── CTAバナー ─── */
body.cc-elp-pop .pop-cta-banner {
  background: var(--pop-grad-cta);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* 斜め線テクスチャ */
body.cc-elp-pop .pop-cta-banner > .cc-container {
  position: relative;
  z-index: 2;
}
body.cc-elp-pop .pop-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 16px,
    rgba(255,255,255,.06) 16px,
    rgba(255,255,255,.06) 17px
  );
  z-index: 0;
}
body.cc-elp-pop .pop-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
body.cc-elp-pop .pop-cta-text { flex: 1; min-width: 260px; }
body.cc-elp-pop .pop-cta-lead {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--pop-white);
  margin-bottom: 12px !important;
}
body.cc-elp-pop .pop-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px !important;
}
body.cc-elp-pop .pop-cta-qr-note {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px !important;
}
body.cc-elp-pop .pop-btn-cta-white {
  /*background: #faf5bc;*/
	background:#fff;
  color: var(--pop-green) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  font-size: 1.1rem;
  padding: 20px 48px;
}
body.cc-elp-pop .pop-btn-cta-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  color: var(--pop-green) !important;
}
body.cc-elp-pop .pop-cta-qr { flex-shrink: 0; }
body.cc-elp-pop .pop-qr-img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  border: 4px solid rgba(255,255,255,.8);
}

/* ─── フッター ─── */
body.cc-elp-pop .pop-footer {
  /*background: linear-gradient(135deg, #2D6E54 0%, #1e4f3c 100%);*/
	background:#fff;
}
body.cc-elp-pop .pop-footer,
body.cc-elp-pop .pop-footer .elp-footer-logo-main,
body.cc-elp-pop .pop-footer .elp-footer-company {
  color: #1e3a2f;
}
body.cc-elp-pop .pop-footer .elp-footer-logo-sub,
body.cc-elp-pop .pop-footer .elp-footer-op,
body.cc-elp-pop .pop-footer .elp-footer-address {
  /*color: rgba(255,255,255,.7);*/
	color: #1e3a2f;
}
body.cc-elp-pop .pop-footer .elp-footer-copy {
  /*color: rgba(255,255,255,.5);*/
	color: #1e3a2f;
  border-top-color: #1e3a2f;
}

/* ======================================================
   レスポンシブ（ポップ版）
   ====================================================== */

@media (max-width: 1024px) {
  body.cc-elp-pop .pop-hero-inner { flex-direction: column; text-align: center; padding: 72px 24px 56px; min-height: auto; }
  body.cc-elp-pop .pop-hero-text { flex: none; max-width: 100%; padding-right: 0; }
  body.cc-elp-pop .pop-hero-img { flex: none; max-width: 80%; width: 80%; padding: 16px 0 0; justify-content: center; }
  body.cc-elp-pop .pop-hero-photo { max-height: 340px; transform: none; border-radius: 20px; }
  body.cc-elp-pop .pop-hero-img::before,
  body.cc-elp-pop .pop-hero-img::after { display: none; }
  body.cc-elp-pop .pop-hero-badges { justify-content: center; }
  body.cc-elp-pop .pop-point-row,
  body.cc-elp-pop .pop-point-row-reverse { flex-direction: column; }
  body.cc-elp-pop .pop-point-img-wrap { max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  body.cc-elp-pop .pop-problem-grid { grid-template-columns: 1fr; }
  body.cc-elp-pop .pop-problem-footer { font-size: 0.95rem; padding: 16px 20px; border-radius: 16px; }
  body.cc-elp-pop .pop-voice-grid { grid-template-columns: 1fr; }
  body.cc-elp-pop .pop-stats-list { gap: 0; }
  body.cc-elp-pop .pop-stat-item { padding: 16px 20px; border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  body.cc-elp-pop .pop-stat-item:last-child { border-bottom: none; }
  body.cc-elp-pop .pop-price-grid { flex-direction: column; align-items: center; }
  body.cc-elp-pop .pop-price-divider { transform: rotate(90deg); }
  body.cc-elp-pop .pop-point-row { padding: 28px 20px; }
  body.cc-elp-pop .pop-flow-step { padding: 20px; gap: 16px; }
  body.cc-elp-pop .pop-hero-h1 { font-size: 2rem; gap: 4px; }
  body.cc-elp-pop .pop-hero-main-phrase { font-size: 1.4rem; }
  body.cc-elp-pop .pop-hero-main-phrase .pop-hero-em { font-size: 2rem; }
  body.cc-elp-pop .pop-hero-sub-phrase { font-size: 1.2rem; }
  body.cc-elp-pop .pop-hero-img { max-width: 90%; width: 90%; }
  body.cc-elp-pop .pop-hero-photo { max-height: 280px; }
  body.cc-elp-pop .pop-section { padding: 56px 0; }
  body.cc-elp-pop .cc-nav { display: none; }
  body.cc-elp-pop .cc-header-btn { display: none; }
  body.cc-elp-pop .pop-cmp-wrap { flex-direction: column; }
  body.cc-elp-pop .pop-cmp-vs { width: auto; padding: 12px 0; font-size: 1.2rem; }
  body.cc-elp-pop .pop-rec-chips { gap: 10px; }
  body.cc-elp-pop .pop-rec-chip { padding: 10px 16px; font-size: .9rem; }
}

/* =======================================================
   ★★★ ここまで pop LP 用 ★★★
   ======================================================= */
