.square {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: red;
  margin-right: 6px;
  vertical-align: middle;
}


.orange-box::before {
  content: "🟧";
  margin-right: 6px;   /* 絵文字と文字の間の余白 */
}


.pin::before {
  content: "📌";
  margin-right: 6px;     /* 絵文字と文字の間の余白 */
}


.checklist li {
  list-style: none;
  position: relative;
  padding-left: 24px;   /* ← ここが重要：チェックボックスの幅＋余白 */
}

.checklist li::before {
  content: "✔";
  color: white;
  background-color: #4CAF50;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 3px;
  position: absolute;
  left: 0;              /* 左端に配置 */
  top: 50%;
  transform: translateY(-50%);
}


.speech-box {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border: 4px solid #2a7ae2;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.speech-box::before {
  content: "";
  position: absolute;
  top: -40px;          /* ボックスの上に出す */
  left: 20%;
  transform: translateX(-50%);
  border-width: 0 40px 40px 40px;
  border-style: solid;
  border-color: transparent transparent #2a7ae2 transparent;
}

.speech-box::after {
  content: "";
  position: absolute;
  top: -32px;          /* 枠線の内側に白い三角を重ねる */
  left: 20%;
  transform: translateX(-50%);
  border-width: 0 32px 32px 32px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}


/*
.speech-box body {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}
*/

/*
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
*/


.speech-box h1, h2 {
  color: #333;
  margin-top: 40px;
}

.speech-box h1 {
  font-size: 28px;
  font-weight: bold;
  border-left: 6px solid #ff8800;
  padding-left: 12px;
}

.speech-box h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.speech-box p {
  margin-bottom: 16px;
}

/* ✅ 比較表 */
table.comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
}


table.comparison th,
table.comparison td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
}

table.comparison th {
  background: #f0fff0;
  font-weight: bold;
  text-align: center;
}

/* ✅ チェックリスト */
.checklist2 {
  list-style: none;
  padding-left: 0;
}

.checklist2 li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.checklist2 li::before {
  content: "🟧";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}


.pricing-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border: 4px solid #2a7ae2;
  clip-path: polygon(
    10% 0%, 90% 0%,
    100% 25%, 100% 75%,
    90% 100%, 10% 100%,
    0% 75%, 0% 25%
  );
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pricing-wrapper::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 20px 0 20px;
  border-style: solid;
  border-color: #2a7ae2 transparent transparent transparent;
}


.flow2 {
  width: 100px;
  margin: 40px auto;
}

/* 角丸の四角形 */
.flow__step {
  max-width: 500px;
  margin: auto;
  background-color: #f7f7f7;
  border-radius: 12px;     /* ここが角丸 */
  padding: 16px 20px;
  border: 2px solid;
  position: relative;
  text-align: center;
}

/* STEPごとの間に余白をつくる */
/*
.flow__step + .flow__step {
  margin-top: 60px;
}
*/

/* タイトル部分（STEP 1 など） */
.flow__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #333;
}

/* 説明テキスト */
.flow__text {
  font-size: 18px;
  margin: 0;
  color: #555;
}


.pseudo-list span {
  display: block;
  position: relative;
  padding-left: 1em;      /* 中黒の位置 */
  text-indent: -0.1em;      /* ← これが「ぶら下げインデント」 */
  margin-bottom: 6px;
}

.pseudo-list span::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}