/* ===========================
   top.css
   トップページ専用スタイル (Figmaリニューアル版)
   - ヘッダー / フッター / CTA / 共通変数は service-common.css 参照
   =========================== */

:root {
  --lp-orange: #ff5a09;
  --lp-orange-2: #ff6a00;
  --lp-orange-light: #ffede0;
  --lp-orange-soft: #fff6ea;
  --lp-navy: #040a43;
  --lp-navy-2: #050b4e;
  --lp-text: #363d49;
  --lp-cream: #fffaf4;
  --lp-cream-2: #fffefb;
  --lp-border-cream: #f2e3d1;
  --lp-mint: #e6fbf4;
  --lp-mint-2: #e9f9f4;
  --lp-mint-border: #c2e8d9;
}

/* ===== Common BR utilities ===== */
.br-pc { display: inline; }
.br-sp { display: none; }
@media (max-width: 768px) {
  .br-pc { display: none; }
  .br-sp { display: inline; }
}

/* ===========================
   SECTION HEADING (共通)
   =========================== */
.lp-section-heading {
  position: relative;
  text-align: center;
  margin: 0 auto 56px;
  padding-top: 12px;
}
.lp-section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(242, 227, 209, 0.75);
  box-shadow: 0 4px 14px rgba(23, 10, 3, 0.06);
  border-radius: 17px;
  padding: 0 18px;
  height: 34px;
  margin-bottom: 18px;
}
.lp-section-pill-orange {
  display: inline-block;
  background: var(--lp-orange);
  width: 86px;
  height: 6px;
  border-radius: 3px;
}
.lp-section-pill-navy {
  display: inline-block;
  background: var(--lp-navy);
  width: 28px;
  height: 6px;
  border-radius: 3px;
}
.lp-section-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--lp-orange);
  margin-bottom: 14px;
}
.lp-section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.25;
  color: var(--lp-navy);
  margin-bottom: 18px;
}
.lp-section-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-text);
}
.lp-section-lead-em {
  color: var(--lp-orange-2, #ff6a00);
  font-weight: 700;
}

/* ===========================
   HERO (Figma: keyvisual 1728x920)
   - 設計: 1728px stage を max-width 1728 で配置
   - PC: フレームの絶対座標を再現
   - 1024px以下: スタックレイアウトに切替
   =========================== */
.lp-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.lp-hero-stage {
  position: relative;
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  height: 800px;
}

/* ----- 背景写真 (Figma: 1280x920 at x=0) ----- */
.lp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 74.07%; /* 1280/1728 */
  height: 100%;
  background-image: url('/site_assets/img/top/v2/kv_hero_bg.jpg');
  background-size: cover;
  background-position: center;
}
.lp-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 53.82%; /* 930/1728 */
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.58) 68%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* ----- 右白パネル (Figma: 460x920 at x=1268) ----- */
.lp-hero-rightpanel {
  position: absolute;
  top: 0;
  right: 0;
  width: 26.62%; /* 460/1728 */
  height: 100%;
  background: #fff;
}
.lp-hero-rightpanel-logo {
  position: absolute;
  top: 26px;
  left: 18.7%;  /* 86/460 */
  width: 69.13%; /* 318/460 */
  height: auto;
  object-fit: contain;
}

