/* ============================================
   CSS Custom Properties（デザイントークン）
   Figmaスクリーンショット・メタデータから抽出
============================================ */
:root {
  /* カラー */
  --color-navy:       #0d2461;   /* 濃いネイビー: ロゴ・見出し・最終CTA背景 */
  --color-blue:       #1b63d4;   /* メインブルー: リンク・強調・番号バッジ */
  --color-teal:       #22d3ee;   /* ティール: アクセント・ロゴ装飾 */
  --color-yellow:     #f5d633;   /* 黄色: CTAボタン（主） */
  --color-bg-light:   #edf2fb;   /* 薄いブルーグレー: コストセクション背景 */
  --color-text:       #333333;   /* 本文テキスト */
  --color-text-mid:   #555555;   /* 補助テキスト */
  --color-white:      #ffffff;
  --color-border:     #dde6f0;   /* 罫線・カード枠 */

  /* レイアウト */
  --header-height:    72px;      /* Figmaのヘッダー高さに合わせる */
  --container-width:  1200px;    /* コンテンツ幅（Figma: 1440px中 左右120pxパディング） */
  --gutter:           40px;      /* 左右パディング */

  /* 角丸 */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-pill: 9999px;

  /* シャドウ */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }


/* ============================================
   共通: ボタン
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* 黄色（主CTA） */
.btn--yellow {
  background: #ffee59;
  color: #0c4fa2;
  border-color: #ffee59;
}

/* ネイビー（副CTA） */
.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* お問い合わせボタン */
.btn--outline-white {
  background: #00357f;
  color: var(--color-white);
  border-color: transparent;
}

/* サイズバリエーション */
.btn--sm {
  padding: 10px 22px;
  font-size: 1rem;
}

.btn--lg {
  padding: 18px 60px;
  font-size: 1.1rem;
  min-width: 240px;
}

/* 中間CTAセクション用（横幅広め） */
.btn--cta {
  padding: 20px 48px;
  font-size: 1.375rem;
  min-width: 380px;
}

.btn__arrow {
  font-size: 1em;
  font-weight: 900;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}


/* ============================================
   01: ヘッダー
   Figma: 幅1440px × 高さ72px、白背景固定
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo-img {
  height: 36px;   /* ヘッダー72pxに対して余白を保つサイズ */
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  padding: 4px 0;
  transition: color 0.2s;
}

.header__nav-link:hover { color: var(--color-blue); }



.header__cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* ============================================
   02: ヒーロー（FV）
   Figma: 幅1440px × 高さ800px
   背景: 海・空のイラスト（CSS グラデーションで近似）
   左: テキスト（幅490px）/ 右: PCモックアップ（幅660px）
