/*-------------------------*/
/* 変数定義                */
/*-------------------------*/
/* 注意事項 */
/* 色や全体デザインに関わる定義はこのroot内で行って下さい。 */
/* ルート外では、ここを参照するようにして使用します。 */
/* 上記を行うことで、画面デザインを簡単に変更する事ができ、定義が散らかる事を防げます。 */
/* IEでは機能しません！ */

:root {
  --baseColor: #f8f8ff;
  --mainColor: #eeeeee;
  --accentColor: #d3ddeb;
  --strColor: #5b5266;
  --strongColor: #ee0000;
  --border: solid 1px var(--mainColor);
  --reversalBorder: solid 1px var(--baseColor);
  --chartBaseColor: #7ac5e9;
  --chartColor1: #5a84e8;
  --chartColor2: #3e3aca;
  --chartCircle: var(--strColor);
  --headerHeight: 50px;
  --pictureHeight: 350px;
  --fontComic: "Helvetica", "Meiryo UI", sans-serif;
  --fontNormal: "Helvetica", "Meiryo UI", sans-serif;
  --textTransform: uppercase;
  --tableAccentBorder: var(--border);
}

body.colorSet1 {
  --baseColor: #f8f8ff;
  --mainColor: #eeeeee;
  --accentColor: #d3ddeb;
  --strColor: #5b5266;
  --strongColor: #ee0000;
  --border: solid 1px var(--mainColor);
  --chartBaseColor: #7ac5e9;
  --chartColor1: #5a84e8;
  --chartColor2: #3e3aca;
  --chartCircle: var(--strColor);
  --contentGlyph1: "";
  --contentGlyph2: "";
}

body.colorSet2 {
  --baseColor: #fff6fc;
  --mainColor: #efdfff;
  --accentColor: #f9a2a2;
  --strColor: #420606;
  --strongColor: #ee0000;
  --border: solid 2px var(--mainColor);
  --reversalBorder: solid 2px var(--baseColor);
  --chartBaseColor: #ed73ff;
  --chartColor1: #b07aff;
  --chartColor2: #3e3aca;
  --chartCircle: #a71bdd;
  --fontComic: "Comic Sans MS", "Helvetica", "Meiryo UI", sans-serif;
  --textTransform: lowercase;
  --tableAccentBorder: solid 4px var(--accentColor);
  --contentGlyph1: "";
  --contentGlyph2: "";
}

body.colorSet3 {
  --baseColor: #000000;
  --mainColor: #696969;
  --accentColor: #000080;
  --strColor: #ffffff;
  --strongColor: #ee0000;
  --border: solid 1px var(--mainColor);
  --chartBaseColor: #7ac5e9;
  --chartColor1: #5a84e8;
  --chartColor2: #3e3aca;
  --chartCircle: var(--strColor);
  --contentGlyph1: "";
  --contentGlyph2: "";
}

body.colorSet3 select,
body.colorSet3 input,
body.colorSet3 textarea {
  color: #ffffff;
}

body.colorSet3 header img {
  mix-blend-mode: luminosity;
}

body.colorSet4 {
  --baseColor: #fcfff0;
  --mainColor: #d3f7d0;
  --accentColor: #cfe488;
  --strColor: #355009;
  --strongColor: #ee0000;
  --border: solid 1px var(--mainColor);
  --chartBaseColor: #5ef951;
  --chartColor1: #81ff76;
  --chartColor2: #cfe488;
  --chartCircle: #89dd00;
  --fontComic: "Monotype Corsiva", "Helvetica", "Meiryo UI", sans-serif;
  --textTransform: capitalize;
  --contentGlyph1: "";
  /* --contentGlyph2 : "☘"; */
  --contentGlyph2: "";
}

body.colorSet5 {
  --baseColor: #fbffd3;
  --mainColor: #d4d962;
  --accentColor: rgb(255 21 0 / 80%);
  --strColor: #420606;
  --strongColor: #ee0000;
  --border: solid 2px var(--mainColor);
  --reversalBorder: solid 2px var(--baseColor);
  --chartBaseColor: #e5b175;
  --chartColor1: #c1bf30;
  --chartColor2: #df1414;
  --chartCircle: #db2c2c;
  --fontComic: "Comic Sans MS", "Helvetica", "Meiryo UI", sans-serif;
  --textTransform: lowercase;
  --tableAccentBorder: solid 4px var(--accentColor);
  /* --contentGlyph1 : "🍂"; */
  --contentGlyph1: "";
  /* --contentGlyph2 : "🍁"; */
  --contentGlyph2: "";
}

body.colorSet5 header img {
  opacity: 0.4;
}

body.colorSet5 .homeLogo {
  filter: drop-shadow(4px 4px 4px red);
}

/*-------------------------*/
/* 共通印刷設定            */
/*-------------------------*/
@media print {
  #schwalbelPortal header {
    display: none;
  }

  #schwalbelPortal footer {
    display: none;
  }

  #schwalbelPortal .mainLeft {
    display: none;
  }

  #schwalbelPortal .pseudoButton {
    display: none;
  }

  #schwalbelPortal .breakPage {
    break-before: page;
    page-break-before: always;
  }
}

/*-------------------------*/
/* 汎用パーツ定義          */
/*-------------------------*/
body {
  font-family: var(--fontComic);
  background-color: var(--baseColor);
}

.comicFont {
  font-family: var(--fontComic) !important;
}

.strong {
  color: var(--strongColor);
}

.caution {
  font-size: 10.5pt;
  opacity: 0.8;
}

.messageBox {
  margin: 15px 0px 10px;
  padding: 10px;
  background-color: var(--accentColor);
}

.englishSubject {
  text-transform: var(--textTransform);
}

body .portletBody {
  font-family: var(--fontNormal);
}

a {
  text-decoration: none;
  color: var(--strColor);
}

select {
  background-color: var(--baseColor);
  border-top: none;
  border-right: none;
  border-left: none;
}

select:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 2px solid var(--accentColor);
}

input[type=text],
input[type=date],
input[type=time],
input[type=password] {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: var(--border);
  background-color: var(--baseColor);
  font-family: var(--fontComic);
  border-width: 3px;
  margin: 5px;
  outline: none;
  font-size: 12pt;
}

textarea {
  border: var(--border);
  background-color: var(--baseColor);
  width: calc(100% - 10px);
  height: 3em;
}

.groupHeader:hover {
  cursor: pointer;
  background-color: var(--mainColor);
}

.groupHeader[data-status="open"]:hover:after {
  content: "-";
  background-color: var(--accentColor);
}

.groupHeader[data-status="close"]:hover:after {
  content: "+";
  background-color: var(--accentColor);
}

.toggle {
  -webkit-appearance: none;
  width: 50px;
  height: 20px;
  background-color: var(--mainColor);
  cursor: pointer;
}

.toggle::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: var(--accentColor);
  width: 25px;
  height: 20px;
}

#schwalbelPortal .invisible {
  display: none;
}

.pre {
  white-space: pre-wrap;
}

body .pseudoButton:before {
  content: var(--contentGlyph1);
}

body .portletHeader:before {
  content: var(--contentGlyph2);
}

/*-------------------------*/
/* ローディング定義        */
/*-------------------------*/
.loading {
  width: 32px;
  height: 32px;
  margin: 10px auto;
  border: 4px var(--mainColor) solid;
  border-top: 4px var(--accentColor) solid;
  border-radius: 50%;
  animation: sp-anime 1.0s infinite linear;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}

/*-------------------------*/
/* 疑似ボタン定義          */
/*-------------------------*/
/* 疑似ボタン */
body .pseudoButton {
  text-align: center;
  font-family: var(--fontComic);
  display: inline-block;
}

body .pseudoButton:hover {
  cursor: pointer;
  border: var(--border);
  transform: rotate(4deg);
  background-color: var(--accentColor);
}

/*-------------------------*/
/* タグ定義                */
/*-------------------------*/
.iconTag {
  display: inline-block;
  margin: 5px;
  border: var(--border);
  background-color: var(--mainColor);
  border-radius: 40%;

  height: 20px;
  min-width: 60px;
  font-size: 13px;
  text-align: center;

  cursor: pointer;
}

/*-------------------------*/
/* フレックステーブル定義  */
/*-------------------------*/
.table {}

.table .tableHeader {
  display: flex;
  align-items: center;
  background-color: var(--mainColor);
  border-top: var(--border);
  border-bottom: var(--border);
}

.table .tableRow {
  display: flex;
  align-items: center;
  border-bottom: var(--border);
  min-height: 55px;
}

.table .tableRow:hover {
  background-color: var(--mainColor);
  background: var(--mainColor);
}

/* 選択機能付きテーブル定義 */
.selectedTable .tableRow[data-select=on] {
  background-color: var(--mainColor);
  border-top: var(--reversalBorder);
}

/*-------------------------*/
/* 入力テーブル定義        */
/*-------------------------*/
.inputTable {
  border-bottom: var(--border);
}

.inputTableCell {
  border-top: var(--border);
}

.inputTableCell>div {
  box-sizing: border-box;
  padding: 5px 0px 5px 15px;
}

.inputTableCell>div:nth-child(1) {
  width: 100%;
  background-color: var(--mainColor);
  display: flex;
  align-items: center;
  border-top: var(--reversalBorder);
  border-right: var(--tableAccentBorder);
}

.inputTableCell>div:nth-child(2) {
  width: 100%;
  display: flex;
  align-items: center;
  border-top: var(--border);
}

@media screen and (min-width: 650px) {
  .inputTableCell {
    display: flex;
  }

  .inputTableCell>div:nth-child(1) {
    width: 30%;
    min-height: 40px;
  }

  .inputTableCell>div:nth-child(2) {
    width: 70%;
  }
}

@media print {
  .inputTableCell {
    display: flex;
  }

  .inputTableCell>div:nth-child(1) {
    width: 30%;
    min-height: 40px;
  }

  .inputTableCell>div:nth-child(2) {
    width: 70%;
  }
}

