@charset "UTF-8";

/* -------- minimal reset -------- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; color: var(--night); background-color: var(--cloud); }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

/* ==========================================================
 共通
========================================================== */

:root {
  /* Primary */
  --sun: #ffda1b;
  --water: #447fe0;

  /* Secondary */
  --night: #202226;
  --cloud: #ffffff;
  --leaf: #2f7417;

  /* Support: Gray */
  --gr-50: #fafafc;
  --gr-75: #f8f8fa;
  --gr-100: #f0f1f5;
  --gr-150: #e5e6ea;
  --gr-200: #dadcdf;
  --gr-250: #d0d1d3;
  --gr-300: #acadb0;
  --gr-350: #a0a1a4;
  --gr-400: #949598;
  --gr-500: #737378;
  --gr-550: #65656a;
  --gr-600: #56575b;

  /* Support: Lychee */
  --ly-50: #fdf3f1;
  --ly-100: #fec3bb;
  --ly-200: #fe9384;
  --ly-300: #ea705f;
  --ly-400: #d64c3a;
  --ly-500: #c23b32;
  --ly-600: #ad2929;

  /* Support: Avocado */
  --av-50: #ecfaec;
  --av-100: #a7e7a5;
  --av-200: #61d45d;
  --av-300: #49bb50;
  --av-400: #30a143;
  --av-500: #197f38;
  --av-600: #025d2c;

  /* Support: Prune */
  --pu-50: #edf6ff;
  --pu-100: #a2caf9;
  --pu-200: #579ef2;
  --pu-300: #4b86df;
  --pu-400: #3f6ecc;
  --pu-500: #385296;
  --pu-600: #303560;

  /* Support: Papaya */
  --pa-50: #fffbd9;
  --pa-100: #ffde75;
  --pa-200: #fec010;
  --pa-300: #f69908;
  --pa-400: #ee7100;
  --pa-500: #b15e0b;
  --pa-600: #734b15;

  /* Support: Sand */
  --sa-50: #fbf8ee;
  --sa-200: #f8f3e1;
  --sa-400: #f3eacf;
  --sa-600: #eddfbb;

  /* Gradation / AI */
  --ai-yellow: #ffda1b;
  --ai-blue: #447fe0;
  --ai-green: #7db298;

  /* english */
  --inter: "Inter", sans-serif;

  /* shadow */
  --elevation-1-box: 0 1px 4px 0 rgba(32, 34, 38, 0.12), 0 4px 8px 0 rgba(32, 34, 38, 0.07), 0 10px 12px 0 rgba(32, 34, 38, 0.04);
  --elevation-2-box: 0 1px 4px 0 rgba(32, 34, 38, 0.12), 0 6px 12px 0 rgba(32, 34, 38, 0.10), 0 12px 24px 0 rgba(32, 34, 38, 0.08);
  --elevation-1-drop: drop-shadow(0 1px 4px rgba(32, 34, 38, 0.12)) drop-shadow(0 4px 8px rgba(32, 34, 38, 0.07)) drop-shadow(0 10px 12px rgba(32, 34, 38, 0.04));
  --elevation-2-drop: drop-shadow(0 1px 4px rgba(32, 34, 38, 0.12)) drop-shadow(0 6px 12px rgba(32, 34, 38, 0.10)) drop-shadow(0 12px 24px rgba(32, 34, 38, 0.08));
}

body, html {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-feature-settings: 'palt' on;
  letter-spacing: 0.08em;
  font-size: 16px;
  font-weight: 400;
  @media screen and (max-width: 768px) {
    font-size: 14px;
  }
}

.inter {
  font-family: var(--inter);
}

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