/* ----- スマホモック (Figma: 318x640 at x=1339, y=136) ----- */
.lp-phone-frame {
  position: absolute;
  top: 136px;
  left: 77.49%; /* 1339/1728 */
  width: 18.4%; /* 318/1728 */
  height: 640px;
  background: #fff;
  border: 8px solid #1b1b1b;
  border-radius: 42px;
  box-shadow: 0 24px 42px rgba(45, 22, 0, 0.26);
  overflow: hidden;
}
.lp-phone-notch {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
  height: 24px;
  background: #111;
  border-radius: 12px;
  z-index: 2;
}
.lp-phone-screen {
  position: absolute;
  top: 15px;
  left: 6px;
  right: 6px;
  bottom: 15px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  padding: 36px 10px 0;
}
.lp-phone-rec {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--lp-orange-2);
  white-space: pre;
  margin-bottom: 8px;
}
.lp-phone-question {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  margin-bottom: 8px;
}
.lp-phone-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: #3a3a3a;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 18px;
  flex-shrink: 0;
}
.lp-phone-q-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 20px;
  color: var(--lp-navy-2);
  white-space: nowrap;
}
.lp-phone-thumb {
  width: 100%;
  height: 154px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.lp-phone-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-phone-answer {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--lp-navy-2);
}
.lp-phone-answer p {
  line-height: 22px;
  margin: 0;
}
.lp-phone-feedback {
  background: #e9fbf4;
  border: 1px solid #bdefe1;
  border-radius: 10px;
  padding: 18px;
  min-height: 158px;
}
.lp-phone-feedback-row {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  margin-bottom: 8px;
}
.lp-phone-ai {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  object-fit: cover;
  flex-shrink: 0;
}
.lp-phone-score {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 30px;
  color: var(--lp-navy-2);
  white-space: nowrap;
  min-height: 30px;
}
.lp-phone-feedback-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 21px;
  color: var(--lp-navy-2);
  margin: 0;
  min-height: 63px;
}
/* タイピング演出: 行末で点滅するキャレット */
.lp-typing-caret::after {
  content: '|';
  margin-left: 1px;
  color: var(--lp-orange-2);
  font-weight: 900;
  animation: lp-caret-blink 0.85s steps(1) infinite;
}
@keyframes lp-caret-blink {
  50% { opacity: 0; }
}

/* ----- 左コピーグループ (Figma: x=56, y=52) ----- */
.lp-hero-copy {
  position: absolute;
  top: 32px;
  left: 3.24%; /* 56/1728 */
  width: 47%;  /* おおむね 812/1728 */
  z-index: 2;
}
.lp-hero-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 27px;
  line-height: 42px;
  color: var(--lp-navy-2);
  margin: 0 0 20px;
}
.lp-hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  color: var(--lp-navy-2);
  margin: 0 0 22px;
}
.lp-hero-title-row1 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
  margin-bottom: 20px;
}
.lp-hero-title-em {
  font-size: 56px;
  line-height: 68px;
  color: var(--lp-orange-2);
}
.lp-hero-title-demo {
  font-size: 38px;
  line-height: 48px;
  color: var(--lp-navy-2);
}
.lp-hero-title-row2 {
  display: block;
  font-size: 50px;
  line-height: 64px;
  color: var(--lp-navy-2);
}

/* ----- 3 mini cards (Figma: y=402, gap=20) ----- */
.lp-hero-mini-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}
.lp-hero-mini {
  width: 190px;
  height: 168px;
  background: #fff;
  border: 1px solid #f5e2d2;
  border-radius: 12px;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  filter: drop-shadow(0 12px 14px rgba(45, 22, 0, 0.08));
}
.lp-hero-mini-wide {
  width: 210px;
}
.lp-hero-mini-icon {
  width: 88px;
  height: 72px;
  object-fit: contain;
}
.lp-hero-mini-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 25px;
  color: var(--lp-navy-2);
  text-align: center;
}

/* ----- スマホだけで完結... (Figma: y=592, 28px) ----- */
.lp-hero-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 38px;
  color: var(--lp-navy-2);
  margin: 0 0 14px;
}
.lp-hero-note-em {
  color: var(--lp-orange-2);
}

/* ----- チェックピル (Figma: y=644, h=52, gap=30) ----- */
.lp-hero-checks {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}
.lp-hero-checks li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid #ffd2a6;
  border-radius: 26px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: var(--lp-navy-2);
  white-space: nowrap;
  filter: drop-shadow(0 8px 10px rgba(45, 22, 0, 0.07));
}
.lp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: var(--lp-orange-2);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 18px;
  flex-shrink: 0;
}

/* SP専用要素はデフォルト非表示 (≤480px で表示) */
.lp-hero-ribbon-sp-note,
.lp-hero-ribbon-sp-checks {
  display: none;
}