/*-------------------------*/
/* ダイアログ定義          */
/*-------------------------*/
.dialogBackGround {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #aaa;
  top: 0px;
  left: 0px;
  z-index: 9;
  opacity: 0.4;
}

.dialog {
  display: none;
  position: fixed;
  width: 70vw;
  max-width: 550px;
  height: fit-content;
  max-height: 80vh;
  min-height: 150px;
  margin: auto;
  top: 0px;
  z-index: 10;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: var(--baseColor);
  flex-direction: column;
}

.ios .dialog {
  height: 30vh;
}

.ios #nowLoading {
  height: 60px;
}

.dialogHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--mainColor);
}

.dialogTitle {
  flex: 1;
  margin-left: 10px;
  cursor: move;
  height: 45px;
  display: flex;
  align-items: center;
}

.dialogCancel {
  width: 45px;
  height: 45px;
  font-size: 20pt;
}

.dialogDetail {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(80vh - 85px);
}

.ios .dialogDetail,
.safari .dialogDetail {
  /* safariはflex-boxのcenterなどで幅/高さを正しく計算できないため、適用プロパティ値を変更する */
  align-items: stretch;
}

.dialogDetail>div {
  max-height: calc(80vh - 85px);
  overflow-y: auto;
}

#nowLoading .dialogDetail>div {
  overflow: hidden;
}

.dialogButton {
  display: flex;
  justify-content: center;
}

.dialogButton .denied,
.dialogButton .assent {
  display: none;
}

.dialogButton[data-type="2"] .assent {
  display: block;
}

.dialogButton[data-type="3"] .denied,
.dialogButton[data-type="3"] .assent {
  display: block;
}

.dialogBack,
.dialogOK {
  width: 150px;
  margin: 5px 15px;
}

.dialog img {
  width: 100%
}

/*-------------------------*/
/* ダイアログメッセージ    */
/*-------------------------*/
.dialogMessageArea {
  white-space: pre-wrap;
}

/*-------------------------*/
/* ヘッダー定義            */
/*-------------------------*/
/* ヘッダ領域定義 */
header {
  width: calc(100% - 21px);
  height: var(--headerHeight);
  background-color: var(--baseColor);
  /* background-color : transparent; */
  display: flex;
  /* position : static; */
  position: fixed;
  justify-content: space-between;
  top: 0px;
  /*border-bottom : var(--border);*/
  z-index: 3;
  padding: 5px 3px;
}

header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header>div {
  margin: 5px 5px 0px 0px;
}

/* ヘッダ左領域 */
.header-left {
  display: flex;
}

/* ヘッダ右領域 */
.header-right {
  display: flex;
}

/* ログアウトボタン */
.logout {
  padding-top: 8px;
  margin-right: 35px;
  height: 28px;
  width: 85px;
  text-align: center;
  transform: rotate(8deg);
}

.logout:hover {
  cursor: pointer;
  border: var(--border);
}

/* ハンバーガーボタン */
.hamburgerButton {
  border: var(--border);
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--baseColor);
  cursor: pointer;
  position: relative;
}

.hamburgerButton div {
  margin-bottom: 5px;
  position: absolute;
  height: 2px;
  width: 20px;
  background-color: var(--strColor);
}

.hamburgerButton div:nth-of-type(1) {
  bottom: 18px;
}

.hamburgerButton div:nth-of-type(2) {
  bottom: 9px;
}

.hamburgerButton div:nth-of-type(3) {
  bottom: 0;
}

/* ロゴ */
.homeLogo {
  display: flex;
  cursor: pointer;
}

.homeLogo>div:nth-child(1) {
  display: flex;
  align-items: center;
  height: 30px;
}

.homeLogo>div:nth-child(2) {
  margin-left: 10px;
}

.homeLogo>div:nth-child(2)>div:nth-child(1) {
  font-size: 10pt;
  font-weight: bold;
  font-family: "Meiryo UI", sans-serif;
}

.homeLogo>div:nth-child(2)>div:nth-child(2) {
  font-size: 9pt;
  position: relative;
  bottom: 4px;
}

.ios .homeLogo>div:nth-child(2)>div:nth-child(2) {
  /* iphoneSEの横幅が更新毎に微妙にぶれるため、低めに値を設定 */
  font-size: 8pt;
}

.logo {
  margin-left: 10px;
  width: 30px;
}

@media screen and (max-width: 350px) {
  .homeLogo>div:nth-child(2) {
    display: none;
  }
}

