/* 既存のCSS */
* {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* border: solid 0.5px pink; */
}

body, html {
  height: 100%;
  overflow: hidden;
}

.app {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.appFull {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* フッターが常に画面下部に配置されるように高さを100vhに設定 */
  height: 100%;
}

.header {
  height: 10%;
  background-color: lightcyan;
  border: 8px solid blue;
}

.footer {
  height: 10%;
  background-color: lightpink;
  border: 8px solid red;
  position: relative;
  bottom: 0;
  width: 100%;
  flex-shrink: 0; /* フッターが縮まないように設定 */
}

.main {
  flex-grow: 1;
  overflow-y: auto; /* 縦スクロールバーを表示 */
  position: relative;
  /* padding-top: 75px;  パディング値はJSで制御する */
  padding-bottom: 20px; /* フッターとの間にスペースを追加 (追加) */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: calc(100% - 100px); /* headerの高さ10%とfooterの高さ50pxを引いた残りの高さを指定 */
}

.mainFull {
  flex: 1; /* コンテンツがフレックスで成長するように設定 */
  overflow-y: auto;
}

/* mainFull スクロールバーのカスタマイズ */
.mainFull::-webkit-scrollbar {
  width: 8px;
}

.mainFull::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

.mainFull::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.mainFull::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.flex-content {
  width: 800px; /* 固定幅を設定 */
  height: 400px; /* 固定高さを設定 */
  box-sizing: border-box;
  text-align: center;
  border: solid 1.5px #d3d3d3;
  border-radius: 7px;
  padding-top: 10px;
  margin-left: auto; /* 左右中央揃え */
  margin-right: auto; /* 左右中央揃え */
  max-height: 800px; /* 最大高さを設定 */
  max-width: 800px; /* 最大幅を設定 */
}


.infoArea {
  display: flex;
  flex-direction: column; /* 縦方向に配置 (変更) */
  flex-grow: 1;
  gap: 10px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%; /* 親要素の幅を100%に設定 (変更) */
  padding: 0 20px; /* 枠線が親要素から出ないようにパディングを追加 (追加) */
  padding-top: 20px;
  margin-bottom: 10px; /* フッターとの間に少し間隔を追加 (必要に応じて調整) */
}

/* ヘッダーエリア */
.headerArea {
  width: 100%;
  text-align: left;
  white-space: nowrap;
}

.b,
.b1{
  font-size: 36px;
  color: #000;
  display: inline-block;
}

.titel {
  text-align: center;
  margin-top: 20px;
}

.headerMsg {
  text-align: center;
  margin-top: 20px;
}

.p_headerMsg {
  text-align: center;
}

.p_mail_headerMsg {
  text-align: center;
  display: inline-block;
  /* margin-left: 200px; */
}

.afterLoginHeaderMsg {
  padding-left: 40px;
  margin-top: 20px;
}

.systemName {
  margin-top: 7px;
  height: 48px;
  width: 100%;
  padding-left: 25px;
  border-bottom: solid #E60000;
  padding-bottom: 5px;
}

/* フォームエリア　sakai */
.form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.username,
.password,
.email {
  font-size: 20px;
  color: #000;
  font-weight: normal;
  /*margin-left: 10px;  マージンを調整 */
  width: 315px; /* ラベルの幅を調整 */
  text-align: right; /* ラベルを右揃え */
}
.email {
  width: 380px;
}

.loginInfoArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.unArea,
.pwdArea,
.afterLogin_pwdArea{
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.unArea label,
.pwdArea label, 
.afterLogin_pwdArea label{
  font-size: 16px;
  width: 100px; /* ラベルの幅を統一 */
  text-align: left; /* ラベルを右揃え */
  /*margin-right: 10px;  テキストボックスとの間にスペースを追加 */
}

.unArea input,
.pwdArea input,
.afterLogin_pwdArea input {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 5px;
  /*width: 315px;  入力フィールドの幅を拡大 */
  text-align: left; /* 入力位置を左端から開始 */
  font-size: 16px;
}

.pwdArea input,
.afterLogin_pwdArea input{
  padding-right: 40px; /*アイコン用のスペースを確保*/
}


.unAreaCheckbox {
  display: flex;
  align-items: left;
}

.unAreaCheckbox input {
  margin-left: 10px;
  accent-color: #E60000;
}

#unAreaMailFull {
  position: relative;
  right: 99px;
}

#unAreaCheckboxFull {
  position: relative;
  right: 82px;
}