/* ----- 下部リボン (Figma: x=0, w=1160) ----- */
.lp-hero-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 67.13%; /* 1160/1728 */
  height: 140px;
  background: linear-gradient(
    90deg,
    var(--lp-orange-2) 0%,
    #ff981a 78%,
    #ffdd4f 100%
  );
  z-index: 3;
  display: block;
}
.lp-hero-ribbon-brand {
  position: absolute;
  top: 50%;
  left: 5.34%; /* 62/1160 */
  transform: translateY(-50%);
  color: #fff;
}
.lp-hero-ribbon-logo-img {
  display: block;
  width: 280px;
  height: auto;
  margin-bottom: 10px;
  /* オレンジ色のロゴをオレンジリボン上で見せるため白く反転 */
  filter: brightness(0) invert(1);
}
.lp-hero-ribbon-tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.lp-hero-ribbon-cta {
  position: absolute;
  top: 50%;
  left: 56.03%; /* 650/1160 */
  width: 41.9%;  /* 486/1160 */
  height: 72px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #fff;
  color: var(--lp-navy-2);
  padding: 0 22px;
  border-radius: 32px;
  text-decoration: none;
  filter: drop-shadow(0 10px 13px rgba(45, 22, 0, 0.12));
  transition: transform 0.2s, filter 0.2s;
}
.lp-hero-ribbon-cta:hover {
  transform: translateY(calc(-50% - 2px));
  filter: drop-shadow(0 14px 18px rgba(45, 22, 0, 0.18));
  color: var(--lp-navy-2);
}
.lp-hero-ribbon-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 44px;
  background: var(--lp-orange-2);
  color: #fff;
  border-radius: 9px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
}
.lp-hero-ribbon-cta-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-navy-2);
  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.lp-hero-ribbon-cta-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #06C755;
  letter-spacing: 0.04em;
}
.lp-hero-ribbon-cta-arrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 28px;
  color: var(--lp-orange-2);
}

/* ===========================
   COMPANY (動画で応募。企業からスカウトも届く！)
   =========================== */
.lp-company {
  position: relative;
  background: var(--lp-navy-2);
  color: #fff;
  padding: 0;
}
.lp-company-rule {
  width: 100%;
}
.lp-company-rule-top {
  height: 10px;
  background: var(--lp-orange-2);
}
.lp-company-rule-bottom {
  height: 8px;
  background: var(--lp-orange-2);
}
.lp-company-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 80px 72px;
  text-align: center;
  position: relative;
}
.lp-company-head {
  position: relative;
  margin-bottom: 32px;
}
.lp-company-rule-accent {
  width: 160px;
  height: 5px;
  background: var(--lp-orange-2);
  border-radius: 2px;
  margin: 0 auto 28px;
}
.lp-company-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--lp-orange-2);
  margin-bottom: 16px;
}
.lp-company-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 46px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 18px;
}
.lp-company-lead {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 246, 234, 0.86);
  line-height: 1.7;
}
.lp-company-note {
  font-size: 24px;
  font-weight: 700;
  color: var(--lp-orange-soft);
  margin-bottom: 32px;
}
.lp-company-logos {
  background: #fff;
  border-radius: 12px;
  padding: 28px 36px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  margin-bottom: 48px;
  overflow: hidden;
}
/* 旧マーキー用ラッパー（残置: 他で参照されてもレイアウト破綻しないように残す） */
.lp-company-logos-marquee {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: lp-logos-scroll 40s linear infinite;
}
.lp-company-logos-track {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
/* 静的レイアウト用: 折り返してすべて見えるようにする。重複出力なし */
.lp-company-logos-track--static {
  width: auto;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 16px;
  animation: none;
}
.lp-company-logo {
  flex-shrink: 0;
  width: 200px;
  background: var(--lp-cream-2);
  border: 1px solid rgba(255, 206, 155, 0.5);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(30, 18, 7, 0.12);
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  /* <a> 要素にも適用するのでリンク既定の装飾をリセット */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.lp-company-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(30, 18, 7, 0.18);
}
.lp-company-logo img {
  max-height: 60px;
  max-width: 80%;
  object-fit: contain;
}
@keyframes lp-logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 8px)); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-company-logos-marquee { animation: none; }
}