/* ユーティリティリンク */
.sugao-ss_utility-link {
  font-size: 16px;
  font-weight: bold;
  color: var(--pu-400);
  text-decoration: underline;
  text-underline-offset: 30%;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;

  &:hover {
    color: var(--pa-500);
    text-decoration: underline;
    &::after {
      background-color: var(--pa-500);
    }
  }

  &:visited {
    color: var(--gr-500);
    &::after {
      background-color: var(--gr-500);
    }
  }

  &.text {
    display: inline;
    margin-right: 3px;
    @media screen and (max-width: 768px) {
      font-size: 14px;
    }
  }

  &.arrow {
    &::after {
      content: '';
      width: 20px;
      height: 20px;
      display: inline-block;
      mask-image: url(/img/common/icon_arrow.svg);
      mask-size: cover;
      background-color: var(--pu-400);
    }
    &:hover {
      &::after {
        background-color: var(--pa-500);
      }
    }
    &:visited {
      &::after {
        text-decoration: underline;
        background-color: var(--gr-500);
      }
    }
  }
  &.down {
    &::after {
      content: '';
      width: 20px;
      height: 20px;
      margin-top: 2px;
      display: inline-block;
      mask-image: url(/img/common/icon_arrow.svg);
      mask-size: cover;
      background-color: var(--pu-400);
      transform: rotate(90deg);
    }
    &:hover {
      &::after {
        text-decoration: underline;
        background-color: var(--pa-500);
      }
    }
    &:visited {
      &::after {
        text-decoration: underline;
        background-color: var(--gr-500);
      }
    }
  }
  &.blank {
    &::after {
      content: '';
      width: 20px;
      height: 20px;
      display: inline-block;
      vertical-align: middle;
      mask-image: url(/img/common/icon_blank.svg);
      mask-size: cover;
      background-color: var(--pu-400);
    }
    &:hover {
      &::after {
        text-decoration: underline;
        background-color: var(--pa-500);
      }
    }
    &:visited {
      &::after {
        text-decoration: underline;
        background-color: var(--gr-500);
      }
    }
  }
}

/* ------------------------------------
  テキストスタイル
----------------------------------- */

/* XL（ページタイトル） */
.sugao-ss_xl {
  font-size: 52px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 36px;
  }
}

/* L（セクションタイトル） */
.sugao-ss_l {
  font-size: 48px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 32px;
  }
}

/* M（タイトル） */
.sugao-ss_m {
  font-size: 32px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 24px;
  }
}

/* S（サブタイトル） */
.sugao-ss_s {
  font-size: 24px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 20px;
  }
}

/* XS（リストタイトル） */
.sugao-ss_xs {
  font-size: 18px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    font-size: 16px;
  }
}

/* P（ノーマル本文） */
.sugao-ss_p {
  font-size: 16px;
  @media screen and (max-width: 768px) {
    font-size: 14px;
  }
}

/* P（エモーショナル本文） */
.sugao-ss_p-emotional {
  font-size: 16px;
  line-height: 1.9;
  @media screen and (max-width: 768px) {
    font-size: 14px;
  }
}

/* N（注釈） */
.sugao-ss_n {
  font-size: 10px;
  line-height: 1.4;
}

/* セクションタイトル */
.section-title-content {
  margin-bottom: 40px;
  @media screen and (max-width: 768px) {
    margin-bottom: 32px;
  }

  /* balloon-text は position:absolute でフロー上の高さを持たないため、バルーンを含むタイトルのみ上に余白を確保してズレを防ぐ */
  &:has(.balloon-text) {
    padding-top: 40px;
  }
  .sugao-ss_l {
    position: relative;
  }
}

.balloon-text {
  padding: 2px 12px;
  top: 5px;
}

.lm-section-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 1px;
  @media screen and (max-width: 768px) {
    font-size: 24px;
  }
}

/* -----------------------------------
  余白
----------------------------------- */
.mt120 {
  margin-top: 120px;
  @media screen and (max-width: 768px) {
    margin-top: 80px;
  }
}

.mt100 {
  margin-top: 100px;
  @media screen and (max-width: 768px) {
    margin-top: 60px;
  }
}

.mt80 {
  margin-top: 80px;
  @media screen and (max-width: 768px) {
    top: 60px;
  }
}