#unAreaCheckboxFull label {
  padding-left: 13px;
}

.pwdArea, 
.afterLogin_pwdArea {
  position: relative;
}

#toggleIcon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: #98999b;
}

.submitArea {
  margin-top: 520px; /* ログインボタンの上部マージンを調整 */
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  flex-grow: 1;
  display: flex; /* (追加) */
  justify-content: center; /* (追加) */
}

.submitArea button {
  position: relative;
  margin-bottom: 5px;
}

.afterLoginSubmitArea {
  /* width: 810px; */
  width: 355px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  justify-content: right;
  margin-top: 30px;
}

.submit {
  width: 415px;
  border-radius: 7px;
  background-color: #E60000;
  color: #fff;
  height: 35px;
  font-size: 20px;
  transition: background-color 0.3s ease;
  border: none;
}

.submit:hover {
  background-color: #BC0000;
  cursor: pointer;
}

.submit-dl {
  width: 180px;
  border-radius: 7px;
  background-color: #E60000;
  color: #fff;
  height: 35px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  border: none;
}

.submit-dl:hover {
  background-color: #BC0000;
  cursor: pointer;
}

.dlArea {
  display: flex;
  align-items: center;
  margin-top: -6px;
}

.cdArea label {
  display: inline-block; /* インラインブロックで横並びを維持 */
  white-space: nowrap; /* テキストの折り返しを防止 */
  text-overflow: ellipsis; /* テキストが長い場合に省略記号を表示 */
  max-width: 200px; /* 最大幅を設定 */
}

.nameArea {
  display: inline-flex; /* インラインフレックスで配置 */
  align-items: center; /* 子要素を上下中央に揃える */
  white-space: nowrap; /* テキストの折り返しを防止 */
  overflow: visible; /* オーバーフローを表示 */
  vertical-align: middle; /* 親要素内での中央揃え */
  margin-top: -15px;
}

.cdArea {
  display: flex; /* フレックスボックスで横並びを維持 */
  align-items: center; /* 縦位置を中央に揃える */
  margin-top: 10px;
  margin-bottom: 5px;
  gap: 10px; /* 会社名とNEWアイコンの間にスペースを追加 */
  font-size: 15px;
}

.corp_name {
  display: inline-block; /* インラインブロックで会社名の長さを調整 */
  white-space: nowrap; /* テキストの折り返しを防止 */
  overflow: hidden; /* オーバーフローを隠す */
  text-overflow: ellipsis; /* テキストが長い場合に省略記号を表示 */
  max-width: 100%; /* 初期の最大幅を設定 */
  font-size: 18px;
}

.dlArea label {
  width: 100px; /* ラベルの幅を統一 */
  text-align: left; /* ラベルを右揃え */
  font-size: 18px;
}

.border {
  margin-top: 15px;
  margin-bottom: 10px;
  border-top:solid #d3d3d3 1px;
  width: 640px;
}

/* お知らせエリア */
.infomation{
  border: solid 1.5px #d3d3d3;
  border-radius: 10px;
  padding: 20px;
  flex-grow: 1; /* 子要素が成長するように設定 */
  height: auto; /* 高さを自動調整 */
  overflow: auto;
  overflow-y: auto; /* 縦スクロールバーのみ表示 */
  overflow-x: auto; /*横スクロールバーを非表示*/
  line-height: 1;
  width: 70%; /* 子要素の幅を親要素に合わせる (変更) */
  box-sizing: border-box; /* パディングとボーダーを含む (変更) */
  max-width: 650px;
}

.infomation::-webkit-scrollbar {
  width: 8px; /* スクロールバーの幅 */
  height: 10px;
}
.infomation::-webkit-scrollbar-thumb {
  background-color: #888; /* スクロールバーの色 */
  border-radius: 20px; /* スクロールバーの角を丸くする */
  border: 1.5px solid #f1f1f1; /* スクロールバーの周囲に透明なボーダーを追加 */
  background-clip: padding-box; /* 背景をボーダー内にクリップ */
}

