@charset "UTF-8";
html {
  height: 100%;
  padding: 0; }

body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", sans-serif; }

.normalButton {
  text-align: center;
  font-size: 0.8em;
  cursor: pointer;
  background-color: #6367DA;
  padding: 0.5em;
  border: none;
  color: #FFF;
  height: 2.5em; }
  .normalButton:hover:not(:disabled) {
    background-color: #c9cee8; }
  .normalButton:disabled {
    color: #CCC;
    cursor: not-allowed; }
  .normalButton.important {
    color: #FFF;
    background-color: #D20005; }
    .normalButton.important:hover:not(:disabled) {
      background-color: #d26882; }

a {
  cursor: pointer; }

input[type='text'], input[type='number'], input[type='password'], select {
  border: solid 1px black; }

/* テーブル */
.normalTable {
  border-collapse: collapse;
  overflow-y: hidden;
  height: 100%;
  display: block;
  color: #868595; }
  .normalTable caption {
    width: 100%;
    height: 65px;
    display: block;
    text-align: left;
    padding-top: 20px;
    padding-left: 27px;
    font-size: 20px;
    font-weight: bold;
    background-color: #F8F9FC;
    color: #6367DA;
    border-radius: 6px 6px 0 0;
    border-bottom: solid 1px #E4E5EF;
    box-sizing: border-box; }
  .normalTable tbody {
    padding: 0;
    background-color: #FFFFFF; }
  .normalTable th {
    border: solid 1px #E4E5EF;
    padding: 5px;
    background-color: #FFFF; }
  .normalTable td {
    background-color: #FFFF;
    border-bottom: solid 1px #E4E5EF;
    border-right: solid 1px #E4E5EF;
    border-left: solid 1px #E4E5EF;
    padding: 5px;
    white-space: nowrap;
    /* 改行を半角スペースに置き換える */
    overflow: hidden;
    /* はみだした部分を削除する */
    text-overflow: ellipsis;
    /* 末尾に「…」を付加する */ }

.normalTable thead {
  height: 34px; }

.normalTable tbody {
  overflow-y: auto;
  display: inline-block;
  max-height: calc(100% - 34px);
  /* theadの高さを考慮している。 */ }

.noHeader td {
  border-top: solid 1px #E4E5EF; }

.isHeader tbody {
  max-height: 100%;
  box-sizing: border-box; }
  .isHeader tbody.isCaption {
    max-height: calc(100% - 65px); }
  .isHeader tbody tr td {
    border-left: solid 1px #E4E5EF; }
  .isHeader tbody tr:first-child td {
    overflow: visible;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: white;
    font-weight: bold;
    text-align: center;
    border-bottom: none; }
    .isHeader tbody tr:first-child td::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-bottom: solid 1px #E4E5EF;
      border-top: solid 1px #E4E5EF;
      box-sizing: border-box; }
    .isHeader tbody tr:first-child td::after {
      content: "";
      position: absolute;
      top: -24px;
      left: -1px;
      width: calc(100% + 2px);
      height: 24px;
      z-index: 1;
      background-color: #FFFFFF; }
  .isHeader tbody tr:nth-child(2) td {
    border-top: none; }
  .isHeader tbody tr:last-child td {
    border-bottom: solid 1px #E4E5EF; }

/* ログイン */
.login {
  width: 100%;
  height: 100%; }

.ontoreLogo {
  width: 250px; }

#tableLogin {
  position: relative;
  height: auto; }
  #tableLogin tbody {
    padding: 0; }
  #tableLogin .label {
    text-align: right; }
  #tableLogin input[type='text'], #tableLogin input[type='password'] {
    width: 100%;
    box-sizing: border-box; }
  #tableLogin button {
    width: 100%; }

.loginWrapper {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: -55px; }

#buttonLogin {
  width: 100%;
  margin-top: 20px; }

/* ヘッダー */
#header {
  display: flex;
  align-items: center;
  width: calc(240px + 20px + 20px);
  box-sizing: border-box;
  height: 120px;
  background: #6367DA;
  padding-left: 20px;
  padding-right: 20px; }
  #header.headerSchool {
    height: 144px; }
  #header.headerTeacher {
    height: 168px; }
  #header #headerContent {
    border-bottom: solid 1px #787DDE;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    cursor: pointer;
    position: relative; }
    #header #headerContent #logoText {
      font-size: 20px;
      font-weight: bold;
      color: #FFFFFF;
      display: inline-block;
      position: absolute;
      left: 124px;
      top: 31px; }
    #header #headerContent #logoImage {
      background-image: url(../images/icon.png);
      background-size: cover;
      position: absolute;
      top: 16px;
      left: 42px;
      width: 66px;
      height: 57px;
      display: inline-block; }
    #header #headerContent #siteName {
      position: absolute;
      top: 80px;
      left: 0px;
      width: 100%;
      text-align: center;
      color: #FFF;
      font-size: 18px; }