/* Job tags */
.lp-company-jobtags {
  margin-top: 8px;
}
.lp-jobtags-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}
.lp-jobtags-line {
  width: 80px;
  height: 1px;
  background: rgba(228, 236, 244, 0.5);
}
.lp-jobtags-text {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.lp-jobtags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.lp-jobtag {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 16px;
  transition: opacity 0.2s;
}
.lp-jobtag:hover {
  opacity: 0.85;
}
.lp-jobtags-viewall {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
}

/* ===========================
   FEATURES (UPROキャリアの特徴)
   =========================== */
.lp-features {
  background: #fff;
  padding: 100px 0 80px;
}
.lp-features-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
.lp-features-card {
  position: relative;
  background: var(--lp-cream-2);
  border: 1px solid var(--lp-border-cream);
  border-radius: 28px;
  padding: 28px 28px 32px;
  box-shadow: 0 14px 18px rgba(18, 10, 5, 0.13);
  overflow: hidden;
}
.lp-features-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--lp-orange);
}
.lp-features-card-head {
  position: relative;
  text-align: center;
  padding: 24px 32px 12px;
  margin-bottom: 32px;
}
.lp-features-card-headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 27px;
  line-height: 1.3;
  color: var(--lp-navy);
  margin-bottom: 14px;
}
.lp-features-card-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text);
  line-height: 1.7;
}
.lp-features-card-badge {
  display: inline-block;
  background: var(--lp-orange-light);
  border: 1px solid rgba(255, 90, 9, 0.28);
  color: var(--lp-orange);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 21px;
  position: absolute;
  top: 12px;
  right: 12px;
}

/* Feature grid */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.lp-feature {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-border-cream);
  border-radius: 22px;
  padding: 21px;
  min-height: 314px;
  box-shadow: 0 8px 10px rgba(18, 10, 5, 0.08);
}
.lp-feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.lp-feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-2) 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.lp-feature-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  color: var(--lp-navy);
  margin: 0;
}
.lp-feature-body {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text);
  line-height: 1.6;
  margin-bottom: 14px;
}
.lp-feature-illust {
  position: absolute;
  pointer-events: none;
}
.lp-feature-illust-01 {
  position: static;
  width: 100%;
  max-width: 160px;
  margin: 0 auto 14px;
  display: block;
}
.lp-feature-illust-04 {
  right: 8px;
  top: 36px;
  width: 100px;
}
.lp-feature-illust img {
  width: 100%;
  display: block;
}
.lp-feature-mail {
  position: absolute !important;
  right: 0;
  top: 140px;
  width: 70px !important;
}
.lp-feature-bubble {
  background: var(--lp-mint);
  border: 1px solid var(--lp-mint-border);
  border-radius: 16px;
  padding: 10px 14px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.lp-feature-bubble-label {
  font-weight: 900;
  font-size: 14px;
  color: var(--lp-navy);
  margin-bottom: 4px;
}
.lp-feature-bubble-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--lp-text);
}
/* Card 02: 枠なし動画サムネ */
.lp-feature-thumb {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
}
.lp-feature-thumb img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.lp-feature-play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(4, 10, 67, 0.85);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
}
/* Card 03: フロー画像 */
.lp-feature-step3 {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.lp-feature-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-navy);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 22px;
  border-radius: 16px;
  margin-top: 8px;
}