.infomation::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* スクロールバーのトラックの色 */
  border-radius: 50px; /* スクロールバーのトラックの角を丸くする */
}

.infomation::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* ホバー時のスクロールバーの色 */
}

.infoTable{
  padding-top:5px;
}

.info{
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}

.heading,
.date{
  font-size: 16px;
  text-align: left;
  line-height: 32px;

}

.date{
  padding-right: 20px;
  min-width: 150px;
}

.infoContent{
  font-size: 16px;
  line-height: 20px;
}

/* フッターエリア */
.footerArea {
  height: 18px;
  background-color: #E60000;
  color: #fff;
  text-align: center;
  padding: 10px;
  flex-shrink: 0; /* フッターが縮まないように設定 */
  white-space: nowrap; /* 改行を防止 */
}
.fa-triangle-exclamation::before{
  font-size:50px;
  color: #757575;
  text-align: center;
}

.fa-right-to-bracket::before{
   margin-right: 10px; /* アイコンとテキストの間隔を指定 */
}

.errorTitle{
  font-size:32px;
  padding-top:20px;
}

.fa-arrow-rotate-right::before{
  margin-left: 10px;
}

.NFerrorMessage{
  width: 100%;
  height: 100%;
}

.EMsg {
  display: inline-block;
  text-align: left;
  font-size: 24px;
  padding-top: 40px;
  padding-left: 40px;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden; /* はみ出しを防ぐ */
  box-sizing: border-box; /* パディングとボーダーを含む */
  width: 100%; /* 親要素の幅に合わせる */
  max-height: 800px; /* 最大高さを設定 */
  max-width: 800px; /* 最大幅を設定 */
  line-height: 1; /* 行間隔を狭くする */
}

/* メッセージエリア */
.afterLoginMessageArea {
  /* margin: 8px;
  padding: 8px; */
  display: ruby;
  flex-direction: row;
  flex-grow: 1;
  gap: 10px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 35px;
  margin-top: 100px; /* ヘッダーの高さ分だけ上部にマージンを追加 */
  z-index: calc(infinity); /* エラーメッセージを最前面に設定 */
}

.messageArea {
  /* margin: 8px;
  padding: 8px; */
  display: flex;
  width: 100%;
  min-width: max-content;
  flex-direction: row;
  flex-grow: 1;
  gap: 10px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.errorMessageArea{
  width: max-content;
  min-width: 470px; /* 固定幅を指定 */
  margin: 0 auto; /* センターに配置 */
  background-color: #fce3e2;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  padding: 15px;
  white-space: nowrap; /* 改行を防止 */
  margin-top: 15px;
}



.errorMessage{
  font-size: 20px;
  font-weight: bold;
  color: #B55257;
  display: flex;
  align-items: flex-start; /* 縦位置を上に揃える */
}

.errorMessageDetail{
  text-align: left;
  font-size: 16px;
  color: #B55257;
  padding: 8px;
}

#triangleIcon {
  margin-right: 5px; /* アイコンとテキストの間にスペースを追加 */
  vertical-align: middle; /* 縦揃えを中央に設定 */
}

#triangleIconFull {
  margin-right: 5px; /* アイコンとテキストの間にスペースを追加 */
  vertical-align: middle; /* 縦揃えを中央に設定 */
}

.errorMessageIcon{
  position: relative;
  top: 5px;
  margin-right: 3px;
}

/* デフォルトの目のアイコンを非表示にする */
input[type="password"]::-ms-reveal {
  display: none;
}

/* サイドメニュー */
.sidemenu {
  position: relative; /* フッターの絶対位置に対して基準位置を設定 */
  height: calc(100vh - 70px); /* フッターの高さを引いた高さを設定 */
  background-color: #E60000;
  min-width: 260px;
  padding-bottom: 70px; /* フッターの分のスペースを確保 */
}

.b_sidemenu {
  display: flex;
  color: #fff;
  font-size: 20px;
  background-color: #E60000;
  padding: 10px;
}