.mt60 {
  margin-top: 60px;
  @media screen and (max-width: 768px) {
    margin-top: 48px;
  }
}

.mt48 {
  margin-top: 48px;
  @media screen and (max-width: 768px) {
    margin-top: 32px;
  }
}

.mt40 {
  margin-top: 40px;
  @media screen and (max-width: 768px) {
    margin-top: 32px;
  }
}

.mt32 {
  margin-top: 32px;
  @media screen and (max-width: 768px) {
    margin-top: 24px;
  }
}

.mt24 {
  margin-top: 24px;
  @media screen and (max-width: 768px) {
    margin-top: 16px;
  }
}

.mt20 {
  margin-top: 20px;
  @media screen and (max-width: 768px) {
    margin-top: 12px;
  }
}

.mt16 {
  margin-top: 16px;
  @media screen and (max-width: 768px) {
    margin-top: 8px;
  }
}

.mt12 {
  margin-top: 12px;
  @media screen and (max-width: 768px) {
    margin-top: 8px;
  }
}

.mt8 {
  margin-top: 8px;
  @media screen and (max-width: 768px) {
    margin-top: 4px;
  }
}

.mt4 {
  margin-top: 4px;
  @media screen and (max-width: 768px) {
    margin-top: 2px;
  }
}

/* -----------------------------------
  背景
----------------------------------- */
.bg {
  &.--sun {
    background-color: var(--sun);
  }
  &.--cloud {
    background-color: var(--cloud);
  }
  &.--gray {
    background-color: var(--gr-75);
  }
  &.--lychee {
    background-color: var(--ly-50);
  }
  &.--prune {
    background-color: var(--pu-50);
  }
  &.--papaya {
    background-color: var(--pa-50);
  }
  &.--sand {
    background-color: var(--sa-50);
  }
}
/* ==========================================================
  CTA
  ボタンの見た目・配色・レイアウトは base-child.css に集約。
  ここでは base-child の .child-button margin:16px 0 を打ち消す。
========================================================== */
.cta-list .child-button {
  margin: 0;
}

/* 理由・料金セクション（.cta-list > .list）のボタン間隔 */
.cta-list .list {
  gap: 40px;
  @media screen and (max-width: 768px) {
    gap: 24px;
  }
}
/* ==========================================================
  MV
========================================================== */
.lm-mv {
  padding: 0;
  background-color: var(--sa-50);
  background-image: url(/labor-management/img/bg-mv.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  height: 400px;
  @media screen and (max-width: 768px) {
    height: auto;
    background-image: url(/labor-management/img/bg-mv_sp.png);
  }

  .lm-mv-inner {
    display: grid;
    grid-template-columns: 678px 1fr;
    grid-template-rows: 1fr auto auto 1fr;
    grid-template-areas:
      ".    image"
      "text image"
      "cta  image"
      ".    image";
    column-gap: 40px;
    height: 100%;
    padding: 0 0 0 60px;
    @media screen and (max-width: 768px) {
      grid-template-columns: 1fr;
      grid-template-rows: none;
      grid-template-areas:
        "text"
        "image"
        "cta";
      align-content: start;
      height: auto;
      row-gap: 0;
      padding: 32px 16px;
    }
  }

  .lm-mv-text {
    grid-area: text;
    text-align: left;
  }

  .lm-mv-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--night);
    white-space: nowrap;
    @media screen and (max-width: 768px) {
      font-size: 22px;
      white-space: normal;
      text-align: center;
    }

    .line {
      display: block;
    }

    .accent {
      font-size: 42px;
      color: var(--pu-400);
      @media screen and (max-width: 768px) {
        font-size: 24px;
      }
    }

    .hl {
      display: inline-block;
      margin-top: 12px;
      padding: 2px 10px 4px;
      font-size: 45px;
      color: var(--pu-400);
      background-color: var(--sun);
      @media screen and (max-width: 768px) {
        margin-top: 8px;
        padding: 4px 8px;
        font-size: 25px;
        white-space: normal;
      }
    }
  }

  .cta-list {
    grid-area: cta;
    display: flex;
    gap: 24px;
    margin-top: 40px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      margin-top: 0;
    }

    .item {
      flex: 1 1 0;
      min-width: 0;
    }

    /* 2つのボタンを等幅にして列いっぱいに広げ、20px・1行で収める */
    .child-button {
      height: 80px;
      font-size: 20px;
    }
  }

  .lm-mv-image {
    grid-area: image;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    @media screen and (max-width: 768px) {
      display: block;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }
  }
}

