body {
/*  font-family: 'Poppins', sans-serif; */
    font-family: "M PLUS Rounded 1c";
    background: #fafafa;
    /* transform: rotate(0.05deg); これ入れるとモーダル上部固定で出てしまう */
}

p {
    font-size: 1.1em;
    color: #777777;
}

p.error {
    color: var(--err-col);
}

.warnTxt {
    color: var(--err-col) !important;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--line-col);
    margin: 20px 0;
}

.container {
    padding: 20px;
}

.row-hover:hover div{
  background: #AACCAA;
}

.ns-th {
    color: var(--white-outline);
    background: var(--second-light-col);
    border: 1px solid var(--white-outline);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
    word-break: break-word;
}

.ns-th.fs90 {
    font-size: 90%;
}

.ns-th.fs80 {
    font-size: 80%;
}

.ns-td {
    color: var(--primary-dark-col);
    background: var(--third--light-col);
    border: 1px solid var(--white-outline);
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
    word-break: break-word;
}

.ns-td.fs90 {
    font-size: 90%;
}

.ns-td.fs80 {
    font-size: 80%;
}

.ns-td.fs75 {
    font-size: 75%;
}

.ns-td.ns-r {
    justify-content: flex-end;
}

.ns-td.ns-rt {
    justify-content: flex-end;
    align-items: flex-start !important;
}

/* カレンダー */
.ns-th.calendar{
  font-weight: bold;
}

.ns-td.calendar{
  height: 110px;
}

.ns-td.calendar.weekday {	/*平日*/
  background: var(--white-outline);
}

.ns-th.calendar.saturday,	/*土曜日*/
.ns-td.calendar.saturday {
  background: var(--cal-sat-col);
}

.ns-th.calendar.sunday,	/*日曜日*/
.ns-td.calendar.sunday {
  background: var(--cal-sun-col);
}

.ns-th.calendar.saturday label,
.ns-td.calendar.saturday label {
  color: var(--cal-sat-bgc);
}

.ns-th.calendar.sunday label,
.ns-td.calendar.sunday label {
  color: var(--cal-sun-bgc);
}


.ns-td.calendar a.link {
  color: var(--cal-link-col);
}
/* カレンダーおわり */

.ns-td.decide
,.decide .ns-td
, .table td.decide
, .table .decide td {
  color: var(--tab-decide-txt-col);
  background: var(--tab-decide-bgc);
}

.ns-td.important
,.important .ns-td
, .table td.important
, .table .important td {
  color: var(--tab-imp-txt-col);
  background: var(--tab-imp-bgc);
}

.ns-td.emergency
,.emergency .ns-td
, .table td.emergency
, .table .emergency td {
  color: var(--tab-emerg-txt-col);
  background: var(--tab-emerg-bgc);
}

.ns-td.finish
,.finish .ns-td
, .table td.finish
, .table .finish td {
  color: var(--tab-fin-txt-col);
  background: var(--tab-fin-bgc);
}

.table td a
, .ns-td a {
    color: var(--link-col);
    text-decoration:underline;
    text-decoration-color: transparent;
}

.table td a:hover
, .ns-td a:hover {
    color: var(--link-hov-col);
    text-decoration:underline;
    text-decoration-color: var(--link-col);
}

.ns-scroll {
    overflow-x: scroll;
}

.table th {
    padding: 10px;
    white-space: nowrap;
    color: var(--white-outline);
    background: var(--second-light-col);
    text-align: center;
    border: 2px solid white;
    font-weight:normal;
}

.table td {
  padding: 10px;
  white-space: nowrap;
  color: var(--second-light-col);
  background: var(--third--light-col);
  border: 2px solid white;
}

.table-responsive table th {
    border: none;
}

.table-responsive table td {
    border: none;
}

dl dt a[aria-expanded] {
    font-size: 0.8em;
    background: -moz-linear-gradient(top,#FFF 0%,#EEE);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
    border: 2px solid var(--fourth-dark-col);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: var(--second-dark-col);
    padding: 0 0.1em;
    margin-right:0.2em;
}
dl dt a[aria-expanded="true"]:before {
    content: "－"
}
dl dt a[aria-expanded="false"]:before {
    content: "＋"
}

dl dd > div.row
, dl dd > div.form-row {
  margin-left: 0;
  margin-right: 0;
}

dl dd.border {
    padding: 0.5em;
}

#page-animate::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:var(--white-outline);  /* 背景カラー */
    z-index: 9999;  /* 一番手前に */
    pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
    opacity: 0;  /* 初期値 : 透過状態 */
    -webkit-transition: opacity .25s ease;  /* アニメーション時間は 0.8秒 */
    transition: opacity .25s ease;
}

 #page-animate.is-slide::after {
    opacity: 1;
}

.progressIcon {
    width: 70px;
    height: 56px;
}

table.ex_table th.ex_border_a {
    border-bottom: 3px solid;
}

/** 【汎用メンテナンス】使用部分*/
.maintenance-tableWidth{
    width: 100%;
}

.maintenance-tableHeight{
    height: 550px
}

/* エラー行表示用スタイル */
.row-error .ns-td {
  color: var(--white-back);
  background: var(--err-col);
}

/* td内の多重表示用スタイル */
label.label-full-width {
  width: 100%;
}

label.label-full-width > .right-align {
  display: block;
  text-align: right;
}

label.label-full-width > .left-align {
  display: block;
  text-align: left;
}