/* サイドバー：選択されているページの色を変える対応 */
.userInformation_dl li:has(a[href*=user_information_download]) {
  background-color:#fff;
}
.userInformation_dl a[href*=user_information_download] > #sidemenuIcon {
  color:#E60000;
}
.userInformation_dl a[href*=user_information_download] {
  color:#E60000;
}
.usageStatement_dl li:has(a[href*=usage_statement_download]) {
  background-color:#fff;
}
.usageStatement_dl a[href*=usage_statement_download] > #sidemenuIcon {
  color:#E60000;
}
.usageStatement_dl a[href*=usage_statement_download] {
  color:#E60000;
}
.passwordChange li:has(a[href*=password_change]) {
  background-color:#fff;
}
.passwordChange a[href*=password_change] > #sidemenuIcon {
  color:#E60000;
}
.passwordChange a[href*=password_change] {
  color:#E60000;
}
.emailSettings li:has(a[href*=email_settings]) {
  background-color:#fff;
}
.emailSettings a[href*=email_settings] > #sidemenuIcon {
  color:#E60000;
}
.emailSettings a[href*=email_settings] {
  color:#E60000;
}
.batchProcessingHistory li:has(a[href*=batch_processing_history]) {
  background-color:#fff;
}
.batchProcessingHistory a[href*=batch_processing_history] > #sidemenuIcon {
  color:#E60000;
}
.batchProcessingHistory a[href*=batch_processing_history] {
  color:#E60000;
}
/* サイドバー：選択されているページの色を変える対応ここまで */

.ul_sidemenu {
  list-style: none;
  padding-top: 30px;
  margin: 0; /* デフォルトのマージンをリセット */
}

.ul_sidemenu li {
  background-color:#E60000;
}

.ul_sidemenu li:hover {
  background-color:#BC0000;
}

.ul_sidemenu li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 17px; /* クリック可能な領域を広げるためにパディングを追加 */
  width: calc(100% - 34px); /* パディング分を引いて幅を設定 */
}

#sidemenuIcon {
  float: left;
  color: #fff;
  font-size: 23px;
  padding-right: 15px;
  padding-left: 10px;
}

.footer_sidemenu {
  height: 40px;
  background-color: #E60000;
  color: #fff;
  text-align: left;
  padding: 10px;
  max-width: 230px;
  flex-shrink: 0; /* フッターが縮まないように設定 */
  font-size: 11px;
  display: flex; /* フレックスボックスを使用 */
  align-items: flex-end; /* テキストを下に揃える */
  position: absolute; /* フッターを絶対位置に設定 */
  bottom: 0; /* フッターをコンテナの底に配置 */
  width: calc(100% - 20px); /* フッターの幅を設定 */
  white-space: nowrap;
}

/* ログイン後の画面 */
.afterLoginDisplay {
  display: flex;
}

/* ログイン後のヘッダー */
.afterLoginHeader {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  white-space: nowrap;
  position: fixed;
  width: calc(100% - 260px); /* サイドバーの幅を引いた幅を指定 */
  background-color: #fff; /* 背景色を設定 */
  z-index: 1000; /* ヘッダーが他の要素の上に表示されるようにする */
}

.label_usernm {
  position: absolute;
  top: 0px;
  right: 35px;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 150px);
}

.b2{
  font-size: 36px;
  color: #000;
  border-left:10px solid #E60000; /*線の設定*/
  padding:2px 20px; /*余白の設定*/
  margin-left: 40px;
}

.b3{
  font-size: 25px;
  color: #000;
  border-left: 10px solid #E60000;
  padding: 2px 20px;
  margin-left: 40px;
}

.afterLoginArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-top: 30px;
  white-space: nowrap;
  width: 800px;
  overflow-y: auto; /* 縦スクロールバーを表示 */
  overflow-x: hidden;
}

.afterLogin_FullsizeArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  align-items: center;
  justify-content: center;
}

.afterLoginLabel {
  display: flex;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: bold;
}

.afterLoginArea label,
.afterLoginArea_dl label {
  padding-left: 10px;
  padding-bottom: 5px;
}