/*-------------------------*/
/* フッター定義            */
/*-------------------------*/
footer {
  margin-top: 10px;
  width: 100%;
  height: 100px;
  background-color: var(--baseColor);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* 先頭に戻るボタン */
.returnTop {
  position: fixed;
  left: auto;
  top: auto;
  right: 10px;
  bottom: 10px;
}

.returnTop .reternIcon {
  border: var(--border);
  background: linear-gradient(to bottom, var(--mainColor), var(--baseColor) 35%, var(--baseColor) 75%, var(--mainColor));
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-------------------------*/
/* ボタン領域定義          */
/*-------------------------*/
.buttonArea {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.buttonArea .pseudoButton {
  margin: 0px 10px;
  width: 150px;
}

/*-------------------------*/
/* メイン定義              */
/*-------------------------*/
#schwalbelPortal {
  width: 100%;
  min-height: 780px;
  background-color: var(--baseColor);
  color: var(--strColor);
  box-sizing: border-box;
  display: box;
}

/* 固定ヘッダー領域の分だけ全体構成を下に下げる */
.frame {
  margin-top: 0px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

/* ------------ */
/* スマホ用設定 */
/* ------------ */
/* 左領域を非表示化 */
.frame .mainLeft {
  display: none;
}

/* メイン領域を横全体化 */
.frame .mainCenter {
  width: 100%;
  margin: 42px 5px 0px 0px;
  position: relative;
}

.frame .mainLogin {
  width: 100%;
  margin: 50px 5px 0px 5px;
  position: relative;
  min-height: 650px;
}

/* ------------ */
/* PC用設定     */
/* ------------ */
/* 画面サイズが一定値以上になった場合に適用されるCSS */
@media screen and (min-width: 980px) {

  /* 左領域 */
  .frame .mainLeft {
    display: block;
    width: 300px;
  }

  /* 中央(メイン)領域 */
  .frame .mainCenter {
    width: calc(100% - 300px);
    margin-left: 5px;
    margin-top: 0px;
  }

  /* サイドメニューの常態表示 */
  section.sideMenu {
    position: fixed;
    width: 230px;
    margin-top: 50px;
  }

  /* ハンバーガーボタンの非表示化 */
  .hamburgerButton {
    display: none;
  }

  /* 画像のタイトルと概要を表示 */
  .pickupArea .pickupBox {
    width: 500px;
  }

  .pickupArea .pickupTitle {
    font-size: 28px;
  }

  .pickupArea .pickupDetail {
    display: block;
  }

  /* 画像の最大サイズを上げる */
  :root {
    --pictureHeight: 700px;
  }

  .frame {
    margin-top: var(--headerHeight);
  }

  /* 会社名のフォントを大きくする */
  .homeLogo>div:nth-child(2)>div:nth-child(1),
  .ios .homeLogo>div:nth-child(2)>div:nth-child(1) {
    font-size: 17pt;
  }

  .homeLogo>div:nth-child(2)>div:nth-child(2),
  .ios .homeLogo>div:nth-child(2)>div:nth-child(2) {
    font-size: 11pt;
  }

  .logo {
    width: 40px;
  }

  .homeLogo>div:nth-child(1) {
    height: auto;
  }
}

/*-------------------------*/
/* ログイン画面用          */
/*-------------------------*/
.mainLogin {
  display: flex;
  justify-content: center;
  align-items: center;
}

.systemTitle {
  font-size: 42px;
  text-align: center;
  position: relative;
  bottom: 80px;
}

.login input {
  width: 450px;
  height: 58px;
  margin: 10px 0px;
  font-size: 28px;
}

.login input::placeholder {
  color: #b0b0b0;
}

.login .loginImg {
  margin: 30px 0px 40px;
  height: 75px;
}

/*-------------------------*/
/* サイドメニュー          */
/*-------------------------*/
.mainLeft[data-status="open"] {
  display: block;
  position: fixed;
  right: 0px;
  top: 50px;
  width: 250px;
  background-color: var(--baseColor);
  border: var(--border);
  z-index: 2;
  height: calc(100% - 50px);
  overflow-y: auto;
}

.mainLeft[data-status="open"] .sideClose,
.mainLeft[data-status="open"] .superReload {
  display: block;
}

.sideClose,
.superReload {
  background-color: var(--mainColor);
  padding: 10px 5px;
  display: none;
  border-top: var(--border);
  cursor: pointer;
}

.shadow {
  display: none;
  position: absolute;
  top: 0px;
}

.schwalbelPortal[data-status="open"] .shadow {
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}

.schwalbelPortal[data-status="open"] .frameTop {
  height: calc(var(--headerHeight) - 8px);
}

/*-------------------------*/
/* ポートレット定義        */
/*-------------------------*/
.portlet {
  margin: 0px 0px;
  ;
}

.portletHeader {
  padding: 8px 5px;
  font-size: 28px;
}

.portletBody {}

/*-------------------------*/
/* カレンダー定義          */
/*-------------------------*/
.calendar {}

.calendarSubject {
  display: flex;
  justify-content: space-between;
  border-top: var(--border);
}

.calendarSubject>div:nth-child(2n+1) {
  width: 10%;
  text-align: center;
}

.calendarSubject>div:nth-child(2) {
  width: 79%;
  text-align: center;
}

.calendarHeader {
  background-color: var(--mainColor);
}

.calendarRow {
  display: flex;
}

.calendarRow>div {
  width: calc(100% / 7);
  text-align: center;
  border-top: var(--border);
  border-right: var(--border);
}

.calendarRow>div:last-child {
  border-right: none;
}

.calendarCell {
  height: 40px;
  border-top: var(--border);
  border-right: var(--border);
}

.calendarCell>div:nth-child(1) {
  padding-right: 5px;
  text-align: right;
}

/*-------------------------*/
/* リンクメニュー定義      */
/*-------------------------*/
.linkMenu>div {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 5px;
}

.linkMenu>div:hover {
  background-color: var(--mainColor);
}

.linkMenu a {
  width: 100%;
  display: block;
}

@media screen and (max-width: 979px) {
  .linkMenu>div {
    padding: 8px 5px;
  }
}

/*-------------------------*/
/* Pickup画像定義          */
/*-------------------------*/
/* 写真領域の最大サイズ指定 */
.pickupImage {
  width: 100%;
  height: min(var(--pictureHeight), 40vh);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--baseColor);
}

.pickupImage>div:nth-child(1),
.pickupImage>div:nth-child(3) {
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.1;
}

.pickupImage:hover>div:nth-child(1) {
  opacity: 1.0;
}

.pickupImage:hover>div:nth-child(3) {
  opacity: 1.0;
}

.pickupImage>div:nth-child(1)>div,
.pickupImage>div:nth-child(3)>div {
  border: var(--border);
  border-radius: 11px;
  height: 22px;
  width: 25px;
  text-align: center;
}

.pickupImage>div:nth-child(2) {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--baseColor);
}

.pickupImage img {
  max-width: 100%;
  max-height: min(var(--pictureHeight), 40vh);
}

.pickupImage img:hover {
  z-index: 1;
  position: relative;
}

.pickupBox {
  width: 340px;
  position: absolute;
  bottom: 10px;
  right: 35px;
  font-size: 20px;
  opacity: 0.8;
  background-color: white;
}

/* iOSでは位置が規定位置からずれすぎるため、横幅いっぱい表示にする */
.ios .pickupBox {
  width: 100%;
  right: 0px;
}

.pickupTitle {
  font-size: 14px;
  margin: 10px auto;
  text-align: center;
}

.pickupDetail {
  font-size: 14px;
  display: none;
}

/*-------------------------*/
/* お知らせ一覧定義        */
/*-------------------------*/
.mainCenter>.portlet {
  max-width: 1200px;
  margin: auto;
}

.noticeRow {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 7px 0px;
}

.noticeRow>div:nth-child(1) {
  flex: 1;
}

.noticeRow>div:nth-child(2) {
  width: 135px;
}

.noticeRow:hover {
  background-color: var(--mainColor);
}

.mainCenter .portlet {}

.mainCenter .portlet .portletHeader {
  text-align: center;
  margin-bottom: 20px;
}

.noNotice {
  text-align: center;
}

.noticeMore {
  text-align: center;
  cursor: pointer;
}

.noticeMore:hover {
  background-color: var(--mainColor);
}

@media screen and (max-width: 430px) {
  .noticeRow {
    flex-direction: column;
    border-bottom: var(--border);
  }

  .noticeRow>div:nth-child(1),
  .noticeRow>div:nth-child(2) {
    width: 100%;
  }

  .noticeMore {
    margin: 10px 0px;
    padding: 10px 0px;
  }
}

/*-------------------------*/
/* 社員情報管理            */
/*-------------------------*/
.empManagementHeader {
  margin: 20px 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* .empManagementEmpNo {
  margin-left: 10px;
} */

.empManagementEmpNo input {
  border-top: none;
  border-left: none;
  border-right: none;
  background-color: var(--baseColor);
  width: 111px;
  outline: none;
}

.empManagementCreate {
  width: 120px;
  height: 20px;
}

.empManagementCreate:hover {
  cursor: pointer;
  border: var(--border);
}

.empManagement .table .cellBlock {
  padding: 5px;
  box-sizing: border-box;
}

.empManagement .table .cellBlock:nth-child(1) {
  width: 90px;
}

.empManagement .table .cellBlock:nth-child(2) {
  flex: 1;
}

.empManagement .table .cellBlock:nth-child(2)>div {
  display: flex;
  width: 120px;
}

.empManagement .table .cellBlock:nth-child(2)>div:nth-child(1)>*:nth-child(1) {
  width: 120px;
}

.empManagement .table .cellBlock:nth-child(2)>div:nth-child(1)>*:nth-child(2) {
  width: 220px;
  display: none;
}

.empManagement .table .cellBlock:nth-child(2)>div:nth-child(2) {
  display: none;
}

.empManagement .table .cellBlock:nth-child(3) {
  width: 80px;
  text-align: center;
}

.empManagement .table .cellBlock:nth-child(4) {
  width: 80px;
  text-align: center;
}

/* メールアドレスと部門を表示状態に切り替え */
@media screen and (min-width: 550px) {
  .empManagement .table .cellBlock:nth-child(2)>div {
    display: flex;
    width: 340px;
    padding-top: 2px;
  }

  .empManagement .table .cellBlock:nth-child(2)>div:nth-child(1)>*:nth-child(2) {
    display: block;
  }

  .empManagement .table .cellBlock:nth-child(2)>div:nth-child(2) {
    display: block;
  }
}

/* 2行表示を1行表示に切り替え */
@media screen and (min-width: 1165px) {
  .empManagement .table .cellBlock:nth-child(2) {
    display: flex;
  }

  .empManagement .table .cellBlock:nth-child(2)>div:nth-child(2) {
    width: 320px;
  }
}

/*-------------------------*/
/* 社員編集                */
/*-------------------------*/
.empEditName {
  width: 75px;
}

.empEditEmailCell>div {
  margin-top: 7px;
}

.empEditEmail {
  width: 320px;
}

.empEditRolesArea {
  display: flex;
}

/*-------------------------*/
/* 社員作成                */
/*-------------------------*/
.empCreateName {
  width: 75px;
}

.empCreateEmailCell>div {
  margin-top: 7px;
}

.empCreateEmail {
  width: 320px;
}

/*-------------------------*/
/* SC管理                  */
/*-------------------------*/
.scManagementCreateButton {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.scManagement .pseudoButton {
  padding: 2px 20px;
}

.scManagement .tableHeader .cellBlock,
.scManagement .tableRow .cellBlock {
  padding: 5px;
  box-sizing: border-box;
}

.scManagement .tableHeader .cellBlock:nth-child(1),
.scManagement .tableRow .cellBlock:nth-child(1) {
  flex: 1;
}

.scManagement .tableHeader .cellBlock:nth-child(2),
.scManagement .tableRow .cellBlock:nth-child(2) {
  width: 250px;
}

.scManagement .tableHeader .cellBlock:nth-child(3),
.scManagement .tableRow .cellBlock:nth-child(3) {
  width: 100px;
  text-align: center;
}

.scManagement .tableHeader .cellBlock:nth-child(4),
.scManagement .tableRow .cellBlock:nth-child(4) {
  width: 100px;
  text-align: center;
}

.scManagement .tableHeader .cellBlock:nth-child(5),
.scManagement .tableRow .cellBlock:nth-child(5) {
  width: 100px;
  text-align: center;
}

.scManagement .tableHeader .cellBlock:nth-child(6),
.scManagement .tableRow .cellBlock:nth-child(6) {
  width: 100px;
  text-align: center;
}

@media screen and (max-width: 1050px) {

  .scManagement .tableHeader .cellBlock:nth-child(2),
  .scManagement .tableRow .cellBlock:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 1200px) {

  .scManagement .tableHeader .cellBlock:nth-child(3),
  .scManagement .tableRow .cellBlock:nth-child(3) {
    display: none;
  }
}

/*-------------------------*/
/* SC作成                  */
/*-------------------------*/
.scSetting textarea {
  width: calc(100% - 10px);
  height: 10em;
}

.scSettingTarget {
  width: 100%;
}

.scCreateNoticePreview {
  white-space: pre-wrap;
}

.scSetting .portletBody[data-toggle='0'] .previewArea {
  display: none;
}

.scSetting .portletBody[data-toggle='1'] .editArea {
  display: none;
}

/*-------------------------*/
/* SC編集                  */
/*-------------------------*/
.scEditTargetAddress {
  display: flex;
  height: 270px;
}

.scEditTargetAddress>div:nth-child(1),
.scEditTargetAddress>div:nth-child(3) {
  width: 210px;
  border: var(--border);
  overflow-y: scroll;
  cursor: default;
}

.scEditTargetAddress>div:nth-child(2) {
  width: 34px;
  align-self: center;
  text-align: center;
}

.scEditTargetAddress>div:nth-child(2) .pseudoButton {
  text-align: center;
  margin: 8px 0px;
}

.scEditTargetAddress>div:nth-child(1)>div,
.scEditTargetAddress>div:nth-child(3)>div {
  padding: 2px 5px;
}

.scEditTargetAddress>div:nth-child(1)>div[data-select=on],
.scEditTargetAddress>div:nth-child(3)>div[data-select=on] {
  background-color: var(--mainColor);
}

.scEditTargetAddress>div:nth-child(1)>div:hover {
  background-color: var(--mainColor);
}

.scEditTargetAddress>div:nth-child(3)>div:hover {
  background-color: var(--mainColor);
}

.scEditTargetFilter {
  margin-bottom: 5px;
}

/*-------------------------*/
/* SC実施状況              */
/*-------------------------*/
.scProgressList {
  margin-top: 20px;
}

.scProgressList .tableHeader,
.scProgressList .tableRow {
  padding: 3px;
}

.scProgressList .tableHeader .cellBlock:nth-child(1),
.scProgressList .tableRow .cellBlock:nth-child(1) {
  width: 120px;
}

.scProgressList .tableHeader .cellBlock:nth-child(2),
.scProgressList .tableRow .cellBlock:nth-child(2) {
  flex: 1;
}

.scProgressList .tableHeader .cellBlock:nth-child(3),
.scProgressList .tableRow .cellBlock:nth-child(3) {
  width: 120px;
}

.scProgressList .tableFilter {
  display: flex;
}

.scProgressList .tableFilter>div {
  display: flex;
  width: 230px;
}

.scProgressList .tableFilter>div>div:nth-child(1) {
  width: 50px;
}

.scProgressList .tableFilter>div>div:nth-child(2) {
  flex: 1;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .scProgressList .tableFilter {
    display: block;
  }

  .scProgressList .tableFilter>div {
    margin-top: 10px;
  }
}

/*-------------------------*/
/* SCTop                   */
/*-------------------------*/
.scTop[data-open_status='1'] .scTopTermNotice {
  display: none;
}

.scTop[data-open_status='0'] .scTopCheckStart {
  display: none;
}

.scTop[data-answer_status='0'] .scTopAnswered,
.scTop[data-answer_status='1'] .scTopAnswered {
  display: none;
}

.scTop[data-answer_status='1'] .scTopNoAnswer,
.scTop[data-answer_status='2'] .scTopNoAnswer {
  display: none;
}

.scTop[data-answer_status='0'] .scTopAnswering,
.scTop[data-answer_status='2'] .scTopAnswering {
  display: none;
}

.scTop[data-answer_status='2'] .scTopCheckStart {
  display: none;
}

/*-------------------------*/
/* 過去のSC                */
/*-------------------------*/
section.portlet.scPast {
  margin-top: 80px;
}

.scPast .tableHeader,
.scPast .tableRow {
  padding: 5px;
  box-sizing: border-box;
}

.scPast .tableHeader>.cellBlock:nth-child(1),
.scPast .tableRow>.cellBlock:nth-child(1) {
  width: 120px;
}

.scPast .tableHeader>.cellBlock:nth-child(2),
.scPast .tableRow>.cellBlock:nth-child(2) {
  flex: 1;
}

.scPast .tableHeader>.cellBlock:nth-child(3),
.scPast .tableRow>.cellBlock:nth-child(3) {
  width: 110px;
  text-align: center;
}

.scPast .pseudoButton {
  width: 80px;
}

/*-------------------------*/
/* チェック結果            */
/*-------------------------*/
.scProfileTable .tableHeader {
  padding: 5px;
}

.scProfileTable .tableRow .cellBlock:nth-child(1) {
  padding-left: 5px;
}

/*-------------------------*/
/* SC対応                  */
/*-------------------------*/
.scAction .pseudoButton {
  padding: 2px 20px;
}

.scAction .tableHeader .cellBlock,
.scAction .tableRow .cellBlock {
  padding: 5px;
  box-sizing: border-box;
}

.scAction .tableHeader .cellBlock:nth-child(1),
.scAction .tableRow .cellBlock:nth-child(1) {
  flex: 1;
}

.scAction .tableHeader .cellBlock:nth-child(2),
.scAction .tableRow .cellBlock:nth-child(2) {
  width: 250px;
}

.scAction .tableHeader .cellBlock:nth-child(3),
.scAction .tableRow .cellBlock:nth-child(3) {
  width: 100px;
  text-align: center;
}

.scAction .tableHeader .cellBlock:nth-child(4),
.scAction .tableRow .cellBlock:nth-child(4) {
  width: 100px;
  text-align: center;
}

.scAction .tableHeader .cellBlock:nth-child(5),
.scAction .tableRow .cellBlock:nth-child(5) {
  width: 100px;
  text-align: center;
}

@media screen and (max-width: 700px) {

  .scAction .tableHeader .cellBlock:nth-child(2),
  .scAction .tableRow .cellBlock:nth-child(2) {
    display: none;
  }
}

/*-------------------------*/
/* 集団分析                */
/*-------------------------*/
.scAnalyze .table {
  margin-top: 15px;
}

.scAnalyze .tableHeader .cellBlock,
.scAnalyze .tableRow .cellBlock {
  padding: 5px;
}

.scAnalyze .tableHeader>.cellBlock:nth-child(1),
.scAnalyze .tableRow>.cellBlock:nth-child(1) {
  width: 100px;
}

.scAnalyze .tableHeader>.cellBlock:nth-child(2),
.scAnalyze .tableRow>.cellBlock:nth-child(2) {
  flex: 1;
}

.scAnalyze .tableHeader>.cellBlock:nth-child(3),
.scAnalyze .tableRow>.cellBlock:nth-child(3) {
  width: 120px;
  text-align: center;
}

.scAnalyze .tableSubmit:hover {
  width: 120px;
}

/*-------------------------*/
/* SCスコア一覧            */
/*-------------------------*/
.scScoreCaution {
  margin: 15px 0px 10px;
  padding: 10px;
  background-color: var(--accentColor);
}

.scScoreList {
  margin-top: 30px;
}

.scScoreList .tableHeader .cellBlock,
.scScoreList .tableRow .cellBlock {
  padding: 5px;
}

.scScoreList .tableHeader .cellBlock:nth-child(1),
.scScoreList .tableRow .cellBlock:nth-child(1) {
  width: 120px;
}

.scScoreList .tableHeader .cellBlock:nth-child(2),
.scScoreList .tableRow .cellBlock:nth-child(2) {
  flex: 1;
}

.scScoreList .tableHeader .cellBlock:nth-child(3),
.scScoreList .tableRow .cellBlock:nth-child(3) {
  width: 80px;
}

.scScoreList .tableHeader .cellBlock:nth-child(4),
.scScoreList .tableRow .cellBlock:nth-child(4) {
  width: 80px;
}

.scScoreList .tableHeader .cellBlock:nth-child(5),
.scScoreList .tableRow .cellBlock:nth-child(5) {
  width: 80px;
}

.scScoreList .tableHeader .cellBlock:nth-child(6),
.scScoreList .tableRow .cellBlock:nth-child(6) {
  width: 80px;
}

.scScoreList .tableHeader .cellBlock:nth-child(7),
.scScoreList .tableRow .cellBlock:nth-child(7) {
  width: 120px;
}

.scScoreList .tableHeader .cellBlock:nth-child(8),
.scScoreList .tableRow .cellBlock:nth-child(8) {
  width: 120px;
}

.scScoreList .tableHeader .cellBlock:nth-child(9),
.scScoreList .tableRow .cellBlock:nth-child(9) {
  width: 100px;
  text-align: center;
}

.scScoreList .tableFilter {
  display: flex;
}

.scScoreList .tableFilter>div {
  display: flex;
  width: 400px;
}

.scScoreList .tableFilter>div>div:nth-child(1) {
  width: 170px;
}

.scScoreList .tableFilter>div>div:nth-child(2) {
  flex: 1;
  display: flex;
  align-items: center;
}

#scScoreDetail .dialogDetail {
  align-items: start;
  margin-top: 15px;
}

@media screen and (max-width: 1200px) {
  .scScoreList .tableFilter {
    display: block;
  }

  .scScoreList .tableFilter>div {
    margin-top: 15px;
  }

  .scScoreList .tableHeader,
  .scScoreList .tableRow {
    flex-wrap: wrap;
  }

  .scScoreList .tableHeader .cellBlock,
  .scScoreList .tableRow .cellBlock {
    border-bottom: dashed 2px var(--mainColor);
  }

  .scScoreList .tableHeader .cellBlock:nth-child(1),
  .scScoreList .tableRow .cellBlock:nth-child(1) {
    order: 1;
  }

  .scScoreList .tableHeader .cellBlock:nth-child(2),
  .scScoreList .tableRow .cellBlock:nth-child(2) {
    order: 6;
    min-width: 120px;
    flex: 1;
  }

  .scScoreList .tableHeader .cellBlock:nth-child(3),
  .scScoreList .tableRow .cellBlock:nth-child(3) {
    order: 2;
  }

  .scScoreList .tableHeader .cellBlock:nth-child(4),
  .scScoreList .tableRow .cellBlock:nth-child(4) {
    order: 3;
  }

  .scScoreList .tableHeader .cellBlock:nth-child(5),
  .scScoreList .tableRow .cellBlock:nth-child(5) {
    order: 4;
  }

  .scScoreList .tableHeader .cellBlock:nth-child(6),
  .scScoreList .tableRow .cellBlock:nth-child(6) {
    order: 5;
  }

  .scScoreList .tableHeader .cellBlock:nth-child(7),
  .scScoreList .tableRow .cellBlock:nth-child(7) {
    order: 7;
  }

  .scScoreList .tableHeader .cellBlock:nth-child(8),
  .scScoreList .tableRow .cellBlock:nth-child(8) {
    order: 8;
  }

  .scScoreList .tableHeader .cellBlock:nth-child(9),
  .scScoreList .tableRow .cellBlock:nth-child(9) {
    order: 9;
  }
}

/* ----------------- */
/* ヘッダー項目      */
/* ----------------- */
#scScoreDetail .tableHeader>.cellBlock:nth-child(1) {
  flex: 1;
}

#scScoreDetail .tableHeader>.cellBlock:nth-child(2) {
  width: 70px;
}