/* ==========================================================
  労務管理システムとは（about）
========================================================== */
.child-section.lm-about {
  padding: 80px 0 30px;
  @media screen and (max-width: 768px) {
    padding: 60px 0 0;
  }

  /* 労務とタレマネの連携を表す1枚のインフォグラフィック */
  .lm-about-image {
    width: 100%;
    max-width: 937px;
    margin: 40px auto 0;
    @media screen and (max-width: 768px) {
      margin-top: 32px;
    }
  }
}

.lm-page {
  .no1 {
    @media screen and (max-width: 768px) {
      padding: 30px 0;
    }
    .no1-list .item-no1 .category {
      letter-spacing: 0;
    }
  }
}


/* ==========================================================
  導入企業ロゴループ
========================================================== */
.logo-slider-frame {
  width: 100%;
  height: 100px;
}

.child-section.company-loopframe {
  max-width: 1760px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 0 40px;
  background-color: #fff;
}

/* ==========================================================
  選ばれる理由
========================================================== */
.child-section.lm-reason {
  .lm-reason-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    @media screen and (max-width: 768px) {
      gap: 24px;
      margin-top: 32px;
    }

    .item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 48px;
      padding: 20px 40px;
      background-color: var(--cloud);
      border-radius: 16px;
      @media screen and (max-width: 768px) {
        flex-direction: column;
        gap: 4px;
        padding: 16px 20px 30px;
      }

      /* 偶数ブロックは画像を右側に */
      &:nth-child(even) {
        flex-direction: row-reverse;
        @media screen and (max-width: 768px) {
          flex-direction: column;
        }
      }

      .lm-reason-image {
        flex: 0 0 600px;
        @media screen and (max-width: 768px) {
          flex: 1 1 auto;
          width: 100%;
        }
      }

      .lm-reason-text {
        flex: 1 1 0;
        text-align: left;

        .sugao-ss_m {
          color: var(--pu-400);
          @media screen and (max-width: 768px) {
            text-align: center;
          }
        }

        p {
          margin-top: 16px;
          @media screen and (max-width: 768px) {
            margin-top: 12px;
          }
        }

        .note {
          display: block;
          margin-top: 12px;
          font-size: 10px;
          line-height: 1.5;
          color: var(--gr-500);
        }

        .sugao-ss_utility-link {
          margin-top: 16px;
          @media screen and (max-width: 768px) {
            display: block;
            text-align: center;
          }
        }
      }
    }
  }

}

/* ==========================================================
  導入効果
========================================================== */
.child-section.lm-effort {
  .lm-effort-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 16px;
    }

    .item {
      flex: 0 1 292px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 14px;
      background-color: var(--sa-50);
      border-radius: 16px;
      @media screen and (max-width: 768px) {
        flex: none;
        width: 100%;
        padding: 24px 16px;
      }

      .lm-effort-label {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: var(--pu-600);
        @media screen and (max-width: 768px) {
          font-size: 20px;
        }
      }

      .lm-effort-num {
        position: relative;
        margin-top: 4px;
        font-family: var(--inter);
        font-size: 74px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.03em;
        color: var(--water);
        @media screen and (max-width: 768px) {
          font-size: 68px;
        }

        /* 単位（回／%）。％はInter、回はNotoにフォールバック */
        .unit {
          margin-left: 2px;
          font-size: 40px;
          letter-spacing: 0;
          @media screen and (max-width: 768px) {
            font-size: 30px;
          }
        }

        /* ※は絶対配置で数字の右上に浮かせ、数字本体の中央位置をずらさない */
        sup {
          position: absolute;
          top: 10px;
          right: 3px;
          margin-left: 2px;
          font-size: 12px;
          font-weight: 400;
          line-height: 1;
          letter-spacing: 0;
          white-space: nowrap;
          color: var(--night);
        }
      }

      .lm-effort-image {
        width: 100%;
        margin-top: auto;
        padding-top: 16px;
        @media screen and (max-width: 768px) {
          padding-top: 10px;
        }
      }
    }
  }

  /* フォント・色は注釈スタイル（.sugao-ss_n）に集約。ここは配置のみ */
  .lm-effort-notes {
    display: flex;
    flex-direction: column;
    max-width: 956px;
    margin-inline: auto;
    text-align: left;
  }
}