.l_pwdcompFirst {
  padding-right: 65px;
}

.newpwdLabel_fullsize,
.newpwdP_fullsize {
  position: relative;
  right: 70%;
  font-size: 16px;
  font-weight: bold;
}

.comfipwdLabel_fullsize,
.comfipwdP_fullsize {
  position: relative;
  right: 52%;
  font-size: 16px;
  font-weight: bold;
}

.newEmailLabel_fullsize,
.newEmailP_fullsize {
  position: relative;
  right: 99%;
  font-size: 16px;
  font-weight: bold;
}

.comfiEmailLabel_fullsize,
.comfiEmailP_fullsize {
  position: relative;
  right: 41%;
  font-size: 16px;
  font-weight: bold;
}

.afterLoginArea p,
.afterLogin_FullsizeArea p {
  padding-left: 10px;
  padding-top: 2px;
  color: #ff3636;
}

.narrowArea {
  padding-top: 30px;
  position: relative;
  transform: translateY(-50%);
}

#user_pwd_toggleIcon,
#new_pwd_toggleIcon,
#comfi_pwd_toggleIcon {
  position: absolute;
  left: 292px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: #98999b;
}

.afterLogin_FullsizeArea #user_pwd,
.afterLogin_FullsizeArea #new_pwd,
.afterLogin_FullsizeArea #comfi_pwd {
  /* width: 100%; */
  font-size: 16px;
}

.afterLogin_FullsizeArea #user_pwd_toggleIcon,
.afterLogin_FullsizeArea #new_pwd_toggleIcon,
.afterLogin_FullsizeArea #comfi_pwd_toggleIcon {
  left: calc(100% - 30px);
}

#afterLoginSubmit {
  width: 140px;
}

.submit_dl {
  width: 100%;
}

.submit_dl button {
  position: relative; /* 修正: relative -> absolute */
  left: 340px; /* 左からの距離を固定値に設定 */
  color: #fff;
}

.new_icon {
  display: inline-flex; /* インラインフレックスで配置 */
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
  margin-left: 5px; /* 会社名からのマージンを設定 */
  /* background-color: #E60000; */
  background-color: #ee3427;
  color: #fff;
  font-size: 13px;
  border-radius: 7px;
  /* padding: 2px 7px; アイコンの左右パディングを設定 */
  padding: 4px 10px;
  white-space: nowrap; /* アイコンが折り返されないようにする */
  line-height: normal; /* テキストの高さを正常にする */
  height: auto; /* 高さを自動調整にする */
  margin-bottom: 3px;
}

#dl_icon {
  /* position: relative; 修正: relative -> absolute */
  /* left: 190px; アイコンの位置をボタンに合わせて調整 */
  padding-right: 8px;
  color: #fff;
}

#dlAll_btn {
  position: relative; /* 修正: relative -> absolute */
  left: 450px; /* 左からの距離を固定値に設定 */
  top: 0; /* 必要に応じて調整 */
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

#dlAll_icon {
  /* position: relative; 修正: relative -> absolute */
  /* left: 286px; アイコンの位置をボタンに合わせて調整 */
  /* top: 0px; 必要に応じて調整 */
  padding-right: 8px;
  color: #fff;
}

.sidemenu-header {
  background-color: #E60000;
  padding: 10px;
}

.sidemenu-content {
  height: calc(100% - 90px); /* ヘッダーとフッターの高さを引いた高さを指定 */
  overflow-y: auto; /* 縦スクロールバーを表示 */
}

/* app-content スクロールバーのカスタマイズ */
.app-content::-webkit-scrollbar {
  width: 8px;
}

.app-content::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

