/* ============================================================
   CLEANING 喜久屋 — オンライン事業専用 CSS (online.css)
   ============================================================ */

.online-page {
  padding-top: var(--space-2xl);
}

/* ── 公式サイトリンクボタン (共通 btn-pill 継承) ──────────────────────────── */
.online-link-button {
  margin-top: 0;
}


/* ── オンライン事業紹介エリア (2カラム) ────────────────── */
.online-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

/* 左側：ロゴエリア */
.online-content__media {
  width: 35%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;

  & .online-logo-reaqua {
    width: 85%;

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

  & .online-logo-award {
    width: 85%;

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

/* 右側：テキストエリア */
.online-content__text {
  width: 53%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);

  & .online-content__paragraph {
    font-size: var(--font-size-base);
    color: var(--color-black);
    line-height: 2;
    letter-spacing: 0.01em;
  }

  & .online-sub-heading {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-3xs);
  }

  & .online-sub-paragraph {
    font-size: var(--font-size-sm);
    line-height: 1.8;
  }
}

@media (max-width: 640px) {
  .online-content {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .section__lead {
    letter-spacing: -0.01em;
  }

  .online-content__media {
    width: 100%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 0;

    & .online-logo-reaqua {
      width: 60%;
      margin-bottom: var(--space-lg);
    }

    & .online-logo-award {
      width: 55%;
    }
  }

  .online-content__text {
    width: 100%;

    & .online-sub-paragraph {
      letter-spacing: -0.03em;
    }
  }
}