/* ナビ */
#navi {
  height: calc(100% - 120px);
  /* ヘッダーの高さを考慮してナビの高さを算出。 */
  width: calc(240px + 20px + 20px);
  position: absolute;
  left: 0;
  top: 120px;
  /* ヘッダーの高さを考慮してナビの位置を決定している。 */
  background-color: #6367DA; }
  #navi.naviSchool {
    top: 144px;
    height: calc(100% - 144px); }
  #navi.naviTeacher {
    top: 168px;
    height: calc(100% - 168px); }
  #navi ul {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    margin: 0; }
    #navi ul li {
      background: transparent;
      transition: .4s;
      display: inline-block;
      width: 240px;
      margin-top: 5px;
      margin-bottom: 5px; }
      #navi ul li:hover {
        background: #C5E8FC; }
      #navi ul li a {
        padding-top: 10px;
        box-sizing: border-box;
        width: 100%;
        height: 45px;
        text-align: center;
        display: inline-block;
        text-decoration: none;
        font-size: 17px;
        color: #DEDFF4; }
        #navi ul li a:link, #navi ul li a:visited, #navi ul li a:active {
          color: #DEDFF4; }
        #navi ul li a:hover {
          color: #111111; }
      #navi ul li.naviLine {
        height: 1px;
        background-color: #787DDE; }
        #navi ul li.naviLine a {
          display: none; }

.logoutLink {
  position: absolute;
  left: 20px;
  bottom: 20px; }

/* メイン部分 */
#main {
  height: calc(100% - 30px - 30px);
  /* 自身のパディングを考慮してメインの高さを算出。 */
  width: calc(100% - 30px - 30px - calc(240px + 20px + 20px));
  /* (ナビの幅 + 自身のパディング）を考慮してメインの幅を算出。 */
  position: absolute;
  left: calc(240px + 20px + 20px);
  /* ナビの幅を考慮してメインの位置を決定している。 */
  top: 0;
  overflow-y: hidden;
  padding: 30px;
  background-color: #FFF; }

.header1 {
  font-size: 32px;
  color: #585866; }

.header2 {
  font-size: 20px;
  color: #9B8796; }

/* プログレス */
.screenBaseProgress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 100; }
  .screenBaseProgress img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 23px;
    height: auto;
    object-fit: cover; }

/* モーダル */
.modalBackground {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #6e4f1c url(../images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png) 50% 50% repeat;
  opacity: .6; }

.modalContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.2em;
  background: #eceadf url(../images/ui-bg_fine-grain_10_eceadf_60x60.png) 50% 50% repeat;
  color: #1f1f1f;
  border: 1px solid #CDC7BD;
  border-radius: 6px;
  max-width: 90%;
  max-height: 90%; }

.modalHeader {
  position: relative;
  margin-bottom: 10px;
  padding: .4em 1em;
  border: 1px solid #d4d1bf;
  background: #ffffff url(../images/ui-bg_fine-grain_15_ffffff_60x60.png) 50% 50% repeat;
  color: #453821;
  font-weight: bold;
  border-radius: 6px; }

.modalCloseButton {
  position: absolute;
  top: 50%;
  right: 0.3em;
  transform: translate(0, -50%);
  font-weight: bold;
  color: red;
  border-radius: 6px;
  border: 1px solid #cbc7bd;
  background: #f8f7f6 url(../images/ui-bg_fine-grain_10_f8f7f6_60x60.png) 50% 50% repeat;
  width: 26px;
  height: 26px;
  font-size: 18px;
  padding: 0; }

.modalBody {
  padding: .5em 1em;
  height: calc(100% - 128px);
  /* TODO 128pxは暫定。 */
  overflow-y: auto;
  overflow-x: auto; }

.modalFooter {
  border-top: 1px solid #d9d6c4;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
  text-align: right; }
  .modalFooter button {
    color: #654b24;
    text-decoration: none;
    border: 1px solid #cbc7bd;
    background: #f8f7f6 url(../images/ui-bg_fine-grain_10_f8f7f6_60x60.png) 50% 50% repeat;
    font-weight: bold;
    border-radius: 6px;
    padding: .4em 1em;
    cursor: pointer;
    margin: .5em .4em .5em 0; }
    .modalFooter button:disabled {
      color: #CCC;
      cursor: not-allowed; }

/* チェックボックス */
.checkbox {
  display: none; }

