@charset "UTF-8";

    /*<!-- ============================================================
         [修正追加] 会社情報 カードグリッド用CSS (PDF構成案に合わせ実装)
         ※ 1rem = 10px 前提 (html { font-size: 62.5%; } が適用済みの想定)
         ※ 最終的には ct-top.css または専用CSSに移動させることを推奨
         ============================================================ -->*/
      /* --- 会社情報カードグリッド (A案: 3カラム×2段、最下段は左寄せ2カード) --- */
      .ct-co-cards {
        padding: 10rem 2rem;
        background: #ffffff;
      }
      .ct-co-cards-inner {
        max-width: 128rem;
        margin: 0 auto;
      }
      .ct-co-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem 3rem;
      }
      .ct-co-card {
        display: flex;
        flex-direction: column;
        background: #ffffff;
        border-radius: 0.6rem;
        box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .ct-co-card:hover {
        transform: translateY(-0.4rem);
        box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
      }
      .ct-co-card-photo {
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
      }
      .ct-co-card-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
      }
      .ct-co-card:hover .ct-co-card-photo img {
        transform: scale(1.04);
      }
      .ct-co-card-title {
        font-size: 2.2rem;
        font-weight: 700;
        padding: 2.4rem 2rem;
        text-align: left;
        color: #222222;
        line-height: 1.4;
      }
      /* タブレット: 2カラム */
      @media (max-width: 1024px) {
        .ct-co-cards-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      /* スマホ: 1カラム縦積み */
      @media (max-width: 767px) {
        .ct-co-cards {
          padding: 6rem 2rem;
        }
        .ct-co-cards-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        .ct-co-card-title {
          font-size: 1.8rem;
          padding: 2rem 1.6rem;
        }
      }
