/* ============================================================
   Services セクション（こんな仕事をしています）
   Figma 基準: PC 1280px
   ============================================================ */

.services {
  background: #f8f8f8;
}

.services__inner {
  padding-block: clamp(100px, 16vh, 200px);
  padding-inline: clamp(40px, 7.8vw, 100px);
  max-width: 1512px;
  margin-inline: auto;
}

/* ============================================================
   ヘッダー（SERVICES SVG + サブタイトル）
   ============================================================ */
.services__header {
  margin-bottom: clamp(32px, 4vh, 56px);
}

.services__logo {
  display: block;
  height: clamp(30px, 3.55vw, 46px);
  width: auto;
  margin-bottom: clamp(10px, 1.5vw, 20px);
}

.services__subtitle {
  margin: 0;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.48vw, 19px);
  color: #3d405b;
  letter-spacing: 0.69em;
  line-height: 2.04;
}

/* ============================================================
   カードリスト
   ============================================================ */
.services__list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.95vw, 25px);
}

/* ============================================================
   サービスカード
   PC: 左列（番号 + タグライン） ＋ 右列（タイトル + 本文）
   ============================================================ */
.service-card {
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: clamp(48px, 8.1vw, 104px);
  padding: clamp(32px, 4.06vw, 52px)
           clamp(40px, 6.25vw, 80px)
           clamp(36px, 4.61vw, 59px)
           clamp(28px, 3.91vw, 50px);
}

/* ---- 左列（番号・タグライン） ---- */
.service-card__meta {
  flex-shrink: 0;
  width: clamp(60px, 6.17vw, 79px);
}

.service-card__number {
  margin: 0 0 clamp(10px, 1.33vw, 17px);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.19vw, 28px);
  color: #81b29a;
  line-height: 1.38;
}

.service-card__tagline {
  margin: 0;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.17vw, 15px);
  color: #cbdfbd;
  line-height: 1.4;
}

/* ---- 右列（タイトル・本文） ---- */
.service-card__content {
  flex: 1;
  min-width: 0;
}

.service-card__en-title {
  margin: 0 0 clamp(4px, 0.47vw, 6px);
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.19vw, 28px);
  color: #46474c;
  line-height: 1.38;
  letter-spacing: 0.02em;
}

.service-card__ja-title {
  margin: 0 0 clamp(10px, 1.17vw, 15px);
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.48vw, 19px);
  color: #46474c;
  line-height: 2.04;
}

.service-card__desc {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 16px);
  color: #46474c;
  line-height: 2.06;
}

/* ============================================================
   レスポンシブ: SP（〜 767px）
   ============================================================ */
@media (max-width: 767px) {

  .services__inner {
    padding-inline: clamp(20px, 6vw, 32px);
    padding-block: clamp(60px, 8vh, 100px);
  }

  .services__logo {
    height: 48px;
  }

  /* カード: 縦積みに変更 */
  .service-card {
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px 32px;
  }

  /* 左列: 番号とタグラインを横並びに */
  .service-card__meta {
    width: auto;
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
  }

  .service-card__number {
    margin-bottom: 0;
    font-size: 24px;
  }

  .service-card__tagline {
    font-size: 12px;
  }

  .service-card__en-title {
    font-size: 18px;
  }

  .service-card__ja-title {
    font-size: 16px;
  }

  .service-card__desc {
    font-size: 14px;
    line-height: 2;
  }
}
