/* ================================
   Original.css
   ================================ */

/* 全体ラップ */
.wrap {
  max-width: 1100px;   /* コンテンツ幅 */
  margin: 80px auto;   /* 上下余白＋中央寄せ */
  padding: 0 20px;     /* 横の余白 */
}

/* リード文 */
.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 60px;
  opacity: 0.85;       /* 少し淡く */
}

/* 画像＋テキストのペア */
.pair {
  display: grid;
  grid-template-columns: 55% 45%; /* 左右比率 */
  gap: 40px;
  align-items: center;
  margin-bottom: 100px;
}

/* 画像 */
.pair .media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* テキスト */
.pair .text {
  font-size: 1rem;
  line-height: 1.9;
}

.pair .text p {
  margin: 0.3em 0;
}

/* モバイル対応 */
@media (max-width: 900px) {
  .pair {
    grid-template-columns: 1fr;  /* 縦並び */
    gap: 20px;
    margin-bottom: 60px;
  }
}