.app-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.app-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* スクロールバーの見た目をカスタマイズ */
.sidemenu-content::-webkit-scrollbar, 
.app-content::-webkit-scrollbar, 
.app-content-addoption-batchhist::-webkit-scrollbar, 
.afterLoginArea_dl::-webkit-scrollbar, 
.afterLoginArea-addoption-download::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidemenu-content::-webkit-scrollbar-track, 
.app-content::-webkit-scrollbar-track, 
.app-content-addoption-batchhist::-webkit-scrollbar-track, 
.afterLoginArea_dl::-webkit-scrollbar-track, 
.afterLoginArea-addoption-download::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.sidemenu-content::-webkit-scrollbar-thumb, 
.app-content::-webkit-scrollbar-thumb, 
.app-content-addoption-batchhist::-webkit-scrollbar-thumb, 
.afterLoginArea_dl::-webkit-scrollbar-thumb, 
.afterLoginArea-addoption-download::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.sidemenu-content::-webkit-scrollbar-thumb:hover, 
.app-content::-webkit-scrollbar-thumb:hover, 
.app-content-addoption-batchhist::-webkit-scrollbar-thumb:hover, 
.afterLoginArea_dl::-webkit-scrollbar-thumb:hover, 
.afterLoginArea-addoption-download::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.app-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 260px; /* サイドバーの幅に合わせて調整 */
  overflow-y: auto; /* 縦スクロールバーを表示 */
  overflow-x: hidden;
  padding: 20px;
}

.app-content-addoption-batchhist,
.afterLoginArea-addoption-downloadhidden {
  overflow-y: hidden;
}

.afterLoginArea-addoption-download {
  overflow-x: auto;
}

.afterLoginArea_dl {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-top: 30px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: auto;
}

.afterLoginArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-top: 30px;
  white-space: nowrap;
}


.batchHistHeader {
  /* width: 825px; */
  width: 98%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 5px;
}



/* テーブル全体の設定 */
#tableArea {
  /* width: 840px; テーブルの幅を設定 */
  width: 98%;
  max-height: calc(100vh - 310px); /* ヘッダー、フッター、ページングエリアを考慮した高さを指定 */
  overflow-y: auto; /* 縦スクロールバーを表示 */
  overflow-x: auto;
  margin-bottom: 60px; /* ページングエリアのためのマージン */
}

/* テーブルのスタイル */
.batchHistTable {
  width: 100%;
  border-collapse: collapse; /* 境界線を崩さずに結合 */
  table-layout: fixed; /* 列幅を固定 */
}

/* テーブルタイトル部分の固定 */
.batchHistTable thead {
  display: table; /* テーブルレイアウトのためにdisplay: tableを使用 */
  /* width: 800px; */
  width: 100%;
  table-layout: fixed; /* 列幅を固定 */
  background-color: #fff; /* 背景色を設定 */
  position: sticky; /* スクロール時にヘッダーを固定 */
  top: 0; /* スクロール時にヘッダーが固定される位置 */
  z-index: 1; /* ヘッダーが他の要素の上に表示されるようにする */
}

.batchHistTable tbody {
  display: block; /* tbodyをブロック要素にすることでスクロールを可能に */
  max-height: calc(100vh - 400px); /* スクロール可能な高さを指定 */
  overflow-y: auto; /* 縦スクロールバーを表示 */
  overflow-x: hidden; /* 横スクロールを隠す */
  width: 100%; /* tbodyの幅を100%にして親要素に合わせる */
}

/* 列幅を固定してデータ部分をスクロール可能にする */
.batchHistTable th {
  padding: 5px;
  font-size: 17px; 
  text-align: center;
  box-sizing: border-box; /* パディングを含めた幅を計算 */
  border-bottom: 1px solid #f1f1f1; /* データ間の横線を追加 */
  white-space: nowrap; /* テキストが折り返されないようにする */
  overflow: hidden; /* はみ出しを隠す */
  text-overflow: ellipsis; /* はみ出しテキストに省略記号を付ける */
}

.batchHistTable td {
  padding: 10px;
  font-size: 16px; 
  text-align: center;
  box-sizing: border-box; /* パディングを含めた幅を計算 */
  border-bottom: 1px solid #f1f1f1; /* データ間の横線を追加 */
  white-space: nowrap; /* テキストが折り返されないようにする */
  overflow: hidden; /* はみ出しを隠す */
  text-overflow: ellipsis; /* はみ出しテキストに省略記号を付ける */
}

/* 各列の幅を固定幅に指定 */
.batchHistTable th[data-column-id="data_type"],
.batchHistTable td[data-column-id="data_type"] {
  width: 130px; /* 処理種別の列幅を固定 */
}