============================================ */
.hero {
  position: relative;
  height: 800px;
  padding-top: var(--header-height);
  background-image: url("https://assets.lp.officedock.jp/images/02_hero_.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--gutter) 60px;
  /* PC: 左列490px・右列残り、各要素をグリッドで配置 */
  display: grid;
  grid-template-columns: 490px 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 48px;
  align-items: start;
}

/* PC: 左列に配置 */
.hero__title {
  grid-column: 1;
  grid-row: 1;
}

.hero__desc {
  grid-column: 1;
  grid-row: 2;
}

.hero__btns {
  grid-column: 1;
  grid-row: 3;
}

.hero__badge {
  grid-column: 1;
  grid-row: 4;
  width: fit-content;
}

/* PC: 右列に配置（縦方向は全行にまたがる） */
.hero__media {
  grid-column: 2;
  grid-row: 1 / 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mockup {
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 20px 48px rgba(0, 30, 100, 0.22));
}

.hero__title {
  font-size: 2.85rem;
  font-weight: 700;
  background: linear-gradient(180deg, #0044a4 0%, #0084ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero__desc {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* 「特許出願中」バッジ（Figma: h=35, rounded） */
.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid rgba(13, 36, 97, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.35);
}



/* ============================================
   03: 動画エリア
   Figma: 幅1440px × 高さ572px
   背景: 白 / YouTube iframe 直接埋め込み
============================================ */
.video-sec {
  padding: 64px 0;
  background: var(--color-white);
  display: flex;
  align-items: center;
}

.video-sec__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* 動画プレーヤー本体: 16:9 アスペクト比 */
.video-sec__player {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* YouTube iframe */
.video-sec__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ============================================
   04: 課題提起
   Figma: 幅1438px × 高さ236px、白背景、中央揃え
============================================ */
.problem {
  padding: 72px 0 64px;
  background: var(--color-white);
}

.problem__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.problem__title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #00357f;
  line-height: 1.6;
  margin-bottom: 32px;
}

.problem__text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.85;
}


/* ============================================
   05: 解決訴求（青帯）
   Figma: 幅1437px × 高さ290px
   「集計・分析機能」はボックス強調（白背景 + ネイビーテキスト）
============================================ */
.solution {
  padding: 72px 0;
  background: linear-gradient(90deg, #2559d2 0%, #6ecfd1 100%);
}

.solution__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.solution__line {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.solution__line:last-child { margin-bottom: 0; }

/* 「集計・分析機能」強調ボックス */
.solution__highlight {
  display: inline-flex;
  align-items: center;
  background: var(--color-white);
  color: #0068b6;
  padding: 4px 20px 6px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.3;
}


/* ============================================
   中間CTA（06・08共通）
   Figma: 幅1438px × 高さ216px
   「3分でわかる」吹き出し + 黄色ボタン + マスコット右
============================================ */
.cta-mid {
  padding: 44px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-mid__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta-mid__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* 吹き出しバブル（Figma: 上部の「3分でわかる〜」ラベル） */
.cta-mid__bubble {
  position: relative;
  display: inline-block;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 28px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
}

/* 吹き出しの下三角（擬似要素で作成） */
.cta-mid__bubble::before,
.cta-mid__bubble::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.cta-mid__bubble::before {
  bottom: -14px;
  border-top: 13px solid var(--color-border);
}

.cta-mid__bubble::after {
  bottom: -11px;
  border-top: 11px solid var(--color-white);
  z-index: 1;
}

/* マスコット: Figmaでx=828.5に配置 */
.cta-mid__mascot { flex-shrink: 0; }

.cta-mid__mascot img {
  width: 200px;
  height: auto;
}


/* ============================================
   07: 機能紹介
   Figma: 幅1438px × 高さ1289px
   ヘッダー → 2列×2行グリッド
============================================ */
.feature {
  padding: 100px 0 110px;
  background: var(--color-white);
}

.feature__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* セクションヘッド */
.feature__head {
  text-align: center;
  margin-bottom: 64px;
}

.feature__eyebrow {
  font-size: 1.5625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.feature__title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.4;
}

.feature__title-accent {
  /* Figma: 「4つの機能」部分はフォントサイズ大きめ・強調 */
  font-style: normal;
  font-size: 1.15em;
  color: var(--color-blue);
}

/* 2列グリッド（Figma: 左x=154、右x=739、各幅545px） */
.feature__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* 機能カード
   Figmaレイアウト:
     上部（h=257）: 番号バッジ（左）＋ 全テキスト（右: タイトル・サブ・説明文）
     下部（h=272）: スクリーンショット画像
*/
.feature-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

/* カード上部: 番号 + テキストブロック（横並び） */
.feature-card__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  flex: 1;
}

/* 番号バッジ（円形） */
.feature-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
}

/* テキストブロック（タイトル・サブ・説明文を縦に並べる） */
.feature-card__text { flex: 1; }

.feature-card__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #016fe1;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card__sub {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* 説明文: Figmaでは番号と同じブロック内（テキスト上部）に配置 */
.feature-card__desc {
  font-size: 1.125rem;
  color: #333333;
  line-height: 1.85;
}

/* スクリーンショット画像（カード下部） */
.feature-card__img-wrap {
  flex-shrink: 0;
}

.feature-card__img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}


/* ============================================
   09: 人件費見える化
   Figma: 幅1440px × 高さ600px、薄い青背景
   左: 見出し+本文（幅776px）/ 右: 同心円グラフ（幅374px）
============================================ */
.cost {
  padding: 80px 0 100px;
  background: var(--color-bg-light);
}

.cost__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 80px;
}