#scScoreDetail .tableHeader>.cellBlock:nth-child(3) {
  width: 35px;
  text-align: center;
}

#scScoreDetail .tableHeader>.cellBlock:nth-child(4) {
  width: 70px;
  text-align: right;
}

#scScoreDetail .tableHeader>.cellBlock:nth-child(5) {
  width: 40px;
  text-align: center;
}

/* ----------------- */
/* 行項目            */
/* ----------------- */
#scScoreDetail .tableRow {
  height: 55px;
}

#scScoreDetail .tableRow>.cellBlock {
  height: 55px;
  display: flex;
  align-items: center;
}

#scScoreDetail .tableRow>.cellBlock:nth-child(1) {
  flex: 1;
}

#scScoreDetail .tableRow>.cellBlock:nth-child(2) {
  width: 30px;
  justify-content: center;
}

#scScoreDetail .tableRow>.cellBlock:nth-child(3),
#scScoreDetail .tableRow>.cellBlock:nth-child(4),
#scScoreDetail .tableRow>.cellBlock:nth-child(5),
#scScoreDetail .tableRow>.cellBlock:nth-child(6),
#scScoreDetail .tableRow>.cellBlock:nth-child(7) {
  width: 35px;
  font-size: 30pt;
  justify-content: center;
  text-align: center;
  border-left: var(--border);
}

