@charset "utf-8";


/* 全体のコンテナ設定 */
.sol-theme-container {
  width: 100%;
  box-sizing: border-box;
}

/* 2カラムのレイアウト（PC用） */
.sol-theme-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

/* 各ブロックの背景と余白 */
.sol-theme-block {
  flex: 1;
  background-color: #f2f2f2;
  padding: 30px 25px;
  box-sizing: border-box;
}

/* 見出しのスタイル */
.sol-theme-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
}

/* リスト全体のスタイル */
.sol-theme-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各リスト項目のスタイル（中黒「・」の再現） */
.sol-theme-list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 6px;
  line-height: 1.5;
}

.sol-theme-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.sol-theme-list li:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応（タブレット・スマホ用：768px以下で縦並び） */
@media screen and (max-width: 768px) {
  .sol-theme-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}