<style>
/* ==========================================
   ベース設定
========================================== */
.mtk02_marketer img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.mtk02_marketer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ==========================================
   PC向けレイアウト
========================================== */
.mtk02_marketer .items {
  display: flex;
  flex-direction: column; /* 全体を縦1列に並べる */
  align-items: center; /* カードを中央揃えにする */
  gap: 48px;
}
.mtk02_marketer .item {
  width: 100%; 
  max-width: 1260px; /* PCでの最大幅 */
  padding: 40px 48px;
  background: #FFF;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* カード内の情報（画像左 ＋ テキスト右） */
.mtk02_marketer .item .information {
  display: flex;
  gap: 48px;
}

/* 画像・本が配置される左側エリア */
.mtk02_marketer .item .information .left-col {
  width: 280px; 
  flex-shrink: 0; 
}
.mtk02_marketer .item .information .image {
  width: 100%;
}

/* テキストが配置される右側エリア */
.mtk02_marketer .item .information .text {
  flex-grow: 1;
}

/* テキスト装飾（PCサイズ） */
.mtk02_marketer .item .information .name {
  margin: 0 0 0.5em;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
}

/* 説明文（PCサイズ） */
.mtk02_marketer .item .description {
  line-height: 1.8;
  font-size: 18px;
  margin-top: 16px;
}
.mtk02_marketer .item .description a {
  color: inherit;
  text-decoration: underline;
}

/* 書籍リスト */
.mtk02_marketer .item .information .books {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px; 
}
.mtk02_marketer .item .information .books li {
  display: block;
  width: 70px;
}
.mtk02_marketer .item .information .books li img {
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* ==========================================
   レスポンシブ対応
========================================== */

/* タブレット〜小さめのPC */
@media screen and (max-width: 992px) {
  .mtk02_marketer .items {
    gap: 32px;
  }
  .mtk02_marketer .item {
    padding: 32px 32px;
  }
  .mtk02_marketer .item .information {
    gap: 32px;
  }
  .mtk02_marketer .item .information .left-col {
    width: 240px;
  }
}

/* スマートフォン（画像とテキストを縦並びにする） */
@media screen and (max-width: 768px) {
  .mtk02_marketer .item {
    padding: 24px 20px;
  }
  .mtk02_marketer .item .information {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .mtk02_marketer .item .information .left-col,
  .mtk02_marketer .item .information .text {
    width: 100%; 
  }
  .mtk02_marketer .item .information .left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mtk02_marketer .item .information .image {
    text-align: center;
    width: 100%;
  }
  .mtk02_marketer .item .information .image img {
    max-width: 200px; /* スマホで大きすぎないよう調整 */
  }

  /* --- スマホ用の文字サイズ調整 --- */
  .mtk02_marketer .item .information .name {
    font-size: 18px; /* 適正サイズに縮小 */
    text-align: left;
    margin-bottom: 12px;
  }
  .mtk02_marketer .item .description {
    font-size: 14px; /* 適正サイズに縮小 */
    line-height: 1.6; /* 行間を少し詰めて読みやすく */
    margin-top: 12px;
  }
  /* ------------------------------ */

  .mtk02_marketer .item .information .books {
    gap: 12px;
    margin-top: 20px;
    justify-content: center; 
  }
  .mtk02_marketer .item .information .books li {
    width: 60px; /* スマホでは本の画像も少し小さめに */
  }
}
</style>