/* ==========================================================
  カオナビ連携
========================================================== */
.child-section.lm-linkage {
  .lm-linkage-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    @media screen and (max-width: 768px) {
      gap: 24px;
    }

    .item {
      position: relative;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      background-color: var(--cloud);
      border-radius: 16px;
      @media screen and (max-width: 768px) {
        flex-direction: column;
      }

      /* バッジはカード左上角に重なるタブ（左上・右下のみ角丸） */
      .lm-linkage-badge {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        padding: 5px 15px;
        font-family: var(--inter);
        font-size: 20px;
        font-weight: 700;
        line-height: 1.5;
        color: var(--cloud);
        background-color: var(--av-400);
        border-radius: 16px 0 16px 0;
        @media screen and (max-width: 768px) {
          font-size: 14px;
        }
      }

      .lm-linkage-image {
        flex: 0 0 383px;
        background-color: var(--pa-50);
        @media screen and (max-width: 768px) {
          flex: 1 1 auto;
          width: 100%;
        }

        /* 画像は背景透過。CSS背景色の上に、原寸比を保ったまま下揃えで配置 */
        img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
          object-position: bottom;
          @media screen and (max-width: 768px) {
            height: auto;
          }
        }
      }

      .lm-linkage-text {
        flex: 1 1 0;
        padding: 20px 24px;
        text-align: left;
        @media screen and (max-width: 768px) {
          padding: 24px 20px 28px;
        }

        .lm-linkage-title {
          color: var(--pu-400);
          font-weight: 700;
          line-height: 1.5;

          .sub-title {
            display: block;
            font-size: 24px;
            @media screen and (max-width: 768px) {
              font-size: 18px;
            }
          }

          .main-title {
            display: block;
            font-size: 28px;
            @media screen and (max-width: 768px) {
              font-size: 24px;
            }
          }
        }

        p {
          margin-top: 12px;
        }
      }
    }
  }

  .sugao-ss_utility-link {
    justify-content: center;
  }
}

