/***************************************/
 body {
    text-align: center; /* 全体を中央揃え */
    background-color: #f8f8f8;
}
/***************************************/
 .button-block {
    position: sticky;
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    gap: 15px;
    margin-top: calc(0% + 1em);
    margin-left: 0; /* 右寄せを防ぐため削除 */
    padding: 0 1em; /* 左右の余白を少し確保 */
    background-color: #f8f8f8;
    justify-content: flex-start; /* 左詰め */
    width: 100%; /* 横幅を100%に */
}

.detail-content {
    font-size: 1.8vw;  /* 画面幅に応じたサイズ */
    font-weight: bold;
    color: #333;
    flex-grow: 1; /* ボタンブロックの左側を占有 */
    text-align: left; /* 左寄せ */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/***************************************
 ***************************************/
 .button-container3 {
    display: flex;
    flex-direction: column; /* 縦方向に配置 */
    align-items: center; /* 縦の位置を揃える */
    gap: 10px; /* 上下の間隔を小さく */
    margin: 20px auto 0 auto; /* 上に20pxのマージンを追加して下に移動 */
}
.button-container3 button:hover {
    opacity: 0.85;
}

.button-container2 {
    display: flex;
    justify-content: center; /* ボタンを中央揃え */
    gap: 40px; /* ボタン間の間隔を調整 */
}
.button-container2 div {
    margin-bottom: 0; /* 余計なマージンを削除 */
}


.button-container2 button {
    width: 25vw;
    height: 22vh;
    min-width: 150px;  /* 最小幅を確保 */
    min-height: 60px;  /* 最小高さを確保 */
    padding: 5px;
    color: rgb(19,55, 141);
    text-align: center;
    box-sizing: border-box;
    font-weight: bold;
    font-size: clamp(12px, 4vw, 4vh);
    border-radius: 8px; /* 角を少し丸める */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-in-out;
    margin-bottom: 10px; /* ボタンの下の間隔を少し縮める */
}
.button-container2 button:hover {
    color: white !important;
    background-color: #0056b3;
/*    opacity: 0.70;*/
}

.button-container2 .menuButtonStyle {
    font-weight: bold;
    font-size: clamp(12px, 2vw, 2vh);
}

.dummyStyle {
  /* 元々の visibility は残しておく */
  visibility: hidden;
  
  /* 高さを 0 に */
  height: 0 !important;
  
  /* パディング／マージンを 0 に */
  padding: 0 !important;
  margin: 0 !important;
  
  /* コンテンツを隠す */
  overflow: hidden;
  
  /* ボーダーも消したい場合 */
  border: none !important;
  
  /* ボタン幅も 0 にするなら width:0 も可 */
  /* width: 0 !important; */
}
/* ─────────────────────────────────────
   非表示にしたいコンテナ用クラス
───────────────────────────────────── */
.hidden-container {
    display: none !important;
    height: 0px !important;
}


/* ─────────────────────────────────────
   システム改修・アップデートのお知らせ
───────────────────────────────────── */
.msg-update-notice {
  background-color: #fffaf0;      /* 淡いベージュ系 */
  border-left: 4px solid #f5a623; /* アクセントのイエローオレンジ */
  padding: 1.2em 1.5em;           /* 十分な余白 */
  margin: 1.5em auto;                /* 上下に余白 */
  border-radius: 6px;             /* やわらかな角丸 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* 軽い影 */
  font-family: 'Noto Sans JP', sans-serif;
  color: #5a4637;                 /* 落ち着いたダークブラウン */
  line-height: 1.6;
  /* text-align: left !important; */
}
.msg-update-notice h2 {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: bold;
}
.msg-update-notice p {
  margin: 0.6em 0 0;
  font-size: 0.95rem;
}
.msg-announcements p {
  text-align: left;
}