.checkboxLabel {
  cursor: pointer;
  display: block;
  width: 18px;
  height: 18px;
  border: solid 2px #AAAAAA;
  border-radius: 4px; }

.checkbox:checked + label {
  background-color: #F39700;
  background-size: contain;
  background-image: url(../images/check.png);
  background-repeat: no-repeat; }

/* ラジオボタン */
.radio {
  display: none; }

.radioLabel {
  cursor: pointer;
  display: block;
  width: 18px;
  height: 18px;
  border: solid 2px #AAAAAA;
  border-radius: 999px; }

.radio:checked + label:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #AAAAAA;
  border-radius: 999px;
  margin-left: 4px;
  margin-bottom: 3px; }

/* ソートボタン */
.sortButtonWrapper {
  width: 1.5em;
  height: auto;
  position: absolute;
  right: 5px;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  outline: none; }
  .sortButtonWrapper:hover:not(:disabled) {
    background-color: transparent; }

.sortButton {
  color: #686868;
  width: 100%;
  display: block;
  font-size: 0.5em;
  font-weight: normal; }

.sort {
  color: #FF0000; }

#loginUserName {
  position: absolute;
  left: 0px;
  top: 107px;
  width: 100%;
  text-align: center;
  color: #FFF;
  font-size: 16px; }

.searchArea {
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -30px;
  margin-bottom: 30px;
  height: 120px;
  background-color: #FFFFFF; }
  .searchArea input {
    margin-left: 40px;
    margin-top: 21px;
    font-size: 15px;
    padding: 15px;
    background-color: #F8F9FC;
    border: none;
    border-radius: 5px 0 0 5px;
    height: 47px;
    box-sizing: border-box;
    float: left; }
  .searchArea button {
    width: 50px;
    height: 47px;
    margin-top: 21px;
    border-radius: 0 5px 5px 0;
    float: left;
    padding: 10px;
    background-origin: content-box;
    background-size: contain;
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-color: #6367DA; }

.allCheckButton {
  cursor: pointer;
  display: block;
  width: 18px;
  height: 18px;
  border: solid 2px #AAAAAA;
  border-radius: 4px; }
  .allCheckButton.halfChecked {
    background-color: #F39700; }
    .allCheckButton.halfChecked:after {
      content: '';
      display: block;
      height: 4px;
      width: 80%;
      background-color: #555;
      margin-left: 10%;
      margin-right: 10%;
      margin-top: 7px; }
  .allCheckButton.checked {
    background-color: #F39700;
    background-size: contain;
    background-image: url(../images/check.png);
    background-repeat: no-repeat; }

/* タブ */
.tab {
  width: 200px;
  height: 38px;
  display: inline-block;
  border-top: none;
  border-bottom: none;
  border-left: solid 6px #BAD2E6;
  border-right: solid 6px #BAD2E6;
  float: left;
  margin-left: -6px;
  cursor: pointer; }
  .tab.firstTab {
    margin-left: 0; }

.activeTab {
  background-color: #F1F2F5; }

.nonActiveTab {
  background-color: #D6DCE5; }

.activeArea {
  background-color: #F1F2F5; }

.tbodyPadding {
  padding: 24px !important; }

.headerButton {
  width: 10em; }

.searchButton {
  width: 38px;
  height: 41px;
  border: none;
  padding: 0.3em;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #6367DA; }
  .searchButton:hover:not(:disabled) {
    background-color: #c9cee8; }

.clearButton {
  width: 40px;
  height: 41px;
  border: none;
  padding: 0.3em 0.6em;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 0.5em;
  background-color: white; }
  .clearButton:hover:not(:disabled) {
    background-color: #c9cee8; }

.searchOperation {
  display: flex; }

.searchCondition {
  display: block;
  align-items: center;
  padding: 0.5em; }

#searchOptionWrapper {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #DDDDDD;
  padding: 0; }

.searchWrapper {
  border: 1px solid #DDDDDD;
  display: flex;
  justify-content: space-between;
  padding-left: 8px;
  height: auto !important; }
  .searchWrapper input[type='text'] {
    margin-top: 8px;
    margin-bottom: 0 !important;
    height: 21px; }

.hasDatepicker {
  width: 6em; }

.tableData td {
  text-align: right; }

/* ===== 2025年09月 HOUSEI趙敏追加開始: 確認モーダルのボタン幅を調整 ===== */

.modalConfirm .modalFooter {
  text-align: center;  
}

.modalConfirm .modalFooter #buttonConfirmOk,
.modalConfirm .modalFooter #buttonConfirmCancel {
  min-width: 110px;    
  display: inline-block;
}

/* ===== 2025年09月 HOUSEI趙敏　追加終了 ===== */