/* ==========================================================
  機能
========================================================== */
.child-section.lm-func {
  .sugao-ss_utility-link.arrow {
    justify-content: center;
  }

  /* 機能カードは /func/recommend/ の共通インクルード（recommend-list）を読み込む */
  .recommend-list {
    display: flex;
    gap: 40px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 24px;
    }

    > .item {
      flex: 1 1 0;

      > .link {
        position: relative;
        display: flex;
        flex-direction: column-reverse;
        /* column-reverse では flex-end がカード上端側。画像を上端に揃え、余白はテキスト下に逃がす */
        justify-content: flex-end;
        height: 100%;
        border-radius: 16px;
        overflow: hidden;
        background-color: var(--cloud);
        box-shadow: var(--elevation-1-box);
        text-decoration: none;
        @media (hover: hover) {
          &:hover {
            background-color: var(--sun);
          }
        }

        .title-set {
          position: relative;
          padding: 40px 24px 24px;
          text-align: center;

          .title {
            flex-direction: column;
            font-size: 24px;
            font-weight: 700;
            color: var(--pu-400);
            @media screen and (max-width: 768px) {
              font-size: 20px;
            }

            /* タイトル上のアイコン（白丸）はカード上部の画像と重ねる */
            &.child-icon-before::before {
              position: absolute;
              top: 0;
              left: 50%;
              transform: translate(-50%, -50%);
              width: 80px;
              height: 80px;
              background-color: var(--cloud);
              background-size: 40px 40px;
              border-radius: 50%;
            }
          }

          .desc {
            margin-top: 12px;
            color: var(--gr-600);
          }
        }

        .pict {
          padding: 20px 20px 0;
          background-color: var(--sun);
          text-align: center;
        }
      }
    }
  }

  /* scene-list 構造を流用（非リンク）。差分のみ上書き */
  .lm-func-scenes {
    .lm-func-scenes-title {
      text-align: center;
    }

    .scene-list {
      margin-top: 32px;
      @media screen and (max-width: 768px) {
        margin-top: 20px;
        gap: 0;
      }
      > .item > .link {
        cursor: default;
        box-shadow: none;
        border: 1.5px solid var(--gr-150);

        &:hover {
          background-color: var(--cloud);
        }

        .mock-set {
          bottom: initial;
          top: 50%;
          transform: translateY(-50%);
          right: 0;
          width: 180px;
          @media screen and (max-width: 768px) {
            width: 160px;
          }
        }
      }

      /* ラベルは複数行になるため共通の white-space: nowrap を打ち消す */
      .title-set {
        @media screen and (max-width: 768px) {
          align-items: center;
        }
        > .title {
          white-space: normal;
        }
      }
    }
  }
}

/* ==========================================================
  セキュリティ
========================================================== */
.child-section.lm-security {
  .lm-security-certs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    @media screen and (max-width: 768px) {
      gap: 16px;
    }

    .item {
      flex: 0 1 293px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 24px 20px;
      border: 1.5px solid var(--gr-200);
      border-radius: 12px;
      text-align: center;
      @media screen and (max-width: 768px) {
        flex: 1 1 100%;
      }

      .pict {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 117px;

        img {
          width: auto;
          max-height: 117px;
        }
      }

      .text {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;

        .title {
          font-size: 20px;
          font-weight: 700;
          line-height: 1.5;
        }

        .desc {
          font-size: 14px;
          line-height: 1.5;
          text-align: left;
          color: var(--night);
        }
      }
    }
  }

  .lm-security-settings {
    position: relative;
    max-width: 960px;
    margin-inline: auto;
    padding: 40px 54px 48px;
    border: 1.5px solid var(--gr-200);
    border-radius: 12px;
    @media screen and (max-width: 768px) {
      padding: 54px 16px 24px;
      margin-top: 60px;
    }

    /* 見出しは上枠にまたがるバッジ配置（白背景で枠線を分断） */
    .lm-security-settings-title {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 0 12px;
      background-color: var(--cloud);
      white-space: nowrap;
      @media screen and (max-width: 768px) {
        white-space: normal;
        width: max-content;
        max-width: 90%;
        text-align: center;
      }
    }

    .lm-security-settings-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px 16px;

      .item {
        flex: 0 0 182px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        @media screen and (max-width: 768px) {
          flex: 0 1 calc((100% - 16px) / 2);
        }

        .pict {
          width: 80px;
        }

        p {
          font-size: 16px;
          font-weight: 700;
          line-height: 1.5;
          text-align: center;
          @media screen and (max-width: 768px) {
            font-size: 14px;
          }
        }
      }
    }
  }
}