#scScoreDetail .tableRow>.cellBlock:nth-child(8) {
  width: 40px;
  justify-content: center;
  text-align: center;
  border-left: var(--border);
}

#scScoreDetail .scProfileTableFollow>.cellBlock:nth-child(2) {
  visibility: hidden;
}

#scScoreDetail .scProfileTableReverse>.cellBlock:nth-child(3) {
  background-color: var(--mainColor);
}

#scScoreDetail .scProfileTableFollow>.cellBlock:nth-child(7) {
  background-color: var(--mainColor);
}

/*-------------------------*/
/* SC面談状況              */
/*-------------------------*/
.scMeetingCaution {
  margin: 15px 0px 10px;
  padding: 10px;
  background-color: var(--accentColor);
}

.scMeetingList {
  margin-top: 30px;
}

.scMeetingList .tableHeader .cellBlock,
.scMeetingList .tableRow .cellBlock {
  padding: 5px;
  box-sizing: border-box;
}

.scMeetingList .tableHeader .cellBlock:nth-child(1),
.scMeetingList .tableRow .cellBlock:nth-child(1) {
  width: 80px;
}

.scMeetingList .tableHeader .cellBlock:nth-child(2),
.scMeetingList .tableRow .cellBlock:nth-child(2) {
  flex: 1;
}

.scMeetingList .tableHeader .cellBlock:nth-child(3),
.scMeetingList .tableRow .cellBlock:nth-child(3) {
  width: 90px;
  text-align: center;
}

.scMeetingList .tableHeader .cellBlock:nth-child(4),
.scMeetingList .tableRow .cellBlock:nth-child(4) {
  width: 120px;
  text-align: center;
}

.scMeetingList .tableHeader .cellBlock:nth-child(5),
.scMeetingList .tableRow .cellBlock:nth-child(5) {
  width: 80px;
  text-align: center;
}

.scMeetingList .tableFilter {
  display: flex;
}

.scMeetingList .tableFilter>div {
  display: flex;
  width: 400px;
}

.scMeetingList .tableFilter>div>div:nth-child(1) {
  width: 170px;
}

.scMeetingList .tableFilter>div>div:nth-child(2) {
  flex: 1;
  display: flex;
  align-items: center;
}

.scMeetingList div[data-select='on'] {
  background-color: var(--mainColor);
}

#scMeetingUpdateDialog .inputTable {
  width: 500px;
  margin: 15px 0px 30px;
}

#scMeetingUpdateDialog .scMeetingConfirmOK {
  width: 150px;
  margin: 5px 15px;
}

#scMeetingConfirmDialog .dialogDetail {
  margin: 20px 5px 25px;
}

#scMeetingConfirmDialog .caution {
  /* padding: 10px 0px; */
  font-weight: bold;
}

/*-------------------------*/
/* SCProfile表             */
/*-------------------------*/
.mainCenter .portlet.scProfileTable,
.mainCenter .portlet.scProfileChart {
  margin-top: 50px;
}

/* ----------------- */
/* ヘッダー項目      */
/* ----------------- */
.scProfileTable .tableHeader>.cellBlock:nth-child(1) {
  flex: 1;
}

.scProfileTable .tableHeader>.cellBlock:nth-child(2) {
  width: 70px;
}

.scProfileTable .tableHeader>.cellBlock:nth-child(3) {
  width: 35px;
  text-align: center;
}

.scProfileTable .tableHeader>.cellBlock:nth-child(4) {
  width: 70px;
  text-align: right;
}

.scProfileTable .tableHeader>.cellBlock:nth-child(5) {
  width: 40px;
  text-align: center;
}

/* ----------------- */
/* 行項目            */
/* ----------------- */
.scProfileTable .tableRow {
  height: fit-content;
  min-height: 55px;
}

.ios .scProfileTable .tableRow {
  min-height: 75px;
}

.scProfileTable .tableRow>.cellBlock {
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 55px;
}

.ios .scProfileTable .tableRow>.cellBlock {
  min-height: 75px;
}

.scProfileTable .tableRow>.cellBlock:nth-child(1) {
  flex: 1;
}

.scProfileTable .tableRow>.cellBlock:nth-child(2) {
  width: 30px;
  justify-content: center;
}

.scProfileTable .tableRow>.cellBlock:nth-child(3),
.scProfileTable .tableRow>.cellBlock:nth-child(4),
.scProfileTable .tableRow>.cellBlock:nth-child(5),
.scProfileTable .tableRow>.cellBlock:nth-child(6),
.scProfileTable .tableRow>.cellBlock:nth-child(7) {
  width: 35px;
  font-size: 30pt;
  justify-content: center;
  text-align: center;
  border-left: var(--border);
}

@media screen and (max-width: 450px) {
  .scProfileTable .tableRow>.cellBlock:nth-child(1) {
    font-size: 10pt;
  }

  .scProfileTable .tableRow>.cellBlock:nth-child(2) {
    font-size: 11pt;
  }

  .scProfileTable .tableRow>.cellBlock:nth-child(3),
  .scProfileTable .tableRow>.cellBlock:nth-child(4),
  .scProfileTable .tableRow>.cellBlock:nth-child(5),
  .scProfileTable .tableRow>.cellBlock:nth-child(6),
  .scProfileTable .tableRow>.cellBlock:nth-child(7) {
    font-size: 12pt;
  }
}

.scProfileTable .tableRow>.cellBlock:nth-child(8) {
  width: 40px;
  justify-content: center;
  text-align: center;
  border-left: var(--border);
}

.scProfileTable .scProfileTableFollow>.cellBlock:nth-child(2) {
  visibility: hidden;
}

.scProfileTable .scProfileTableReverse>.cellBlock:nth-child(3) {
  background-color: var(--mainColor);
}

.scProfileTable .scProfileTableFollow>.cellBlock:nth-child(7) {
  background-color: var(--mainColor);
}

.scProfileTableReverse .cellBlock:nth-child(1)>div,
.scProfileTableFollow .cellBlock:nth-child(1)>div {
  margin-left: 20px;
}

/*-------------------------*/
/* SCProfileチャート       */
/*-------------------------*/
.scProfileChartTitle {
  padding: 5px;
  font-size: 20px;
  background-color: var(--mainColor);
}

/*-------------------------*/
/* SC実施                  */
/*-------------------------*/
.scAnswerSubject {
  font-size: 18pt;
  background-color: var(--mainColor);
  padding: 5px 10px;
}

.scAnswerQuestion {
  font-size: 16pt;
  border-left: double 15px var(--accentColor);
  margin-top: 15px;
}

.scAnswerButtonArea {
  display: flex;
}