/* 左: テキストブロック */
.cost__text { flex: 1; }

.cost__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.55;
  margin-bottom: 36px;
}

.cost__accent { color: var(--color-blue); }

.cost__desc {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 2;
}

/* 右: 図解画像 */
.cost__diagram {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cost__diagram-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}


/* ============================================
   10: 労働生産性
   Figma: 幅1440px × 高さ565px
   薄いブルーの角丸カード内: 見出し + 説明文 + 3カードグリッド
   マスコットがカード右上からはみ出す（y=-110）
============================================ */
.productivity {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.productivity__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* 角丸カード（薄い青背景） */
.productivity__card {
  position: relative;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 72px 80px 64px;
  overflow: visible;   /* マスコットがはみ出すので visible に設定 */
}

/* マスコット: Figmaではカード右上にはみ出して配置 */
.productivity__mascot {
  position: absolute;
  top: -30px;
  right: 60px;
  width: 110px;
}

.productivity__mascot img { width: 100%; }

.productivity__title {
  font-size: 1.85rem;
  font-weight: 700;
  background: linear-gradient(90deg, #2559d2 0%, #6ecfd1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 20px;
}

.productivity__accent { color: var(--color-teal); }

.productivity__desc {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 56px;
}

/* 3カードグリッド（Figma: 横並び 320px×225px × 3枚） */
.productivity__grid {
  display: grid;
  grid-template-columns: repeat(3, 370px);
  gap: 24px;
  justify-content: center;
}

.prod-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prod-item__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

.prod-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 14px;
  line-height: 1.45;
}

.prod-item__desc {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.85;
  text-align: left;
}


/* ============================================
   11: 最終メッセージ
   Figma: 幅1440px × 高さ137px（コンパクト）
============================================ */
.message {
  padding: 60px 0 16px;
  background: var(--color-white);
}

.message__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.sp-br {
  display: none;
}

.pc-br {
  display: block;
}

.message__title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #2559d2 0%, #6ecfd1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.45;
  margin-bottom: 28px;
}

.message__desc {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 2;
}


/* ============================================
   12: 最終CTA
   Figma: 幅1440px × 高さ70px
   ネイビー背景 + ボタン2つ（黄色・白抜き）を横並び中央配置
============================================ */
.cta-final {
  padding: 16px 0 48px;
  background: var(--color-white);
}

.cta-final__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* ============================================
   フッター
============================================ */
.footer {
  background: var(--color-navy);
  padding: 32px 0;
}

.footer__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}