/* Features band */
.lp-features-band {
  background: var(--lp-navy);
  border-radius: 24px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.lp-features-band-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 14px;
}
.lp-features-band-body {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}
/* Features band CTA (リボンCTAと同デザイン、navy背景上に配置) */
.lp-features-band-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 72px;
  background: #fff;
  color: var(--lp-navy-2);
  padding: 0 22px;
  border-radius: 32px;
  text-decoration: none;
  align-self: center;
  filter: drop-shadow(0 10px 13px rgba(0, 0, 0, 0.18));
  transition: transform 0.2s, filter 0.2s;
}
.lp-features-band-cta:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.24));
  color: var(--lp-navy-2);
}
.lp-features-band-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 44px;
  background: var(--lp-orange-2);
  color: #fff;
  border-radius: 9px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
}
.lp-features-band-cta-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  color: var(--lp-navy-2);
  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.lp-features-band-cta-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #06C755;
  letter-spacing: 0.04em;
}
.lp-features-band-cta-arrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 28px;
  color: var(--lp-orange-2);
}

/* Benefit chips */
.lp-features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.lp-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--lp-border-cream);
  border-radius: 19px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  color: var(--lp-navy);
}
.lp-chip-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lp-orange-light);
  position: relative;
}
.lp-chip-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--lp-orange);
}

/* ===========================
   AI DEMO (AI面接を試してみる)
   =========================== */
.lp-aidemo {
  background: linear-gradient(180deg, #f0fbf6 0%, #fffefb 100%);
  padding: 100px 0 80px;
}
.lp-aidemo-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
.lp-aidemo-card {
  background: #fff;
  border: 1.5px solid rgba(156, 214, 193, 0.65);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 16px 17px rgba(5, 26, 18, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

/* Mock */
.lp-aidemo-mock {
  background: var(--lp-cream);
  border: 1px solid rgba(156, 214, 193, 0.55);
  border-radius: 24px;
  overflow: hidden;
}
.lp-aidemo-mock-header {
  background: var(--lp-navy);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-aidemo-rec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lp-orange);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 14px;
}
.lp-aidemo-question {
  flex: 1;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.lp-aidemo-timer {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.lp-aidemo-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  padding: 22px;
}
.lp-aidemo-video {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 204px;
}
.lp-aidemo-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-aidemo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(4, 10, 67, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
}
.lp-aidemo-transcript {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-border-cream);
  border-radius: 18px;
  padding: 16px;
  height: 204px;
}
.lp-aidemo-transcript-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--lp-navy);
  margin-bottom: 12px;
}
.lp-aidemo-transcript-body {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text);
  line-height: 1.7;
}
.lp-aidemo-underline {
  position: absolute;
  height: 6px;
  border-radius: 3px;
  background: var(--lp-orange-light);
}
.lp-aidemo-underline-1 {
  left: 16px;
  bottom: 42px;
  width: 60%;
}
.lp-aidemo-underline-2 {
  left: 16px;
  bottom: 24px;
  width: 46%;
}

/* Feedback */
.lp-aidemo-feedback {
  background: #fff;
  border: 1px solid rgba(156, 214, 193, 0.55);
  border-radius: 24px;
  padding: 22px 28px;
}
.lp-aidemo-feedback-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.lp-aidemo-coach-icon {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.lp-aidemo-coach-label {
  font-weight: 900;
  font-size: 14px;
  color: var(--lp-orange);
  margin-bottom: 4px;
}
.lp-aidemo-coach-headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 21px;
  line-height: 1.3;
  color: var(--lp-navy);
}
.lp-aidemo-checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 0;
  margin: 0 0 22px;
}
.lp-aidemo-checks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--lp-navy);
}
.lp-aidemo-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lp-orange);
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}
.lp-aidemo-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.lp-aidemo-note {
  background: var(--lp-mint-2);
  border: 1px solid rgba(156, 214, 193, 0.7);
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 13px;
  color: var(--lp-navy);
  line-height: 1.5;
}
.lp-aidemo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--lp-orange);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.3;
  padding: 12px 22px;
  border-radius: 31px;
  min-width: 158px;
  min-height: 62px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-aidemo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 90, 9, 0.3);
  color: #fff;
}

/* AI demo steps */
.lp-aidemo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-aidemo-step {
  background: #fff;
  border: 1px solid rgba(156, 214, 193, 0.55);
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 10px rgba(5, 26, 18, 0.08);
}
.lp-aidemo-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-2) 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.lp-aidemo-step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--lp-navy);
  margin-bottom: 6px;
}
.lp-aidemo-step-body {
  font-size: 12px;
  font-weight: 500;
  color: var(--lp-text);
  line-height: 1.5;
}

