.plus-icon {
  /* 円の大きさと背景色 */
  width: 1.5em;
  height: 1.5em;
  background-color: #005691; /* 画像に近い濃い青 */
  border-radius: 50%; /* 正円にする */

  /* 文字（＋）のスタイル */
  color: #ffffff;
  font-size: 30px; /* ＋の大きさ */
  font-weight: bold;
  font-family: sans-serif; /* 書体によって＋の形が変わります */

  /* 中央配置の設定 */
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center; /* 上下中央 */

  /* 微調整：＋が少し下にずれて見える場合は以下を調整 */
  /* padding-bottom: 4px; */
  box-sizing: border-box;
}

.model_pc .nirin_graph1,
.model_pc .nirin_graph2 {
  position: absolute;
}

.nirin_graph1 p,
.nirin_graph2 p {
  position: relative;
  display: inline-block;
  /* margin: 1.5em 0; */
  padding: 20px;
  /* min-width: 120px; */
  max-width: 100%;
  background: #e5e5e5;
}

.model_pc .nirin_graph1 {
  top: 30px;
  right: 0;
  max-width: 300px;
}

.model_pc .nirin_graph2 {
  bottom: 30px;
  max-width: 230px;
}

.model_pc .nirin_graph1 p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #e5e5e5;
}
.model_pc .nirin_graph2 p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #e5e5e5;
}
.model_sp .nirin_graph1 p::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e5e5e5;
}
.model_sp .nirin_graph2 p::after {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #e5e5e5;
}
