.menuItem {
  background: black;
  color: white;
  border: gray solid 1px;
  height: 40px;
  font-size: 18px;
  align-items: center;
  display: flex;
  /* ← 追加 */
  align-items: center;
  /* ← 垂直中央 */
  padding-left: 10px;
  /* ← 少し左余白が欲しい場合 */
  white-space: nowrap;
  /* ← 折り返し禁止 */
}


.TitleH1 {
  color: white;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  padding-top: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 20px;
  font-weight: bold;
  line-height: 2px;
  color: white;
}

h2 {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 10px;
  margin-bottom: 10px;
}

h2::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #98A8F8, #BCCEF8);
}

h3 {
  font-size: 24px;
  font-weight: bold;
  padding: 10px 10px;
  margin-bottom: 10px;
  margin-top: 5px;
  background: linear-gradient(to right, #DBE5FB, #EAF0FD);
}

h4 {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #F6F0E3;
}

h5 {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 1em;
  border-bottom: 3px solid #F6F0E3;
}

h6 {
  font-size: 15px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 1em;
  border-bottom: 3px dotted #F6F0E3;
}

.dropdown-menu {
  width: 300px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.wrapper {
  background-color: #FFF4E5;
  /* 薄い暖色系 (淡いオレンジ) */
  border: 1px solid #FFCC99;
  /* 同系色のボーダー (少し濃いオレンジ) */
  border-radius: 5px;
  /* 角を丸くする */
  padding: 5px;
  /* 内側の余白を追加 */
  margin: 3px;
  /* 外側の余白を追加 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 軽いシャドウを追加して立体感を演出 */
}

.OuterWrapper {
  background-color: #f5ffe5;
  /* 薄い暖色系 (淡いオレンジ) */
  border: 2px solid #d4e6c3;
  /* バックグラウンドより少し濃い同系色のボーダー */
  /*border-radius: 5px; */
  padding: 3px !important;
  /* 内側の余白を追加 */
  margin-bottom: 10px !important;
  /* 外側の余白を追加 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 軽いシャドウを追加して立体感を演出 */
  感を演出 */
}