/* ===========================
   FAQ (よくあるお問い合わせ)
   =========================== */
.lp-faq {
  background: var(--lp-cream);
  border-top: 1px solid var(--lp-border-cream);
  padding: 100px 0;
}
.lp-faq-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
.lp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-faq-item {
  background: #fff;
  border: 1px solid var(--lp-border-cream);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 6px 9px rgba(18, 10, 5, 0.05);
  transition: box-shadow 0.2s;
}
.lp-faq-item:hover {
  box-shadow: 0 10px 18px rgba(18, 10, 5, 0.08);
}
.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-faq-item summary::-webkit-details-marker {
  display: none;
}
.lp-faq-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lp-orange-light);
  color: var(--lp-orange);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 17px;
  flex-shrink: 0;
}
.lp-faq-question {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.3;
  color: var(--lp-navy);
}
.lp-faq-toggle {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  color: var(--lp-orange);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.lp-faq-item[open] .lp-faq-toggle {
  transform: rotate(45deg);
}
.lp-faq-answer {
  margin-top: 14px;
  padding-left: 56px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text);
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE - TABLET (~1024px)
   =========================== */
@media (max-width: 1024px) {
  /* Hero: 絶対配置レイアウトを解除し縦積みに */
  .lp-hero-stage {
    height: auto;
    padding: 32px 24px 0;
  }
  .lp-hero-bg-overlay { width: 100%; }
  .lp-hero-rightpanel,
  .lp-phone-frame { display: none; }
  .lp-hero-copy {
    position: static;
    width: 100%;
    max-width: 720px;
    margin-bottom: 24px;
  }
  .lp-hero-lead { font-size: 18px; line-height: 28px; }
  .lp-hero-title-row1 { gap: 10px; margin-bottom: 12px; }
  .lp-hero-title-em { font-size: 54px; line-height: 64px; }
  .lp-hero-title-demo { font-size: 36px; line-height: 46px; }
  .lp-hero-title-row2 { font-size: 48px; line-height: 60px; }
  .lp-hero-mini { width: 168px; height: 152px; padding: 12px 12px 14px; gap: 4px; }
  .lp-hero-mini-wide { width: 184px; }
  .lp-hero-mini-icon { width: 78px; height: 66px; }
  .lp-hero-mini-text { font-size: 15px; line-height: 22px; }
  .lp-hero-note { font-size: 22px; line-height: 32px; }
  .lp-hero-checks { gap: 16px; flex-wrap: wrap; }
  .lp-hero-checks li { height: 46px; font-size: 15px; padding: 0 14px; }

  .lp-hero-ribbon {
    position: static;
    width: 100%;
    height: auto;
    padding: 28px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
  }
  .lp-hero-ribbon-brand { position: static; }
  .lp-hero-ribbon-logo-img { width: 240px; margin-bottom: 10px; }
  .lp-hero-ribbon-tag { font-size: 16px; line-height: 24px; }
  .lp-hero-ribbon-cta {
    position: static;
    width: auto;
    min-width: 320px;
    height: 64px;
    transform: none;
  }
  .lp-hero-ribbon-cta:hover {
    transform: translateY(-2px);
  }
  .lp-hero-ribbon-cta-badge { width: 64px; height: 38px; font-size: 18px; }
  .lp-hero-ribbon-cta-text { font-size: 20px; }
  .lp-hero-ribbon-cta-sub { font-size: 10px; }

  .lp-company-inner { padding: 56px 32px; }
  .lp-company-title { font-size: 36px; }
  .lp-company-logo { width: 180px; }

  .lp-features { padding: 80px 0 60px; }
  .lp-features-inner { padding: 0 32px; }
  .lp-section-title { font-size: 32px; }
  .lp-features-card { padding: 24px; }
  .lp-features-card-headline { font-size: 22px; }
  .lp-features-card-badge { position: static; margin-top: 12px; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features-band { grid-template-columns: 1fr; }

  .lp-aidemo { padding: 80px 0 60px; }
  .lp-aidemo-inner { padding: 0 32px; }
  .lp-aidemo-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .lp-aidemo-steps {
    grid-template-columns: 1fr;
  }

  .lp-faq { padding: 80px 0; }
  .lp-faq-inner { padding: 0 32px; }
  .lp-faq-grid { grid-template-columns: 1fr; }
}

/* ===========================
   RESPONSIVE - MOBILE (~480px)
   =========================== */
@media (max-width: 480px) {
  .lp-section-title { font-size: 26px; }
  .lp-section-lead { font-size: 13px; }

  /* ===== Hero - Mobile (Figma: スマホキービジュアル 390x844) ===== */
  .lp-hero { background: #fff; }
  .lp-hero-stage {
    height: auto;
    padding: 0;
    max-width: 480px;
  }

  /* 背景写真 + 上→下の白グラデオーバーレイ
     リボン直前まで覆うように高さを延長 */
  .lp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url('/site_assets/img/top/v2/kv_hero_bg_sp.jpg');
    background-size: cover;
    background-position: top center;
  }
  .lp-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.18) 100%
    );
  }

  /* PC専用要素は非表示 */
  .lp-hero-rightpanel,
  .lp-phone-frame,
  .lp-hero-ribbon-brand,
  .lp-hero-note,
  .lp-hero-checks { display: none; }

  /* 左コピー領域 */
  .lp-hero-copy {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 8px 24px 0;
    z-index: 2;
  }
  .lp-hero-lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 15px;
    line-height: 24px;
    color: var(--lp-navy-2);
    margin: 0 0 14px;
  }

  /* タイトル: 未経験 でも / はじめやすい / 転職! */
  .lp-hero-title { margin: 0 0 18px; }
  .lp-hero-title-row1 {
    gap: 8px;
    margin-bottom: 2px;
    align-items: baseline;
  }
  .lp-hero-title-em { font-size: 36px; line-height: 44px; }
  .lp-hero-title-demo { font-size: 32px; line-height: 42px; }
  .lp-hero-title-row2 {
    font-size: 36px;
    line-height: 46px;
    color: var(--lp-navy-2);
  }

  /* ミニカードを縦積み・横長ピル形状に */
  .lp-hero-mini-cards {
    flex-direction: column;
    gap: 8px;
    margin: 0;
    width: 200px;
  }
  .lp-hero-mini,
  .lp-hero-mini-wide {
    width: 200px;
    height: 54px;
    padding: 0 12px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border-radius: 9px;
    filter: drop-shadow(0 6px 8px rgba(45, 22, 0, 0.08));
  }
  /* SP: アイコン画像を左に表示、PC用テキストは非表示 → SP用テキストに差し替え */
  .lp-hero-mini-text { display: none; }
  .lp-hero-mini-icon {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .lp-hero-mini::after {
    content: attr(data-sp-text);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 13px;
    line-height: 17px;
    color: var(--lp-navy-2);
  }

  /* 下部オレンジCTA - フルワイド */
  .lp-hero-ribbon {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 50px;
    padding: 28px 30px 30px;
    background: linear-gradient(
      90deg,
      var(--lp-orange-2) 0%,
      #ffb22b 100%
    );
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  /* SP専用: 上部見出し */
  .lp-hero-ribbon-sp-note {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 23px;
    line-height: 34px;
    color: #fff;
    margin: 0 0 22px;
  }

  /* CTA ボタン (白い角丸ピル) */
  .lp-hero-ribbon-cta {
    width: 100%;
    min-width: 0;
    height: 60px;
    padding: 0 22px;
    gap: 14px;
    border-radius: 32px;
  }
  .lp-hero-ribbon-cta-badge {
    width: 64px;
    height: 38px;
    font-size: 18px;
    line-height: 22px;
  }
  .lp-hero-ribbon-cta-text {
    font-size: 20px;
    line-height: 26px;
  }
  .lp-hero-ribbon-cta-sub {
    font-size: 10px;
  }
  .lp-hero-ribbon-cta-arrow {
    font-size: 20px;
    line-height: 24px;
  }

  /* SP専用: 下部チェックテキスト */
  .lp-hero-ribbon-sp-checks {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 19px;
    color: #fff;
    text-align: center;
    margin: 18px 0 0;
  }

  /* Company */
  .lp-company-inner { padding: 40px 16px; }
  .lp-company-title { font-size: 26px; }
  .lp-company-eyebrow { font-size: 13px; }
  .lp-company-lead { font-size: 13px; }
  .lp-company-note { font-size: 16px; margin-bottom: 24px; }
  .lp-company-logos { padding: 16px; }
  .lp-company-logos-marquee { gap: 10px; }
  .lp-company-logos-track { gap: 10px; }
  .lp-company-logo { width: 140px; height: 80px; padding: 10px; }
  .lp-company-logo img { max-height: 44px; }
  @keyframes lp-logos-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 5px)); }
  }
  .lp-jobtag { font-size: 11px; padding: 6px 12px; }

  /* Features */
  .lp-features { padding: 60px 0 48px; }
  .lp-features-inner { padding: 0 16px; }
  .lp-section-heading { margin-bottom: 36px; }
  .lp-features-card { padding: 18px; border-radius: 20px; }
  .lp-features-card-head { padding: 20px 8px 8px; margin-bottom: 24px; }
  .lp-features-card-headline { font-size: 18px; }
  .lp-features-card-sub { font-size: 12px; }
  .lp-features-grid { grid-template-columns: 1fr; gap: 14px; }
  .lp-feature { min-height: auto; padding: 18px; }
  .lp-feature-title { font-size: 19px; }
  .lp-features-band { padding: 22px; border-radius: 18px; }
  .lp-features-band-title { font-size: 22px; }
  .lp-features-band-body { font-size: 13px; }
  .lp-features-band-cta { height: 60px; padding: 0 16px; gap: 12px; }
  .lp-features-band-cta-badge { width: 56px; height: 34px; font-size: 18px; line-height: 22px; }
  .lp-features-band-cta-text { font-size: 18px; line-height: 24px; }
  .lp-features-band-cta-sub { font-size: 9px; }
  .lp-features-band-cta-arrow { font-size: 18px; line-height: 22px; }
  .lp-feature-chip { font-size: 12px; padding: 8px 14px; }

  /* AI demo */
  .lp-aidemo { padding: 60px 0 48px; }
  .lp-aidemo-inner { padding: 0 16px; }
  .lp-aidemo-card { padding: 18px; gap: 24px; border-radius: 20px; }
  .lp-aidemo-mock-header {
    padding: 12px 14px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .lp-aidemo-question { font-size: 13px; flex-basis: 100%; order: 3; }
  .lp-aidemo-rec { font-size: 11px; padding: 4px 10px; }
  .lp-aidemo-timer { font-size: 13px; }
  .lp-aidemo-body { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .lp-aidemo-video { height: 180px; }
  .lp-aidemo-transcript { height: auto; }
  .lp-aidemo-feedback { padding: 18px; }
  .lp-aidemo-feedback-head { gap: 12px; }
  .lp-aidemo-coach-icon { width: 56px; height: 56px; }
  .lp-aidemo-coach-headline { font-size: 17px; }
  .lp-aidemo-checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lp-aidemo-checks li { font-size: 13px; }
  .lp-aidemo-foot {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lp-aidemo-cta { width: 100%; padding: 14px; }

  /* FAQ */
  .lp-faq { padding: 60px 0; }
  .lp-faq-inner { padding: 0 16px; }
  .lp-faq-item { padding: 18px; }
  .lp-faq-q { width: 36px; height: 36px; font-size: 15px; }
  .lp-faq-question { font-size: 14px; }
  .lp-faq-answer { font-size: 12px; padding-left: 50px; }
}

/* 求人検索バー (.lp-search-*) の共通スタイルは service-common.css に移動 */
