body {
    font-family: "Kosugi Maru";
    max-width: 1000px;
}

.kosugi-maru-regular {
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.orbitron {
    font-family: "Orbitron", serif;
    font-style: normal;
}

.ContentWrapper {
    margin-top:10px;
    width: 1000px;

}

.BimTitle {
  display: flex;
  width: 747px;   /* 画像横幅に合わせる */
  height: 400px;  /* 必要に応じて */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;      /* 垂直中央 */
  justify-content: center;  /* 水平中央 */
  text-align: center;
  margin: 0 auto;           /* 要素自体を中央寄せ */
  position: relative;       /* 念のための基準化 */
}

.TextOverlay {
  display: inline-block;                /* 背景をテキストにフィット */
  background-color: rgba(255,255,255,0.8); /* background-color を明示 */
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15); /* 視認性アップ（任意） */
  color:rgba(110,110,110,1);
  z-index: 1;                            /* 万一の重なり順対策 */
}

.TextOverlay p {
  margin: 5px 0;
  font-size: 16px;
  line-height: 1.6;
}

.BimExplainGrid {
    max-width: 820px;
    width: min(820px, 100%); /* 画面が狭い時に縮む */
    margin-inline: auto;     /* 水平方向の中央寄せ */
    
}

.ExplainRapper {
    display:flex;
    margin: 10px 0 10px 0px;
    padding:10px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    display:grid;
    grid-template-columns: 120px 1fr;
    column-gap: 30px;

}

.ExplainRapper p {
    margin:0;
    color:rgba(110,110,110,1);
    line-height: 1.5;
    text-indent: 1.0em;

}

.PieGraph{ margin:0; } /* グリッドで余白作るので */

.PieGraph {
    display: flex;
	justify-content: center;
	align-items: center;
    margin-left: 10px;
    margin-right:10px;
	width: 120px;
	height: 120px;
	font-size: 20px;
	font-weight: 700;
    color:rgba(110,110,110,1);
	border-radius: 50%;
}

.PieGraph.Orange {
    background-image: radial-gradient(white 40%, transparent 41%), conic-gradient(rgb(243,166,94) 0% 60%, #d9d9d97c 60% 70%);
}

.PieGraph.Green {
    background-image: radial-gradient(white 40%, transparent 41%), conic-gradient(rgb(130,213,82) 0% 30%, #d9d9d97c 30% 70%);
}

.PieGraph.Blue {
    background-image: radial-gradient(white 40%, transparent 41%), conic-gradient(rgb(62, 165, 255) 0% 20%, #d9d9d97c 20% 70%);
}

.PieGraph.Red {
    background-image: radial-gradient(white 40%, transparent 41%), conic-gradient(rgb(224,96,109) 0% 30%, #d9d9d97c 30% 70%);
}

.PieGraph.Purple {
    background-image: radial-gradient(white 40%, transparent 41%), conic-gradient(rgb(151, 96, 224) 0% 5%, #d9d9d97c 5% 70%);
}

.ExplainBody { 
  flex: 1 1 auto;
  min-width: 0;           /* ← これでちゃんと折り返す */
  overflow-wrap: anywhere;/* 長い英数対策（任意） */
  word-break: break-word; /* 任意 */
}

.ExplainBody li {
    color:rgba(110,110,110,1);
    line-height: 1.5;
    text-indent: 3.0em;
}