@charset "UTF-8";
/****************************************
 * Strengths Page — 私たちの強み
 * 前提：common.css の --blue / --red、フォント、.wrap/.contents、.link-more
 ****************************************/

/* ===== ヒーロー ===== */
.strengths-hero {
  padding: clamp(36px, 6vw, 64px) 0 0;
}

.strengths-hero .section-label {
  margin-bottom: 6px;
}

.strengths-hero__title {
  font-family: "Poppins", "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 8vw, 140px);
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--blue);
  margin: 0 0 clamp(12px, 2vw, 18px);
}

/* ===== 導入 ===== */
.strengths-intro {
  padding: clamp(28px, 6vw, 56px) 0;
}

.strengths-intro__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  /* 左：テキスト／右：イラスト */
  gap: clamp(16px, 4vw, 48px);
  align-items: center;
}

.strengths-intro__heading {
  color: var(--blue);
  font-weight: 800 !important;
  font-size: clamp(22px, 3.2vw, 48px);
  line-height: 1.7;
  letter-spacing: .04em;
  margin-bottom: clamp(8px, 1.6vw, 12px);
  margin-bottom: 40px;
}

.strengths-intro__text p {
  font-size: 16px;
  /* 基本文字 16px */
  line-height: 1.9;
  color: #333;
  letter-spacing: .03em;
  margin: 0 0 10px;
}

.em-red {
  color: var(--red);
  font-weight: 700;
  font-size: 20px;
}

/* 指定: 本文中の赤強調 */

.strengths-intro__art img {
  display: block;
  max-width: 520px;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .strengths-intro__grid {
    grid-template-columns: 1fr;
  }

  .strengths-intro__art {
    order: 2;
  }

  .strengths-intro__text {
    order: 1;
  }
}

/* ===== 3つの強み ===== */
.strengths-list {
  padding: clamp(32px, 7vw, 80px) 0;
}
.strengths-txt {
  margin-bottom: 40px;
  font-size: 1.6rem;
}

/* 各アイテム：テキスト左／イラスト右 */
.strength-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(16px, 4vw, 48px);
  align-items: center;
  padding: clamp(12px, 1.8vw, 18px) 0;
  border-top: 1px solid #eef1f4;
}

.strength-item:first-of-type {
  border-top: 0;
}

.strength-item__body p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  letter-spacing: .03em;
  margin: 8px 0 12px;
}
.strength-item__body_p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  letter-spacing: .03em;
  margin: 8px 0 12px;
}

.strength-item__label {
  font-family: "Poppins", "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  color: var(--red) !important;
  font-size: 1.4rem;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.strength-item__heading {
  font-weight: 800 !important;
  font-size: clamp(18px, 2.4vw, 32px);
  line-height: 1.6;
  color: var(--red) !important;
  letter-spacing: .02em;
  margin-bottom: 40px;
}

.strength-item__read {
  font-weight: 700;
  color: #333333;
  font-size: 2.4rem;
  letter-spacing: .08em;
  margin-bottom: 40px;
}

.strength-item__art img {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.strength-item__art .strengths-img {
  max-width: 250px;
}

/* “もっと詳しく”リンク（黒版）位置調整 */
.strength-item .link-more {
  margin-top: 4px;
}

/* レスポンシブ：縦積み */
@media (max-width: 900px) {
  .strength-item {
    grid-template-columns: 1fr;
  }

  .strength-item__art {
    order: 2;
  }

  .strength-item__body {
    order: 1;
  }
}


@media (prefers-reduced-motion: reduce) {

  .strengths-intro__art img,
  .strength-item__art img {
    transition: none;
  }
}