/* ==========================================================
  料金体系
========================================================== */
.child-section.lm-price {

  .lm-price-base {
    max-width: 960px;
    margin: 40px auto 0;
    padding: 40px;
    background-color: var(--cloud);
    border-radius: 16px;
    @media screen and (max-width: 768px) {
      padding: 24px 16px;
    }
  }

  .lm-price-example-title {
    margin-top: 56px;
    text-align: center;
    @media screen and (max-width: 768px) {
      margin-top: 40px;
    }
  }

  .lm-price-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 32px auto 0;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      gap: 40px;
      max-width: 360px;
    }

    .lm-price-cards_item {
      display: flex;
      flex: 1;
      flex-direction: column;
      align-items: center;
      @media screen and (max-width: 768px) {
        width: 100%;
      }

      .lm-price-card_avatar {
        position: relative;
        z-index: 1;
        width: 118px;
        margin-bottom: -58px;
      }

      .lm-price-card {
        overflow: hidden;
        flex: 1;
        width: 100%;
        background-color: var(--cloud);
        border-radius: 16px;
        box-shadow: var(--elevation-1-box);

        .lm-price-card_head {
          padding: 60px 16px 20px;
          background-color: var(--sa-50);

          .lm-price-card_title {
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            color: var(--pa-600);
            @media screen and (max-width: 768px) {
              font-size: 22px;
            }
          }
        }

        .lm-price-card_body {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 20px;
          padding: 20px;

          .lm-price-card_base {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 76px;
            padding: 8px 20px;
            background-color: var(--sun);
            border-radius: 4px;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            color: var(--pa-600);

            .note {
              display: block;
              font-size: 16px;
            }
          }

          .lm-price-card_plus {
            width: 28px;
          }

          .lm-price-card_options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            width: 100%;

            .option {
              display: flex;
              align-items: center;
              justify-content: center;
              min-height: 44px;
              padding: 6px 8px;
              background-color: var(--av-500);
              border-radius: 4px;
              font-size: 16px;
              font-weight: 700;
              text-align: center;
              color: var(--cloud);

              &:only-child {
                grid-column: 1 / -1;
              }

              &.dots {
                gap: 10px;
                background-color: transparent;

                span {
                  width: 10px;
                  height: 10px;
                  border-radius: 50%;
                  background-color: #c9c9c9;
                }
              }
            }
          }
        }
      }
    }
  }

  .lm-price-custom {
    margin-top: 40px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--night);
    @media screen and (max-width: 768px) {
      margin-top: 32px;
      font-size: 20px;
    }

    span {
      position: relative;
      z-index: 0;
      color: var(--pu-400);

      &::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -2px;
        width: 100%;
        z-index: -1;
        height: 36%;
        background-color: var(--sun);
      }
    }
  }

  > .child-inner > .sugao-ss_utility-link.arrow {
    justify-content: center;
  }

}

/* ==========================================================
  導入事例
========================================================== */
.child-section.lm-showcase {
  @media screen and (max-width: 768px) {
    padding: 60px 0;
  }

  /* /scene/roumu_kouritsuka/ の showcase を移植（2件・中央寄せ） */
  .showcase-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 16px;
    }

    > .item {
      width: 356px;
      max-width: 100%;
      @media screen and (max-width: 768px) {
        width: 100%;
      }

      > .link {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-bottom: 44px;
        overflow: hidden;
        text-decoration: none;
        background-color: var(--cloud);
        border-radius: 12px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 6px 10px -2px rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s;

        &:hover {
          background-color: #ffcd46;
        }

        &::after {
          content: "事例を見る";
          position: absolute;
          right: 20px;
          bottom: 20px;
          font-size: 16px;
          color: var(--pu-500);
          text-decoration: underline;
        }

        .pict {
          height: 180px;
          overflow: hidden;

          .capture {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        .company-set {
          padding: 20px;

          .name {
            display: flex;
            align-items: center;
            font-size: 14px;
            line-height: 1.2;
            text-align: left;

            .logo {
              width: 80px;
              height: auto;
              margin-right: 8px;
            }
          }

          .desc {
            margin-top: 16px;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.5;
            text-align: left;
            color: var(--night);
          }
        }
      }
    }
  }

  .sugao-ss_utility-link.arrow {
    justify-content: center;
  }
}