.scAnswerButtonArea>div {
  width: 90px;
  height: 50px;
  background-color: var(--mainColor);
  margin: 20px 20px 10px 15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.scAnswerButtonArea>div:hover {
  background-color: var(--accentColor);
}

.scAnswer .selected {
  background-color: var(--accentColor);
}

.scAnswerCaution,
.scAnswerFoloow {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.scAnswerAnswerBlock {
  display: none;
}

.scAnswerAnswerBlock.scAnswerFocus {
  display: block;
}

.scAnswerAnswerAll .scAnswerAnswerBlock {
  display: block;
}

/*-------------------------*/
/* レーダーチャート        */
/*-------------------------*/
/* チャート領域 */
.chart {
  width: 100%;
  height: 400px;
}

/* SVGタグ */
.radarRoot {
  width: 100%;
  height: 100%;
  overflow-x: auto;
}

/* レーダーチャートベース */
.radarChartBase {
  fill: none;
  stroke: var(--chartBaseColor);
  stroke-width: 1px;
  stroke-dasharray: 3px;
}

/* レーダーチャート項目名 */
.ladarItem {
  margin-right: 10px;
  margin-left: 10px;
  display: block;
  fill: var(--strColor);
  stroke: none;
  stroke-dasharray: 0px;
}

/* レーダーチャート */
.radarChartArea {
  position: absolute;
  fill: var(--chartColor1);
  stroke: none;
  opacity: 0.5;
  z-index: 0;
}

.radarChartArea polygon:nth-child(2) {
  fill: var(--chartColor2);
}

/* レーダーチャートマーカー */
.radarChartMarkerArea {
  fill: var(--chartCircle);
}

/*-------------------------*/
/* ワークフローTOP         */
/*-------------------------*/
.wfTop .tableHeader .cellBlock:nth-child(1),
.wfTop .tableRow .cellBlock:nth-child(1) {
  flex: 1;
}

.wfTop .tableHeader .cellBlock:nth-child(2),
.wfTop .tableRow .cellBlock:nth-child(2) {
  width: 120px;
}

.wfTop .tableHeader .cellBlock:nth-child(3),
.wfTop .tableRow .cellBlock:nth-child(3) {
  width: 120px;
}

.wfTop .tableHeader .cellBlock:nth-child(4),
.wfTop .tableRow .cellBlock:nth-child(4) {
  width: 60px;
}

.wfTop .wfTopCreateButton {
  display: block;
  margin: 0px 0px 0px auto;
  width: 120px;
}

@media screen and (max-width: 400px) {

  .wfTop .tableHeader,
  .wfTop .tableRow {
    flex-wrap: wrap;
  }

  .wfTop .tableHeader .cellBlock:nth-child(1),
  .wfTop .tableRow .cellBlock:nth-child(1) {
    min-width: 320px;
  }

  .wfTop .tableHeader .cellBlock:nth-child(3),
  .wfTop .tableRow .cellBlock:nth-child(3) {
    width: 120px;
    flex: 1;
  }
}

/*-------------------------*/
/* 勤務表                  */
/*-------------------------*/
.workTimeTable {
  margin-top: 20px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(1),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(1) {
  width: 30px;
  flex: none;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(2),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(2) {
  width: 40px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(3),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(3) {
  width: 145px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(4),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(4) {
  width: 70px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(5),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(5) {
  width: 70px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(6),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(6) {
  width: 85px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(7),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(7) {
  width: 70px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(8),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(8) {
  width: 70px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(9),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(9) {
  width: 70px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(10),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(10) {
  width: 80px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(11),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(11) {
  width: 80px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(12),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(12) {
  width: 80px;
}

.wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(13),
.wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(13) {
  flex: 1;
}

.wfWorkTime .workTimeTable .tableHeader input,
.wfWorkTime .workTimeTable .tableRow input {
  width: 90%;
}

.wfWorkTime .workTimeTable .tableRow input[name=Rest] {
  width: 50px;
}

.wfWorkTime .caution {
  padding: 10px;
  border: var(--border);
}

@media screen and (max-width: 1350px) {

  .wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(10),
  .wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(10) {
    display: none;
  }

  .wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(11),
  .wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(11) {
    display: none;
  }

  .wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(12),
  .wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(12) {
    display: none;
  }
}

@media screen and (max-width: 1100px) {

  .wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(7),
  .wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(7) {
    display: none;
  }

  .wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(8),
  .wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(8) {
    display: none;
  }

  .wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(9),
  .wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(9) {
    display: none;
  }
}

@media screen and (max-width: 700px) {

  .wfWorkTime .workTimeTable .tableHeader,
  .wfWorkTime .workTimeTable .tableRow {
    flex-wrap: wrap;
  }

  .wfWorkTime .workTimeTable .tableHeader .cellBlock:nth-child(13),
  .wfWorkTime .workTimeTable .tableRow .cellBlock:nth-child(13) {
    flex: none;
    min-width: min(100%, 1200px);
    border-top: dashed 2px var(--mainColor);
  }
}

/*-------------------------*/
/* 出勤伝票                */
/*-------------------------*/
.wfExpenses .caution {
  padding: 10px;
  border: var(--border);
}

.wfExpensesTravel .table,
.wfExpensesOther .table {
  margin: 25px 0px 10px;
}

.wfExpensesTravel .table .tableHeader .cellBlock:nth-child(1),
.wfExpensesTravel .table .tableRow .cellBlock:nth-child(1) {
  width: 150px;
}

.wfExpensesTravel .table .tableHeader .cellBlock:nth-child(2),
.wfExpensesTravel .table .tableRow .cellBlock:nth-child(2) {
  width: 130px;
}

.wfExpensesTravel .table .tableHeader .cellBlock:nth-child(3),
.wfExpensesTravel .table .tableRow .cellBlock:nth-child(3) {
  width: 120px;
}

.wfExpensesTravel .table .tableHeader .cellBlock:nth-child(4),
.wfExpensesTravel .table .tableRow .cellBlock:nth-child(4) {
  flex: 1;
}

.wfExpensesTravel .table .tableHeader .cellBlock:nth-child(5),
.wfExpensesTravel .table .tableRow .cellBlock:nth-child(5) {
  width: 80px;
}

.wfExpensesTravel .table .tableHeader .cellBlock:nth-child(6),
.wfExpensesTravel .table .tableRow .cellBlock:nth-child(6) {
  width: 90px;
}

.wfExpensesTravel .table .tableHeader .cellBlock:nth-child(7),
.wfExpensesTravel .table .tableRow .cellBlock:nth-child(7) {
  width: 200px;
}

.wfExpensesTravel .table input {
  width: calc(100% - 15px);
}

.wfExpensesTravel .table .tableRow .cellBlock:nth-child(4) input {
  width: calc(50% - 30px);
}

.wfExpensesOther .table .tableHeader .cellBlock:nth-child(1),
.wfExpensesOther .table .tableRow .cellBlock:nth-child(1) {
  width: 150px;
}

.wfExpensesOther .table .tableHeader .cellBlock:nth-child(2),
.wfExpensesOther .table .tableRow .cellBlock:nth-child(2) {
  width: 130px;
}

.wfExpensesOther .table .tableHeader .cellBlock:nth-child(3),
.wfExpensesOther .table .tableRow .cellBlock:nth-child(3) {
  width: 120px;
}

.wfExpensesOther .table .tableHeader .cellBlock:nth-child(4),
.wfExpensesOther .table .tableRow .cellBlock:nth-child(4) {
  flex: 1;
}

.wfExpensesOther .table .tableHeader .cellBlock:nth-child(5),
.wfExpensesOther .table .tableRow .cellBlock:nth-child(5) {
  width: 80px;
}

.wfExpensesOther .table .tableHeader .cellBlock:nth-child(6),
.wfExpensesOther .table .tableRow .cellBlock:nth-child(6) {
  width: 90px;
}

.wfExpensesOther .table .tableHeader .cellBlock:nth-child(7),
.wfExpensesOther .table .tableRow .cellBlock:nth-child(7) {
  width: 200px;
}

.wfExpensesOther .table input {
  width: calc(100% - 15px);
}

.wfExpensesSummary {
  margin-top: 20px;
}

.wfExpensesParts {
  display: none;
}

/*-------------------------*/
/* WF管理                  */
/*-------------------------*/
.wfManagementSearchRow {
  display: flex;
  margin: 3px 0px;
}

.wfManagementSearchRow>div:nth-child(n+2) {
  margin-left: 50px;
}

.wfManagementBody {
  margin-top: 15px;
}

.wfManagementBody .tableOption {
  display: flex;
  flex-direction: row-reverse;
}

.wfManagementBody .tableHeader .cellBlock:nth-child(1),
.wfManagementBody .tableRow .cellBlock:nth-child(1) {
  width: 85px;
}

.wfManagementBody .tableHeader .cellBlock:nth-child(2),
.wfManagementBody .tableRow .cellBlock:nth-child(2) {
  flex: 1;
}

.wfManagementBody .tableHeader .cellBlock:nth-child(3),
.wfManagementBody .tableRow .cellBlock:nth-child(3) {
  width: 130px;
}

.wfManagementBody .tableHeader .cellBlock:nth-child(4),
.wfManagementBody .tableRow .cellBlock:nth-child(4) {
  width: 95px;
}

.wfManagementBody .tableHeader .cellBlock:nth-child(5),
.wfManagementBody .tableRow .cellBlock:nth-child(5) {
  width: 85px;
}

.wfManagementBody .tableHeader .cellBlock:nth-child(6),
.wfManagementBody .tableRow .cellBlock:nth-child(6) {
  width: 50px;
}

@media screen and (max-width: 700px) {
  .wfManagementSearchRow {
    display: block;
  }

  .wfManagementSearchRow>div:nth-child(n+2) {
    margin: 3px 0px;
  }

  .wfManagementBody .tableHeader .cellBlock:nth-child(1),
  .wfManagementBody .tableRow .cellBlock:nth-child(1) {
    display: none;
  }

  .wfManagementBody .tableHeader .cellBlock:nth-child(4),
  .wfManagementBody .tableRow .cellBlock:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 400px) {

  .wfManagementBody .tableHeader,
  .wfManagementBody .tableRow {
    flex-wrap: wrap;
  }

  .wfManagementBody .tableHeader .cellBlock:nth-child(2),
  .wfManagementBody .tableRow .cellBlock:nth-child(2) {
    min-width: 300px;
  }

  .wfManagementBody .tableHeader .cellBlock:nth-child(3),
  .wfManagementBody .tableRow .cellBlock:nth-child(3) {
    flex: 1;
    min-width: 130px;
  }
}

/*-------------------------*/
/* 会議室予約TOP           */
/*-------------------------*/
.mrTopCondition {
  display: flex;
  justify-content: space-between;
  margin: 20px 0px 10px;
}

.mrTopCondition>div {
  display: flex;
}

/* .mrTopCondition > div > div {
  margin : 5px;
} */

.mrTopCondition>div>div:nth-child(2) {
  margin-left: 5px;
}

.mrTopScheduleDays {
  display: flex;
  gap: 2px;
  width: 100%;
  background-color: var(--accentColor);
}

.mrTopScheduleDays>div {
  /* width : calc((100% - 30px) / 7); */
  width: calc(100% / 7);
  border: var(--border);
  border-top: none;
  border-bottom: none;
  /* box-sizing : border-box; */
}

.mrTopScheduleHeader {
  display: flex;
  justify-content: space-between;
  border-top: var(--border);
  background-color: var(--mainColor);
}

.mrTopScheduleFooter {
  display: flex;
  justify-content: center;
  background-color: var(--mainColor);
}

.mrTopSchedule {
  display: flex;
  gap: 2px;
  width: 100%;
  height: 53vh;
  overflow: auto;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

.mrTopSchedule::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.mrTopDay {
  width: calc(100% / 7);
  height: fit-content;
  border-bottom: var(--border);
}

.mrTopScheduleCell {
  border-right: var(--border);
  border-left: var(--border);
  height: 20px;
}

.mrTopScheduleCell:nth-child(2n+1) {
  border-top: var(--border);
}

.mrTopScheduleCell:nth-child(2n) {
  border-top: dashed 1px var(--mainColor);
}

.mrTopSchedule .mrTopUpperCell.tableRow,
.mrTopSchedule .mrTopUnderCell.tableRow {
  display: none;
}

.mrTopSchedule.mrTopUpperShow .mrTopUpperCell.tableRow {
  animation: fadeIn 1.5s linear;
  display: block;
}

.mrTopSchedule.mrTopUnderShow .mrTopUnderCell.tableRow {
  animation: fadeIn 1.5s linear;
  display: block;
}

.mrTopSchedule .table .tableRow {
  min-height: 10px;
}

/* 空室なし */
.mrTopScheduleCell[data-reserved="1"] {
  opacity: 0.7;
  background-color: var(--mainColor);
}

.mrTopScheduleCell[data-reserved="1"][data-select="on"] {
  background-color: var(--accentColor);
}

/* 空室なし(参加会議) */
.mrTopScheduleCell[data-reserved="3"] {
  background-color: var(--accentColor);
  opacity: 0.7;
}

.mrTopScheduleCell[data-reserved="3"][data-select="on"] {
  background-color: var(--accentColor);
  opacity: 1;
}

/* 空室あり(参加会議) */
.mrTopScheduleCell[data-reserved="4"] {
  background: linear-gradient(90deg, var(--baseColor) 50%, var(--accentColor));
  opacity: 0.7;
}

.mrTopScheduleCell[data-reserved="4"][data-select="on"] {
  opacity: 1;
  background: var(--mainColor);
}

/* 空室あり */
.mrTopScheduleCell[data-reserved="5"] {
  background: linear-gradient(90deg, var(--baseColor) 50%, var(--mainColor));
  opacity: 0.7;
}

.mrTopScheduleCell[data-reserved="5"][data-select="on"] {
  opacity: 1;
  background: var(--accentColor);
}

.mrTopScheduleCell[data-select="on"] {
  border-width: 3px;
  border-color: var(--accentColor);
}

@media screen and (max-width: 500px) {

  .mrTopScheduleDays>div:nth-child(1),
  .mrTopScheduleDays>div:nth-child(7) {
    display: none;
  }

  .mrTopSchedule>div:nth-child(1),
  .mrTopSchedule>div:nth-child(7) {
    display: none;
  }

  .mrTopSchedule>div,
  .mrTopScheduleDays>div {
    width: calc(100% / 5);
  }

  .mrTopSchedule {
    height: 40vh;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.mrTopScheduleCell.Legend {
  margin-left: auto;
  width: 50%;
  height: 20px;
  font-size: 10.5pt;
}

.mrTopScheduleCell.Legend.Top {
  margin-top: 20px;
}

.mrTopScheduleCell.Legend.Bottom {
  border-bottom: var(--border);
}

/*-------------------------*/
/* 会議室設定              */
/*-------------------------*/
.mrSettingMenu {
  display: flex;
  justify-content: right;
  padding-right: 15px;
}

.mrSettingTable {
  margin-top: 5px;
}

.mrSettingTable .tableHeader>div:nth-child(1),
.mrSettingTable .tableRow>div:nth-child(1) {
  width: 140px;
}

.mrSettingTable .tableHeader>div:nth-child(2),
.mrSettingTable .tableRow>div:nth-child(2) {
  flex: 1;
}

.mrSettingTable .tableHeader>div:nth-child(3),
.mrSettingTable .tableRow>div:nth-child(3) {
  width: 65px;
}

.mrSettingTable .tableHeader>div:nth-child(4),
.mrSettingTable .tableRow>div:nth-child(4) {
  width: 220px;
}

.mrSettingTable .tableHeader>div:nth-child(5),
.mrSettingTable .tableRow>div:nth-child(5) {
  width: 60px;
}

@media screen and (max-width: 600px) {

  .mrSettingTable .tableHeader>div:nth-child(1),
  .mrSettingTable .tableRow>div:nth-child(1) {
    width: 100px;
  }

  .mrSettingTable .tableHeader>div:nth-child(3),
  .mrSettingTable .tableRow>div:nth-child(3) {
    display: none;
  }

  .mrSettingTable .tableHeader>div:nth-child(4),
  .mrSettingTable .tableRow>div:nth-child(4) {
    width: 120px;
  }
}

@media screen and (max-width: 400px) {

  .mrSettingTable .tableHeader>div:nth-child(1),
  .mrSettingTable .tableRow>div:nth-child(1) {
    width: 140px;
  }

  .mrSettingTable .tableHeader>div:nth-child(3),
  .mrSettingTable .tableRow>div:nth-child(3) {
    display: none;
  }

  .mrSettingTable .tableHeader>div:nth-child(4),
  .mrSettingTable .tableRow>div:nth-child(4) {
    display: none;
  }
}

/*-------------------------*/
/* 会議室設定詳細          */
/*-------------------------*/
@media screen and (max-width: 400px) {
  .mrSettingEdit .inputTableCell>div:nth-child(2) {
    display: block;
  }
}

/*-------------------------*/
/* 会議室予約              */
/*-------------------------*/
.mrReserve .caution {
  min-height: 30px;
}

.mrReserve .caution>div {
  margin: 3px 0px;
}

.mrReserveTargetAddress {
  display: flex;
  height: 270px;
}

.mrReserveTargetAddress>div:nth-child(1),
.mrReserveTargetAddress>div:nth-child(3) {
  width: 210px;
  border: var(--border);
  overflow-y: scroll;
  cursor: default;
}

.mrReserveTargetAddress>div:nth-child(2) {
  width: 34px;
  align-self: center;
  text-align: center;
}

.mrReserveTargetAddress>div:nth-child(2) .pseudoButton {
  text-align: center;
  margin: 8px 0px;
}

.mrReserveTargetAddress>div:nth-child(1)>div,
.mrReserveTargetAddress>div:nth-child(3)>div {
  padding: 2px 5px;
}

.mrReserveTargetAddress>div:nth-child(1)>div[data-select=on],
.mrReserveTargetAddress>div:nth-child(3)>div[data-select=on] {
  background-color: var(--mainColor);
}

.mrReserveTargetAddress>div:nth-child(1)>div:hover {
  background-color: var(--mainColor);
}

.mrReserveTargetAddress>div:nth-child(3)>div:hover {
  background-color: var(--mainColor);
}

.mrReserveTargetFilter {
  margin-bottom: 5px;
}

.mrReserveSubject {
  width: 210px;
  text-align: center;
}

.mrReserve .caution {
  border: var(--border);
  background-color: var(--accentColor);
}

.mrReserveRemark {
  height: 5em;
}

.mrReserveRoomTemp {
  display: none;
}

.mrReserveCautionMulti,
.mrReserveCautionRooms {
  display: none;
}

.mrReserveDivision {
  border-top: solid 3px var(--accentColor);
}

@media screen and (max-width: 500px) {
  .mrReserveTargetAddress {
    display: block;
    height: auto;
    margin-bottom: 15px;
  }

  .mrReserveTargetAddress>div:nth-child(2) {
    transform: rotate(90deg);
    position: relative;
    left: 80px;
    width: 40px;
    height: 100px;
  }

  .mrReserveTargetAddress>div:nth-child(2) .pseudoButton {
    border: var(--border);
    transform: rotate(4deg);
    border-width: 2px;
  }
}

/*-------------------------*/
/* 会議室予約詳細          */
/*-------------------------*/
.mrDetail .mrDetailTab {
  display: flex;
}

.mrDetailReserveUnit[data-edit='0'] input,
.mrDetailReserveUnit[data-edit='0'] checkbox,
.mrDetailReserveUnit[data-edit='0'] textarea,
.mrDetailReserveUnit[data-edit='0'] label,
.mrDetailReserveUnit[data-edit='0'] .selectedListTarget {
  pointer-events: none;
  opacity: 0.6;
}

.mrDetailTab>div {
  height: 20px;
  width: 50px;
  border: var(--border);
  cursor: pointer;
  text-align: center;
}

.mrDetailTab>div.on {
  background-color: var(--mainColor);
}

.mrDetailReserveUnit.off {
  display: none;
}

.mrDetailRemark {
  height: 7em;
}

.mrDetailSubject {
  width: 210px;
  text-align: center;
}

.mrDetail[data-editable='0'] .mrDetailConfirm,
.mrDetail[data-editable='0'] .mrDetailRelease,
.mrDetail[data-editable='0'] .selectedListOriginal,
.mrDetail[data-editable='0'] .l2r,
.mrDetail[data-editable='0'] .r2l {
  display: none;
}

.mrDetail[data-editable='1'] .mrDetailTargetAddress {
  display: flex;
  height: 270px;
}

.mrDetail[data-editable='1'] .mrDetailTargetAddress>div:nth-child(1),
.mrDetail[data-editable='1'] .mrDetailTargetAddress>div:nth-child(3) {
  width: 210px;
  border: var(--border);
  overflow-y: scroll;
  cursor: default;
}

.mrDetailTargetAddress>div:nth-child(2) {
  width: 34px;
  align-self: center;
  text-align: center;
}

.mrDetailTargetAddress>div:nth-child(2) .pseudoButton {
  text-align: center;
  margin: 8px 0px;
}

.mrDetailTargetAddress>div:nth-child(1)>div,
.mrDetailTargetAddress>div:nth-child(3)>div {
  padding: 2px 5px;
}

.mrDetailTargetAddress>div:nth-child(1)>div[data-select=on],
.mrDetailTargetAddress>div:nth-child(3)>div[data-select=on] {
  background-color: var(--mainColor);
}

.mrDetailTargetAddress>div:nth-child(1)>div:hover {
  background-color: var(--mainColor);
}

.mrDetailTargetAddress>div:nth-child(3)>div:hover {
  background-color: var(--mainColor);
}

@media screen and (max-width: 500px) {
  .mrDetail[data-editable='1'] .mrDetailTargetAddress {
    display: block;
    height: auto;
    margin-bottom: 15px;
  }

  .mrDetail[data-editable='1'] .mrDetailTargetAddress>div:nth-child(2) {
    transform: rotate(90deg);
    position: relative;
    left: 80px;
    width: 40px;
    height: 100px;
  }

  .mrDetailTargetAddress>div:nth-child(2) .pseudoButton {
    border: var(--border);
    transform: rotate(4deg);
    border-width: 2px;
  }
}

#mrReserveConfirm .dialogDetail {
  margin: 20px 5px 25px;
}

#mrReserveConfirm .caution {
  padding: 10px 0px;
  font-weight: bold;
}

/*-------------------------*/
/* 権限編集                */
/*-------------------------*/
.authorityEditSubject {
  display: flex;
}

.authorityEditSubject>div:nth-child(1),
.authorityEditSubject>div:nth-child(3) {
  width: 300px;
  text-align: center;
}

.authorityEditSubject>div:nth-child(2) {
  width: 34px;
  align-self: center;
  text-align: center;
}

.authorityEditSubject>div:nth-child(1)>div,
.authorityEditSubject>div:nth-child(3)>div {
  padding: 2px 5px;
}

.authorityEditList {
  display: flex;
  height: 245px;
}

.authorityEditList>div:nth-child(1),
.authorityEditList>div:nth-child(3) {
  width: 300px;
  border: var(--border);
  overflow-y: scroll;
  cursor: default;
}

.authorityEditList>div:nth-child(2) {
  width: 34px;
  align-self: center;
  text-align: center;
}

.authorityEditList>div:nth-child(1)>div,
.authorityEditList>div:nth-child(3)>div {
  padding: 2px 5px;
}

.authorityEditList>div:nth-child(1)>div[data-select=on],
.authorityEditList>div:nth-child(3)>div[data-select=on] {
  background-color: var(--mainColor);
}

.authorityEditList>div:nth-child(1)>div:hover {
  background-color: var(--mainColor);
}

.authorityEditList>div:nth-child(3)>div:hover {
  background-color: var(--mainColor);
}

@media screen and (max-width: 500px) {
  .authorityEditList {
    display: block;
    height: auto;
    margin-bottom: 15px;
  }

  .authorityEditList>div:nth-child(2) {
    transform: rotate(90deg);
    position: relative;
    left: 80px;
    width: 120px;
    height: 30px;
  }

  .authorityEditList>div:nth-child(2) .pseudoButton {
    border: var(--border);
    transform: rotate(4deg);
    border-width: 2px;
  }

  .authorityEditSubject {
    display: none;
  }
}

.authorityEdit .caution {
  min-height: 30px;
}

.authorityEdit .caution>div {
  margin: 3px 0px;
}

.authorityEdit .caution {
  border: var(--border);
  background-color: var(--accentColor);
}

/*-------------------------*/
/* お知らせ一覧            */
/*-------------------------*/
.infoListHeader {
  margin: 20px 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.infoListHeader>div:nth-child(1)>div {
  position: relative;
  top: 10px;
}

.infoListCreate {
  width: 120px;
  height: 20px;
}

.infoListCreate:hover {
  cursor: pointer;
  border: var(--border);
}

.infoList .tableHeader .cellBlock,
.infoList .tableRow .cellBlock {
  padding: 5px;
  box-sizing: border-box;
}

.infoList .tableHeader .cellBlock:nth-child(1),
.infoList .tableRow .cellBlock:nth-child(1) {
  width: 60px;
}

.infoList .tableHeader .cellBlock:nth-child(2),
.infoList .tableRow .cellBlock:nth-child(2) {
  width: 80px;
}

.infoList .tableHeader .cellBlock:nth-child(3),
.infoList .tableRow .cellBlock:nth-child(3) {
  flex: 1;
}

.infoList .tableHeader .cellBlock:nth-child(4),
.infoList .tableRow .cellBlock:nth-child(4) {
  width: 120px;
}

.infoList .tableHeader .cellBlock:nth-child(5),
.infoList .tableRow .cellBlock:nth-child(5) {
  width: 120px;
}

.infoList .tableHeader .cellBlock:nth-child(6),
.infoList .tableRow .cellBlock:nth-child(6) {
  width: 60px;
  text-align: center;
}

.infoList .tableHeader .cellBlock:nth-child(7),
.infoList .tableRow .cellBlock:nth-child(7) {
  width: 60px;
  text-align: center;
}

.infoList .importantInfo {
  color: var(--strongColor);
}

@media screen and (max-width: 700px) {

  .infoList .tableHeader .cellBlock:nth-child(1),
  .infoList .tableRow .cellBlock:nth-child(1) {
    display: none;
  }

  .infoList .tableHeader .cellBlock:nth-child(2),
  .infoList .tableRow .cellBlock:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 550px) {

  .infoList .tableHeader .cellBlock:nth-child(5),
  .infoList .tableRow .cellBlock:nth-child(5) {
    display: none;
  }
}

.infoList .tableFilter {
  display: flex;
  flex-wrap: wrap;
}

.infoList .tableFilter>div {
  display: flex;
  width: 300px;
}

.infoList .tableFilter>div>div:nth-child(1) {
  width: 140px;
}

.infoList .tableFilter>div>div:nth-child(2) {
  flex: 1;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1300px) {
  .infoList .tableFilter {
    display: block;
  }

  /* .infoList .tableFilter > div {
    margin-top : 10px;
  } */
}

/*-------------------------*/
/* お知らせ作成            */
/*-------------------------*/
.infoCreateArea {
  width: 100%;
}

.infoCreateTitle {
  width: 350px;
}

.infoCreateDetail {
  height: 10em;
}

/*-------------------------*/
/* お知らせ編集            */
/*-------------------------*/
.infoEditArea {
  width: 100%;
}

.infoEditTitle {
  width: 350px;
}

.infoEditDetail {
  height: 10em;
}

/*-------------------------*/
/* お知らせ詳細            */
/*-------------------------*/
#imageContainer img {
  max-width: 100%;
  height: auto;
}

/*-------------------------*/
/* お知らせ管理            */
/*-------------------------*/
.infoManagementHeader {
  margin: 20px 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.infoManagementHeader>div:nth-child(1)>div {
  position: relative;
  top: 10px;
}

.infoManagement .tableHeader .cellBlock,
.infoManagement .tableRow .cellBlock {
  padding: 5px;
  box-sizing: border-box;
}

.infoManagement .tableHeader .cellBlock:nth-child(1),
.infoManagement .tableRow .cellBlock:nth-child(1) {
  width: 60px;
}

.infoManagement .tableHeader .cellBlock:nth-child(2),
.infoManagement .tableRow .cellBlock:nth-child(2) {
  width: 80px;
}

.infoManagement .tableHeader .cellBlock:nth-child(3),
.infoManagement .tableRow .cellBlock:nth-child(3) {
  flex: 1;
}

.infoManagement .tableHeader .cellBlock:nth-child(4),
.infoManagement .tableRow .cellBlock:nth-child(4) {
  width: 120px;
}

.infoManagement .tableHeader .cellBlock:nth-child(5),
.infoManagement .tableRow .cellBlock:nth-child(5) {
  width: 120px;
}

.infoManagement .tableHeader .cellBlock:nth-child(6),
.infoManagement .tableRow .cellBlock:nth-child(6) {
  width: 80px;
  text-align: center;
}

.infoManagement .tableHeader .cellBlock:nth-child(7),
.infoManagement .tableRow .cellBlock:nth-child(7) {
  width: 80px;
  text-align: center;
}

.infoManagement .importantInfo {
  color: var(--strongColor);
}

@media screen and (max-width: 700px) {

  .infoManagement .tableHeader .cellBlock:nth-child(1),
  .infoManagement .tableRow .cellBlock:nth-child(1) {
    display: none;
  }

  .infoManagement .tableHeader .cellBlock:nth-child(2),
  .infoManagement .tableRow .cellBlock:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 550px) {

  .infoManagement .tableHeader .cellBlock:nth-child(5),
  .infoManagement .tableRow .cellBlock:nth-child(5) {
    display: none;
  }
}

.infoManagement .tableFilter {
  display: flex;
  flex-wrap: wrap;
}

.infoManagement .tableFilter>div {
  display: flex;
  width: 300px;
}

.infoManagement .tableFilter>div>div:nth-child(1) {
  width: 140px;
}

.infoManagement .tableFilter>div>div:nth-child(2) {
  flex: 1;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1300px) {
  .infoManagement .tableFilter {
    display: block;
  }
}

/*-------------------------*/
/* お知らせ承認            */
/*-------------------------*/
.infoApproveArea {
  width: 100%;
}

.infoApproveDetail {
  height: 10em;
}

.infoApproveButtonArea {
  display: flex;
}

.infoApproveButtonArea>div {
  width: 120px;
  height: 50px;
  background-color: var(--mainColor);
  margin: 10px 0px 10px 0px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.infoApproveButtonArea>div[data-select=off] {
  background-color: var(--mainColor);
}

.infoApproveButtonArea>div[data-select=on] {
  background-color: var(--accentColor);
}

.infoApproveButtonArea>div:nth-child(2) {
  margin-left: 30px;
}

.infoApproveButtonArea>div[data-select=off]:hover {
  background-color: var(--accentColor);
}

.infoApproveButtonArea>div[data-select=on]:hover {
  background-color: var(--accentColor);
}

/*-------------------------*/
/* お知らせグループ作成    */
/*-------------------------*/
.infoGroupCreateArea {
  width: 100%;
}

.infoGroupCreateTitle {
  width: 350px;
}

.infoGroupCreateDetail {
  height: 10em;
}

/*-------------------------*/
/* お知らせグループ編集    */
/*-------------------------*/
.infoGroupEditArea {
  width: 100%;
}

.infoGroupEditTitle {
  width: 350px;
}

.infoGroupEditDetail {
  height: 10em;
}

/*-------------------------*/
/* お知らせグループ管理    */
/*-------------------------*/
.infoGroupManagementCreateButton {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.infoGroupManagementCreate {
  width: 120px;
  height: 20px;
}

.infoGroupManagementCreate:hover {
  cursor: pointer;
  border: var(--border);
}

.infoGroupManagement .table .cellBlock {
  padding: 5px;
  box-sizing: border-box;
}

.infoGroupManagement .table .cellBlock:nth-child(1) {
  flex: 1;
}

.infoGroupManagement .table .cellBlock:nth-child(2) {
  width: 700px;
  display: flex;
  flex-flow: column;
}

.infoGroupManagement .table .cellBlock:nth-child(3) {
  width: 150px;
}

.infoGroupManagement .table .cellBlock:nth-child(4) {
  width: 80px;
}

.infoGroupManagement .table .cellBlock:nth-child(5) {
  width: 80px;
  text-align: center;
}

@media screen and (max-width: 1530px) {

  .infoGroupManagement .tableHeader .cellBlock:nth-child(2),
  .infoGroupManagement .tableRow .cellBlock:nth-child(2) {
    display: none;
  }

  .infoGroupManagement .tableHeader .cellBlock:nth-child(3),
  .infoGroupManagement .tableRow .cellBlock:nth-child(3) {
    display: none;
  }
}
