/* プレビューヘッダー
.fs-trial-header,
#fs_preview_header {
  display: none;
}
*/

.item-inquiry-message {
  text-decoration: underline;
  font-weight: 700;
  font-size: 1.1em;
}

/* 2列横並びコンテナ */
.cc-img-row {
  display: flex;
  justify-content: space-between;
  gap: 16px; /* 画像同士のすき間 */
  margin-bottom: 20px; /* 下の要素とのすき間 */
}

/* 各列の幅 */
.cc-img-col {
  flex: 1;
  width: calc(50% - 8px); 
}

/* 画像の上のテキスト設定 */
.cc-img-txt {
  font-size: 20px; /* 文字の大きさ */
  line-height: 2.0; /* 行の高さ */
  font-weight: bold; /* 太字 */
  margin-bottom: 8px; /* テキストと画像の間のすき間 */
}

/* 画像のレスポンシブ対応 */
.cc-img-col img {
  width: 100%;
  height: auto;
  display: block;
}