/* ==========================================================
  企業様の声
========================================================== */
.child-section.lm-voice {
  /* /scene/roumu_kouritsuka/ の uservoice を移植 */
  .uservoice-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
    max-width: 1040px;
    margin: 40px auto 0 auto;
    @media screen and (max-width: 768px) {
      flex-direction: column;
    }

    > .item {
      flex: 1;

      > .deco {
        position: relative;
        display: block;
        padding: 32px;
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
        background-color: var(--cloud);
        border-radius: 8px;
        @media screen and (max-width: 768px) {
          padding: 24px;
          font-size: 14px;
        }

        /* 吹き出しの三角 */
        &::before {
          content: "";
          position: absolute;
          top: 100%;
          left: 50%;
          transform: translate(-200%, -50%) rotate(90deg) skew(-45deg);
          display: block;
          width: 40px;
          height: 40px;
          background-color: var(--cloud);
        }

        .accent {
          color: var(--pu-400);
          font-weight: 700;
        }
      }

      > .user {
        margin-top: 16px;
        text-align: center;

        > .pict {
          width: 100%;
          max-width: 260px;
        }

        > .company {
          display: block;
          margin-top: 8px;
          font-size: 20px;
          font-weight: bold;
          color: var(--pu-600);

          > small {
            display: block;
            font-size: 14px;
            font-weight: 400;
          }
        }
      }
    }
  }
}

/* ==========================================================
  よくある質問
========================================================== */
.child-section.lm-faq {

  .lm-faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    @media screen and (max-width: 768px) {
      gap: 16px;
    }

    details {
      width: 100%;
      background: var(--cloud);
      border-radius: 16px;
      box-shadow: var(--elevation-2-box);
      overflow: hidden;
      interpolate-size: allow-keywords;

      /* 開いた時は質問の背景を pa-50 に、アイコンの縦棒を回転させて − にする */
      &[open] summary {
        background-color: var(--pa-50);

        .lm-faq-icon::after {
          transform: translate(-50%, -50%) rotate(0deg);
        }
      }

      /* 開閉をスムーズにアニメーション */
      &::details-content {
        block-size: 0;
        overflow: hidden;
        transition-property: block-size, content-visibility;
        transition-duration: 0.3s;
        transition-timing-function: ease;
        transition-behavior: allow-discrete;
      }
      &[open]::details-content {
        block-size: auto;
      }

      summary {
        position: relative;
        padding: 32px 72px 32px 32px;
        cursor: pointer;
        list-style: none;
        text-align: left;
        transition: background-color 0.3s;
        @media screen and (max-width: 768px) {
          padding: 20px 60px 20px 20px;
        }

        &::-webkit-details-marker {
          display: none;
        }

        &:hover {
          background-color: var(--pa-50);
        }

        .title {
          font-size: 24px;
          font-weight: 700;
          color: var(--pa-600);
          @media screen and (max-width: 768px) {
            font-size: 18px;
          }
        }

        /* ＋/− アイコン: 文字ではなく擬似要素の2本のバーで表現し、縦棒の回転で切替 */
        .lm-faq-icon {
          position: absolute;
          top: 34px;
          right: 24px;
          width: 32px;
          height: 32px;
          background-color: var(--water);
          border-radius: 50%;
          @media screen and (max-width: 768px) {
            top: 18px;
            width: 28px;
            height: 28px;
            right: 16px;
          }

          &::before,
          &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 14px;
            height: 2px;
            background-color: var(--cloud);
            transform: translate(-50%, -50%);
          }

          /* 縦棒（閉じている時は90度＝＋、開くと0度＝横棒に重なって−） */
          &::after {
            transform: translate(-50%, -50%) rotate(90deg);
            transition: transform 0.3s;
          }
        }
      }

      .in-details {
        padding: 32px;
        border-top: 1px solid var(--gr-200);
        text-align: left;
        @media screen and (max-width: 768px) {
          padding: 20px;
        }

        /* 回答は共通の P タイポ（.sugao-ss_p）を使い、行間のみ読みやすさ優先で上書き */
        .desc {
          line-height: 1.8;
        }

        .companyNumUpdate {
          display: block;
          margin-top: 8px;
          font-size: 12px;
        }
      }
    }
  }
}