.batchHistTable th[data-column-id="proc_start_dt"],
.batchHistTable td[data-column-id="proc_start_dt"],
.batchHistTable th[data-column-id="proc_end_dt"],
.batchHistTable td[data-column-id="proc_end_dt"] {
  width: 195px; /* 処理開始日時と処理終了日時の列幅を固定 */
}

.batchHistTable th[data-column-id="data_cnt"],
.batchHistTable td[data-column-id="data_cnt"] {
  width: 120px; /* 件数の列幅を固定 */
}

.batchHistTable th[data-column-id="status"],
.batchHistTable td[data-column-id="status"] {
  /* width: 100px; ステータスの列幅を固定 */
  width: 63px;
}

.batchHistTable th[data-column-id="json_log"],
.batchHistTable td[data-column-id="json_log"] {
  width: 100px; /* 処理ログの列幅を固定 */
}

/* データ部分のスクロール時のスタイル */
.batchHistTable tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed; /* 列幅を固定 */
}

/* タイトル直下の線を太くする */
.batchHistTable thead th {
  border-bottom: 4px solid #f1f1f1;
}

.batchHistTable tbody td {
  border-bottom: 1px solid #f1f1f1;
}

.batchHistTable tbody::-webkit-scrollbar {
  width: 8px;
}

.batchHistTable tbody::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

.batchHistTable tbody::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.batchHistTable tbody::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.batchHistStatus {
  height: 25px; /* ラベルの高さ */
  width: 100%; /*ラベルの幅*/
  /* width: 100px; */
  padding: 0; /* パディングをリセット */
  font-size: 12px; /* 文字サイズを小さく */
  border-radius: 5px; /* ラベルの角を丸く */
  display: flex; /* フレックスボックスを使用 */
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
  line-height: 20px; /* 行の高さをラベルの高さと一致させる */
  font-weight: bold; /* 文字を太文字にする */
}


.batchHistStatus0 {
  background-size: 10px;
  background-color: #D8E7FA;
  border-radius: 7px;
  color: #487FC4;
}

.batchHistStatus1_2 {
  background-size: 10px;
  background-color: #D2F2CE;
  border-radius: 7px;
  color: #1E893F;
}

.batchHistStatus9 {
  background-size: 10px;
  background-color: #FDD9D9;
  border-radius: 7px;
  color: #C8353F;
}

#batchhist_Dlicon {
  color:#E60000;
  font-size: 25px;
  cursor: pointer;
}

#batchhist_Dlicon:hover {
  color:#BC0000;
}

.dl_jsonlog {
  background: transparent;
  border: none;
}

.paginationArea {
  position: fixed;
  bottom: 60px;
  width: calc(100% - 260px); /* サイドメニューの幅を引いた残りの幅を指定 */
  background-color: #fff; /* 背景色を設定 */
  padding: 10px;
  z-index: 10; /* 重なり順序を調整 */
}

.pagination li {
  display: inline-block;
  height: 30px; /* 高さを小さくする */
  line-height: 30px; /* ボタン内のテキストの縦揃えを調整 */
  width: 35px; /* 幅を小さくする */
  text-align: center;
  border: 1px #ccc solid; /* 線の太さと色を統一 */
  color: #000053;
  font-size: 14px; /* 文字サイズを調整 */
  margin-right: -1px; /* ボタン間の線の重複を防ぐ */
}

.pagination .selectPage {
  background-color: #E60000;
  color: #fff;
  border-color: #ccc; /* 外枠と同じ色に設定 */
}

.pagination li a {
  display: block;
  text-decoration: none;
  color: #000;
}

.pagination li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #BC0000;
}

.dldate {
  color: #515151;
}

.unArea_new_email {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding-left: 9px;
}

.unArea_new_email input {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 5px;
  text-align: left;
  font-size: 16px;
}

.afterLogin_pwdArea {
  position: relative;
  padding-left: 8px;
}

.copyright {
  font-size: 12px;
}

.emailSubmitArea {
  /* width: 945px; */
  width: 410px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  justify-content: right;
  margin-top: 30px;
}