/* ============================================
   スマホ対応 (768px以下 / 基準幅375px)
============================================ */
@media (max-width: 768px) {

  /* --- 共通 --- */
  html, body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* --- ヘッダー --- */
  .header__inner {
    padding: 0 20px;
    justify-content: flex-end;
    gap: 12px;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__logo-img {
    height: 22px;
  }

  /* スマホではナビリストを非表示 */
  .header__nav-list {
    display: none;
  }

  .header__nav {
    gap: 8px;
  }

  .header__cta-btns {
    gap: 8px;
  }

  .btn--sm {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* --- ヒーロー --- */
  .hero {
    height: auto;
    min-height: 480px;
    background-position: 70% center;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 24px);
  }

  .hero__inner {
    flex-direction: column;
    padding: 24px 20px 40px;
    gap: 24px;
  }

  .hero__title {
    font-size: 2.1875rem;
  }

  .hero__desc {
    font-size: 0.9375rem;
    max-width: 100%;
    margin-bottom: 8px;
  }

  .hero__btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero__btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* スマホ: flex縦並びでorder指定 */
  .hero__inner {
    display: flex;
    flex-direction: column;
  }

  .hero__title  { order: 1; }
  .hero__desc   { order: 2; }
  .hero__media  { order: 3; width: 100%; }
  .hero__btns   { order: 4; flex-direction: column; align-items: center; width: 100%; }
  .hero__btns .btn { width: 100%; text-align: center; justify-content: center; }
  .hero__badge  { order: 5; align-self: center; }

  .hero__mockup {
    max-width: 100%;
    filter: none;
  }

  /* --- 動画 --- */
  .video-sec {
    padding: 32px 0;
  }

  .video-sec__inner {
    padding: 0 16px;
  }

  .video-sec__player {
    max-width: 100%;
  }

  /* --- 課題セクション --- */
  .problem {
    padding: 48px 0 40px;
  }

  .problem__inner {
    padding: 0 20px;
  }

  .problem__title {
    font-size: 1.4rem;
  }

  .problem__text {
    font-size: 0.9375rem;
    text-align: left;
  }

  /* --- 解決訴求 --- */
  .solution {
    padding: 40px 0;
  }

  .solution__inner {
    padding: 0 20px;
  }

  .solution__line {
    font-size: 1.25rem;
  }

  .solution__highlight {
    font-size: 1.5rem;
  }

  /* --- CTA中間 --- */
  .cta-mid {
    padding: 32px 0;
  }

  .cta-mid__inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }

  .cta-mid__mascot img {
    width: 140px;
  }

  .btn--cta {
    width: 100%;
    justify-content: center;
    min-width: unset;
    font-size: 1.1rem;
  }

  /* --- 機能4枚 --- */
  .feature {
    padding: 48px 0;
  }

  .feature__inner {
    padding: 0 20px;
  }

  .feature__eyebrow {
    font-size: 1.1rem;
  }

  .feature__title {
    font-size: 1.5rem;
  }

  .feature__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card__title {
    font-size: 1.5rem;
  }

  .feature-card__sub {
    font-size: 1.25rem;
  }

  .feature-card__desc {
    font-size: 1.125rem;
  }

  /* --- 人件費セクション --- */
  .cost {
    padding: 48px 0;
  }

  .cost__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
  }

  .cost__title {
    font-size: 1.4rem;
  }

  .cost__desc {
    font-size: 1.125rem;
  }

  .cost__diagram {
    flex: none;
    width: 100%;
  }

  .cost__diagram-img {
    max-width: 260px;
    margin: 0 auto;
  }

  /* --- 生産性セクション --- */
  .productivity {
    padding: 48px 0 60px;
  }

  .productivity__inner {
    padding: 0 12px;
  }

  .productivity__card {
    padding: 40px 16px 40px;
  }

  .productivity__title {
    font-size: 1.4rem;
    max-width: 100%;
  }

  .productivity__desc {
    font-size: 1.125rem;
    max-width: 100%;
    text-align: left;
  }

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

  .prod-item {
    padding: 20px 16px;
  }

  .prod-item__title,
  .prod-item__desc {
    max-width: 100%;
  }

  /* --- メッセージ --- */
  .message {
    padding: 40px 0 12px;
  }

  .message__inner {
    padding: 0 20px;
  }

  .message__title {
    font-size: 1.5625rem;
  }

  .sp-br {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .message__desc {
    font-size: 1.125rem;
    text-align: left;
  }

  /* --- 最終CTA --- */
  .cta-final {
    padding: 12px 0 40px;
  }

  .cta-final__inner {
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
  }

  .btn--lg {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* --- フッター --- */
  .footer {
    padding: 24px 0;
  }

  .footer__logo {
    height: 36px;
  }

}
