  .services-modern {
    background: transparent;
    padding: 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
  }

  .services-modern .container-services {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
  }

  /* ヘッダー部分 */
  .services-modern .services-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .services-modern .sub-caps {
    display: block;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #fc6161; /* アクセントカラーの赤 */
    margin-bottom: 15px;
  }
  .services-modern h2 {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    text-shadow: 0 0 15px rgba(50,50,50,0.6);
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.05em;
  }

  /* グリッドレイアウト（3カラムベース、1・2番目を広く） */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }

  /* カードの基本スタイル */
  .service-card-modern {
    grid-column: span 2; /* 基本は3カラム（6÷2） */
    background: rgba(0, 0, 0, 0.4); /* MINDセクションと統一した黒透過 */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
  }

  .services-grid .service-card-modern:nth-child(1),
  .services-grid .service-card-modern:nth-child(2) {
    grid-column: span 3; 
  }

  /* ホバーエフェクト */
  .service-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 97, 97, 0.5); /* ホバー時にアクセントカラーがじわっと光る */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(252, 97, 97, 0.1);
  }

  /* カード内の要素 */
  .service-card-modern .card-num {
    display: block;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }
  .service-card-modern h3 {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 15px;
  }
  .service-card-modern p {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.7;
  }

  /* 改行コントロール用 */
  .pc-only { display: block; }

  /* レスポンシブ */
  @media (max-width: 1024px) {
    .services-grid .service-card-modern:nth-child(n) {
      grid-column: span 3; /* タブレット環境ではすべて2カラムに */
    }
  }

  @media (max-width: 768px) {
    .services-modern { padding: 60px 0; }
    .services-modern .container-services { padding: 0 20px; }
    .services-modern h2 { font-size: 1.8rem; }
    .services-grid {
      grid-template-columns: 1fr; /* スマホでは縦一列 */
      gap: 16px;
    }
    .services-grid .service-card-modern:nth-child(n) {
      grid-column: span 1;
      padding: 30px 20px;
    }
    .service-card-modern h3 { font-size: 1.25rem; }
    .pc-only { display: none; }
  }