/* 連絡ノート管理画面用スタイル
 *--------------------------------------------------
 *
 * ブラウザスタイルリセット
 * 共通スタイル
 * フォーム要素
 * マージン
 * ワイズ
 * ナビゲーション
 * ヘッダ-
 * 検索エリア
 * エラーエリア
 * コンテンツエリア
 * フッター
 * 入力フォーム
 * ボタン
 * ポップアップメッセージ
 * ログイン
 * メニュー
 * 配送状況一覧（支所センター・コース選択）
 * 配送状況一覧（コース）
 * 配送状況一覧（班明細）
 * 個別訂正（結果）
 * 個別訂正（編集）
 * ToDoリスト（検索）
 * ToDoリスト（新規登録）
 * ToDoリスト（編集）
 * 連絡事項（検索）
 * 連絡事項（新規登録）
 * 連絡事項（編集）
 * エラー
 * 画面サイズ別CSS
 *
 */

/* ブラウザスタイルリセット
-------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc8c8;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* 共通スタイル
-------------------------------------------------- */

* {
  font-family: "游ゴシック体", YuGothic, Meiryo, "メイリオ", Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  background-color: #eff1f4;
  color: #343a40;
  font-size: 1.4em;
  font-family: "游ゴシック体", YuGothic, Meiryo, "メイリオ", Osaka, "MS PGothic", arial, helvetica, sans-serif;
  line-height: 1.6;
}

.kanriBodyBgcolor {
  background-color: #eaffea;
}

.wrap {
  margin: 30px 0 110px 0;
}

div {
  box-sizing: border-box;
}

a {
  text-decoration: underline;
  color: #3498db;
}

a:hover {
  text-decoration: none;
}

a:visited {
  color: #6744db;
}

.inner {
  width: 96%;
  margin: 0 auto;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.hide {
  display: none !important;
}

/* フォーム要素
-------------------------------------------------- */

label {
  padding: 0 10px 0 0;
  font-weight: bold;
}

label span {
  color: #ff3166;
  padding: 0 0 0 5px !important;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"] {
  font-size: 1em;
  height: 30px;
  padding: 0 8px;
  border: 1px solid #ccc8c8;
  color: #343a40;
  border-radius: 2px;
  width: 110px;
  background: #fff;
}

input[type="file"] {
  font-size: 1em;
  height: 30px;
  border: 1px solid #ccc8c8;
  color: #343a40;
  border-radius: 2px;
  width: 500px;
  background: #fff;
}


.input-box.calendar input {
  background: #fff url("../images/icon_calendar_gray.png") 95% 50% no-repeat;
  background-size: 16px auto;
}

.input-box.time input {
  width: 60px;
  background: #fff url("../images/icon_time_gray.png") 95% 50% no-repeat;
  background-size: 16px auto;
}

.input-box.title {
  width: 100%;
}

.input-box.title input {
  width: 98%;
}

textarea {
  font-size: 1em;
  padding: 8px;
  border-radius: 2px;
  border: 1px solid #ccc8c8;
  width: 98%;
  height: 250px;
  box-sizing: border-box;
}

.radio-box input[type="radio"] {
  display: none;
}

.radio-box label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 20px;
  cursor: pointer;
}

.radio-box label::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -9px;
  background: #fff;
  border: 1px solid #ccc8c8;
  border-radius: 100%;
}

.radio-box input[type="radio"]:disabled:not(:checked) + label::before {
  background: #d3d3d3;
  border-color: #ccc8c8;
}

.radio-box input[type="radio"]:checked+label::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  background: #3498db;
  border-radius: 100%;
}

.radio-box input[type="radio"]:disabled:checked+label::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  background: lightgray;
  border-radius: 100%;
}

.check-box input[type="checkbox"] {
  display: none;
}

.check-box label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 22px;
  cursor: pointer;
}

.check-box label::before,
.check-box label::after {
  position: absolute;
  content: '';
}

.check-box label::before {
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid #ccc8c8;
  border-radius: 3px;
}

.check-box label::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid #3498db;
  border-bottom: 2px solid #3498db;
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
}

.check-box input[type="checkbox"]:checked+label::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

.select-box select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: #fff;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 32px;
  padding: 5px 8px;
  border: 1px solid #ccc8c8;
  color: #343a40;
  width: 127px;
  border-radius: 2px;
  background: #fff url("../images/icon_carat_d_gray.png") 95% 50% no-repeat;
  background-size: 14px auto;
}

/** ページング */
.paging-box select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: #ffffff;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 32px;
  padding: 5px 8px;
  border: 1px solid #ccc8c8;
  color: #343a40;
  width: 72px;
  border-radius: 2px;
  background: #fff url("../images/icon_carat_d_gray.png") 95% 50% no-repeat;
  background-size: 14px auto;
}
.paging-box a {
    color: cornflowerblue;
    text-decoration: none;
    font-weight:bold ;
    margin: 5px;
}

.select-multiple-box {
  display: inline-block;
}

.select-multiple-box select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: #fff;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 150px;
  border: 1px solid #ccc8c8;
  color: #343a40;
  width: 167px;
  border-radius: 2px;
  line-height: 1.6;
}

.select-multiple-box select option {
  border-bottom: 1px solid #ccc8c8;
/*  display: inline-block;*/
  line-height: 1.6;
}

.ms-container {
  margin: 10px 0 0;
}

input[type="text"]:read-only,
input[type="textarea"]:read-only,
textarea:read-only
{
  background-color: lightgray;
}

:disabled {
  background-color: lightgray !important;
}

.error-style {
  border: 1px solid #c35156 !important;
  background-color: #ffe3e4 !important;
}

/* IE */

input::-ms-clear,
input::-ms-reveal {
  visibility: hidden;
}

select::-ms-expand {
  display: none;
}

/* tooltip */

.tooltip {
  background: url("../images/icon_info_gray.png") right center no-repeat;
  background-size: 18px auto;
  padding: 0 20px 0 0;
  margin: 0 10px 0 0;
}

.ui-input {
  background: #444 !important;
  color: #fff !important;
  border: none !important;
  padding: 5px 10px !important;
}

/* マージン
-------------------------------------------------- */

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.mr60 {
  margin-right: 60px;
}

.mr70 {
  margin-right: 70px;
}

.mr80 {
  margin-right: 80px;
}

.mr90 {
  margin-right: 90px;
}

.mr166 {
  margin-right: 166px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.ml60 {
  margin-left: 60px;
}

.ml70 {
  margin-left: 70px;
}

.ml80 {
  margin-left: 80px;
}

.ml90 {
  margin-left: 90px;
}

.ml112 {
  margin-left: 112px;
}

.ml360 {
  margin-left: 360px;
}

.ml765 {
  margin-left: 765px;
}

.ml900 {
  margin-left: 900px;
}

/* ワイズ
-------------------------------------------------- */

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w100 {
  width: 100px;
}

.w110 {
  width: 110px;
}

.w120 {
  width: 120px;
}

.w130 {
  width: 130px;
}

.w140 {
  width: 140px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.ib {
    display: inline-block;
}

/* 入力項目サイズ
-------------------------------------------------- */
input.renraku-note-id {
    width: 180px;
}

input.kenmei {
    width: 500px;
}

input.key-word {
    width: 500px;
}

input.datetime {
    width: 180px;
}

input.uuid {
    width: 300px;
}

input.push-csv {
    width: 600px;
}

input.csv-download {
    margin: 5px 0;
    width: 120px !important;
}

input.kohoBunshoKeyword {
    width: 100%;
    padding-right: 0;
    box-sizing: border-box;
}

input.kohoBunsho {
    width: 800px;
}

input.hokanKikanNum {
    width: 130px;
}

textarea.push-message {
    height: calc(1.3em * 4);
    line-height: 1.3;
}

textarea.oshirase-message {
    height: calc(1.3em * 4);
    line-height: 1.3;
}

textarea.tantosha-memo {
    height: calc(1.3em * 5);
    line-height: 1.3;
}

textarea.toiawase-chat-input {
    height: calc(1.3em * 5);
    width: 100%;
    line-height: 1.3;
}

textarea.chat-kenmei-input {
    width: 300px;
    height: calc(1.3em * 3);
    line-height: 1.3;
}

input.toiawase-shubetsu, select.toiawase-shubetsu {
    width: 300px;
}

select.tantosha {
    width: 200px;
}

select.my-tempo {
    width: 200px;
    height: 90px;
}

select.message-rireki {
    width: 260px;
}

select.my-tempo-search {
    width: 200px;
    height: 70px;
}

select.chat-candidate-input {
    width: 600px;
}

select.hokan-kikan-name {
    width: 234px;
}

select.hokan-kikan-kanri1 {
    width: 148px;
}

div.valign-top {
    vertical-align: top;
}

/* ナビゲーション
-------------------------------------------------- */

.navi {
  padding: 10px 0 8px;
  background: rgba(52, 58, 64, 0.8);
  color: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
}

.navi ul {
  display: table;
  width: 100%;
}

.navi ul li {
  display: table-cell;
  width: 50%;
}

.navi ul li a {
  background: url("../images/icon_carat_l_white.png") 0 5px no-repeat;
  background-size: 10px 10px;
  color: #fff;
  padding: 0 0 0 15px;
  display: inline-block;
}

.navi ul li:last-child {
  text-align: right;
}

.navi ul li span {
  font-weight: bold;
  padding: 0 1.5em 0;
}

/* ヘッダー
-------------------------------------------------- */

.header {
  padding: 30px 0 0;
  line-height: 1.2;
}

.header .inner {
  display: table;
}

.header .inner div {
  display: table-cell;
}

.header .inner div h1 {
  font-size: 2em;
}

.header .inner div h1 span {
  font-size: .7em;
  margin: 0 0 0 -5px;
}

.header .inner div p {
  padding: 5px 0 0;
}

.header .inner div.btn-box {
  text-align: right;
  vertical-align: middle;
}

/* 検索エリア
-------------------------------------------------- */

.search-box {
  margin: 30px 0 0 0;
}

.search-box .inner {
  background: #fff;
  border: 1px solid #ccc8c8;
  padding: 15px;
  position: relative;
}

.search-box .inner div {
  display: inline-block;
  margin-top: 15px;
}

.search-box .inner h2 {
  border-bottom: 1px solid #ccc8c8;
  padding: 0 0 15px;
  font-size: 1.1em;
  line-height: 1;
}

.search-box .inner span {
  display: inline-block;
  padding: 0 .8em;
}

.search-box .inner .btn-box {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.search-box .inner .clarification {
  background: #f8f8f8;
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  padding: 10px;
}

.search-box .inner .clarification dl {}

.search-box .inner .clarification dl dt {
  font-weight: bold;
}

.search-box .inner .clarification dl dd {}

/* 最新情報表示エリア
-------------------------------------------------- */

.reload-box {
  margin: 30px 0 0 0;
}

.reload-box .inner {
  padding: 15px;
  position: relative;
}

.reload-box .inner div {
  display: inline-block;
  margin-top: 15px;
}

.reload-box .inner h2 {
  border-bottom: 1px solid #ccc8c8;
  padding: 0 0 15px;
  font-size: 1.1em;
  line-height: 1;
}

.reload-box .inner span {
  display: inline-block;
  padding: 0 .8em;
}

.reload-box .inner .btn-box {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.search-box .inner .clarification {
  background: #f8f8f8;
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  padding: 10px;
}

.search-box .inner .clarification dl {}

.search-box .inner .clarification dl dt {
  font-weight: bold;
}

.search-box .inner .clarification dl dd {}


/* メッセージエリア
-------------------------------------------------- */

.message-box {
  margin: 30px 0 0 0;
}

.message-box .inner {
  background: #6060c0;
  color: #ffffff;
  padding: 10px 20px 12px;
}

.message-box .inner ul {
/*  background: url("../images/icon_alert_white.png") left center no-repeat;*/
  background-size: 35px 35px;
  padding: 5px 0 5px 50px;
  display: inline-block;
}

.message-box .inner ul li {
  font-weight: bold;
  text-align: left;
}


/* エラーエリア
-------------------------------------------------- */

.error-box {
  margin: 30px 0 0 0;
}

.error-box .inner {
  background: #c35156;
  color: #fff;
  padding: 10px 20px 12px;
}

.error-box .inner ul {
  background: url("../images/icon_alert_white.png") left center no-repeat;
  background-size: 35px 35px;
  padding: 5px 0 5px 50px;
  display: inline-block;
}

.error-box .inner ul li {
  font-weight: bold;
  text-align: left;
}

/* コンテンツエリア
-------------------------------------------------- */

.contents-box {
  margin: 30px 0 0 0;
}

.contents-box .inner .lead-text {
  padding: 0 0 10px;
  float: left;
}

.contents-box .inner .note {
  float: right;
  font-size: .8em;
  padding: 0 0 5px;
}

.contents-box .inner table {
  clear: both;
  width: 100%;
}

.contents-box .inner table .check-box label {
  padding: 3px 3px 3px 14px;
}

.contents-box .inner table thead {}

.contents-box .inner table tbody {}

.contents-box .inner table thead th {
  background: #4475c9;
  color: #fff;
  padding: 8px 5px 7px;
  text-align: center;
  border: 1px solid #ccc8c8;
  vertical-align: middle;
  line-height: 1.2;
  white-space: nowrap;
}

.contents-box .inner table thead th .break {
  display: none;
}

.contents-box .inner table tbody td {
  padding: 5px;
  border: 1px solid #ccc8c8;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}

.contents-box .inner table tbody td input {
  width: 60px;
}

.contents-box .inner table tbody td select {
  width: 110px;
}

.contents-box .inner table thead th span,
.contents-box .inner table tbody td span {
  display: block;
  font-size: 0.9em;
}

.contents-box .inner table tbody tr {
  background: #fff;
}

/*
.contents-box .inner table tbody tr:nth-child(odd) {
  background: #f7f7f7;
}
*/
.contents-box .inner table tbody tr.checked {
  background: #bfe8a5;
}

.contents-box .inner table tbody td.checked {
  background: #bfe8a5;
}

.contents-box .inner table .joint {
  border-right: none !important;
  border-left: none !important;
}

.contents-box .inner table thead th:last-child,
.contents-box .inner table tbody td:last-child {
  border-right: 1px solid #ccc8c8 !important;
}

/*	先週分の背景色は変える	*/
.senshuu	{
  background: #f7f7f7;

}


/* フッター
-------------------------------------------------- */

.footer {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  background: rgba(52, 58, 64, 0.8);
  z-index: 60;
}

.footer .inner {
  padding: 20px 0;
}

.footer .inner .btn-box ul {
  display: table;
  width: 100%;
}

.footer .inner .btn-box ul li {
  display: table-cell;
  width: 50%;
}

.footer .inner .btn-box ul li:last-child {
  text-align: right;
}


/* 問い合わせ・チャット内容 */
dl.toiawase-chat {
    overflow: auto;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
}

dl.toiawase-area {

    height: 300px;
}

dl.toiawase-chat.chat-area {
    height: 345px;
    padding-top: 0;
}

dl.toiawase-chat {
    overflow: auto;
    height: 300px;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
}

dl.toiawase-chat dt {
    float: left;
    clear: both;
    padding: 2px 0 2px 5px;
    margin: 1px;
}
dl.toiawase-chat dd {
    padding: 2px 5px 2px 0;
    margin: 1px;
}
dl.toiawase-chat dd.kumiaiin-head {
    background-color:darkseagreen;
    text-align: right;
}
dl.toiawase-chat dt.kumiaiin-head {
}
dl.toiawase-chat dd.tantosha-head {
    background-color: darksalmon;
    text-align: right;
}
dl.toiawase-chat dt.tantosha-head {
}
dl.toiawase-chat dd.kumiaiin-body {
    margin-left: 15px;
}
dl.toiawase-chat dt.kumiaiin-body {
}
dl.toiawase-chat dd.tantosha-body {
    margin-left: 15px;
}
dl.toiawase-chat dt.tantosha-body {
}
span.toiawase-chat-kidoku {
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}
div.chat-subject {
    font-size: 14px;
    font-weight: bold;
}
div.chat-candidate {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}
div.chat-candidate input {
    width: 500px;
}

.chat-inner-left {
  flex-grow: 5;
  margin: 0 0 0 2%;
  width:100%;
  min-width: 712.5px;
}

.chat-inner-left-fill {
  height: 49px;
}

.chat-inner-right {
  flex-grow: 1;
  margin: 0 2% 0 7.5px;
  min-width: 500px;
}

dd.kumiaiin-body, dd.tantosha-body {
	overflow-wrap: anywhere;
}

/* 入力フォーム
-------------------------------------------------- */

.input {}

.input .inner {
  width: 60%;
  margin: 0 0 0 2%;
}

/* 左右分割 */
.inner-left {
  width: 50%;
  margin: 0 0 0 2%;
}
.inner-right {
  width: 50%;
  margin: 0 2% 0 0;
}

.input dl {
  border-top: 1px solid #e4e4e4;
  padding: 15px 0 0;
}

.input dl div {
  display: inline-block;
}

/*.input dl dt {*/
dl.info-edit dt {
  float: left;
  font-weight: bold;
  clear: both;
  padding: 0 0 0 10px;
}

.input dl dt.form-label {
  padding: 5px 0 0 10px;
}

.input dl dt span {
  font-size: 0.9em;
  display: block;
}

/* 編集・登録用入力項目 */
dl.info-edit dd {
  padding: 0 5px 5px 170px;
  margin: 0 0 0 0;
/*  border-bottom: 1px solid #e4e4e4;*/
}

.input dl dd .tilde {
  padding: 0 1em;
}

.input dl dd input[type="button"] {
  padding: 4px 0;
  width: 70px;
  box-shadow: 0 2px #24519f;
}

.input dl dd.tbl-box {}

.input .btn-box {
  width: 100%;
  text-align: right;
}

input.readonly {
    background-color: lightgray;
}

select.readonly {
    background-color: lightgray;
}

textarea.readonly {
    background-color: lightgray;
}

/* ボタン
-------------------------------------------------- */

.btn-box {}

.btn-box ul {
  margin: 0 0 0 -10px;
}

.btn-box ul li {
  display: inline-block;
  padding: 0 0 0 10px;
}

.btn-box ul li:last-child {}

.btn {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 3px;
  font-weight: 700;
  outline: none;
  border-radius: 3px;
  width: 130px;
  padding: 10px 0 8px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btnShosaiClear {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 3px;
  font-weight: 700;
  outline: none;
  border-radius: 3px;
  width: auto;
  padding: 10px 10px 8px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btnMishonin {
  border: none;
  font-family: inherit;
  font-size: 75%;
  color: inherit;
  background: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 3px;
  font-weight: 700;
  outline: none;
  border-radius: 3px;
  width: 42px;
  padding: 2px 0 0px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btnTantoshaRireki {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 3px;
  font-weight: 700;
  outline: none;
  border-radius: 3px;
  width: 78px;
  padding: 2px 0 0px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-logout {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  outline: none;
  border-radius: 3px;
  margin-left: 10px;
  padding: 3px 5px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* blue */

.btn-blue {
  background: #4475c9;
  color: #fff;
  box-shadow: 0 4px #24519f;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.btn-blue:hover {
  box-shadow: 0 4px #24519f;
  top: 2px;
}

/* gray */

.btn-gray {
  background: #b5bac4;
  color: #fff;
  box-shadow: 0 4px #888c94;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.btn-gray:hover {
  box-shadow: 0 4px #888c94;
  top: 2px;
}

/* red */

.btn-red {
  background: #c96344;
  color: #fff;
  box-shadow: 0 4px #9f3c1d;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.btn-red:hover {
  box-shadow: 0 4px #9f3c1d;
  top: 2px;
}

/* orange */

.btn-orange {
  background: #cb5312;
  color: #fff;
  box-shadow: 0 4px #81350c;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.btn-orange:hover {
  box-shadow: 0 4px #81350c;
  top: 2px;
}

/* ポップアップメッセージ
-------------------------------------------------- */

/* オーバーレイ */

.ui-widget-overlay {
  background: #000 !important;
  opacity: .4 !important;
  filter: Alpha(Opacity=40);
}

/* ダイアログ */

.ui-dialog {
  padding: 0 !important;
}

.ui-dialog.ui-widget-content,
.ui-dialog .ui-widget-content {
  border: none !important;
}

.ui-dialog .ui-dialog-content {
  padding: 2.5em 2.5em 0 2.5em !important;
  font-size: 1.2em;
}

.ui-dialog #pop-toast.ui-dialog-content {
  padding: 2.5em 2.5em 2.5em 2.5em !important;
}

.ui-dialog .ui-dialog-titlebar {
  border: none;
  border-radius: 0;
  color: #fff;
  width: 100% !important;
  font-size: 1.8em;
  text-align: center;
}

.pop-error.ui-dialog .ui-dialog-titlebar {
  background: #fd2929 !important;
}

.pop-infomation.ui-dialog .ui-dialog-titlebar {
  background: #4784f3 !important;
}

.pop-tost.ui-dialog .ui-dialog-titlebar {
  background: #fff !important;
  display: none;
}

.ui-dialog .ui-dialog-title {
  float: none !important;
}

/* .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  text-align: center !important;
  float: none !important
} */

/* ログイン
-------------------------------------------------- */

.wrap.login {
  margin: 100px 0 0;
}

.login .header .inner {
  width: 380px;
  margin: 0 auto;
}

.login .header .inner h1 {
  text-align: center;
}

.login .header .inner p {
  line-height: 1.6;
  text-align: center;
  padding: 15px 0 0;
}

.login .contents-box {
  margin: 20px 0 0;
}

.login .contents-box .inner {
  background: #fff;
  width: 380px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #ccc8c8;
}

.login .contents-box .inner input[type="text"],
.login .contents-box .inner input[type="password"] {
  width: 95%;
}

.login .contents-box .inner dl {}

.login .contents-box .inner dl dt {
  padding: 0 0 5px;
}

.login .contents-box .inner dl dd {
  padding: 0 0 20px;
}

.login .contents-box .inner .btn-box {
  text-align: center;
}

/* メニュー
-------------------------------------------------- */

.wrap.menu {
  margin: 30px 0 30px 0;
}

.menu .header .inner {
  width: 980px;
}

.menu .contents-box {}

.menu .contents-box .inner {
  width: 980px;
  border: 1px solid #ccc;
  background: #fff;
  display: table;
}

.menu .contents-box .inner div {
  display: table-cell;
  width: 32%;
  padding: 30px;
  text-align: center;
}

.menu .contents-box .inner div h2 {
  font-size: 1.6em;
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  letter-spacing: .5em;
}

.menu .contents-box .inner div ul {}

.menu .contents-box .inner div ul li {
  padding: 0 0 20px 0;
}

.menu .contents-box .inner div ul li input {
  width: 100%;
  font-size: 1.6em;
  padding: 20px 0;
/*  background: #4475c9 url("../images/icon_carat_r_white.png") 96% 50% no-repeat;*/
  background-size: 13px;
}


/* ページング
-------------------------------------------------- */
.current-page {
  font-weight: bold;
  margin: 0 5px;
  font-size: 100%;
}

/* 問い合わせ対応（検索）
-------------------------------------------------- */

.wrap.toiawase-kensaku {
}

.toiawase-kensaku .contents-box .inner table {
  table-layout: fixed;
}

.toiawase-kensaku .contents-box .inner table td {}

.toiawase-kensaku .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.toiawase-kensaku .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.toiawase-kensaku .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

/* チャット対応（検索）
-------------------------------------------------- */

.wrap.chat-kensaku {
}

.chat-kensaku .contents-box .inner table {
  table-layout: fixed;
}

.chat-kensaku .contents-box .inner table td {}

.chat-kensaku .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.chat-kensaku .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.chat-kensaku .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

.chat-kensaku .contents-box .inner table .kidokuStyle {
  padding:8px 2px 7px;
}

.chat-kensaku .contents-box .inner table input[type=checkbox] {
  width:30px;
}

.chat-kensaku .file-dl-btn {
  width:110px;
  padding: 4px 0 0;
}

.chat-kensaku .file-dl-box {
  width:300px;
  align:left;
  display:flex;
  padding:0 0 8px;
}

.chat-kensaku .paging-box {
  margin-right:0;
  margin-left:auto;
}

/* お知らせ管理（検索）
-------------------------------------------------- */

.wrap.oshirase-kensaku {
}

.oshirase-kensaku .contents-box .inner table {
  table-layout: fixed;
}

.oshirase-kensaku .contents-box .inner table td {}

.oshirase-kensaku .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.oshirase-kensaku .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.oshirase-kensaku .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

.oshirase-kensaku .paging-box {
  margin-right:0;
  margin-left:auto;
}

/* 候補文章管理（検索）
-------------------------------------------------- */

.wrap.kohoBunsho-kensaku {
}

.kohoBunsho-kensaku .contents-box .inner table {
    table-layout: fixed;
}

.kohoBunsho-kensaku .contents-box .inner table td {
}

.kohoBunsho-kensaku .contents-box .inner table td.text-left {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
}

.kohoBunsho-kensaku .contents-box .inner table td.text-center {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

.kohoBunsho-kensaku .contents-box .inner table td.text-right {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: right;
}

.kohoBunsho-kensaku .contents-box .inner span {
    font-size: 14px;
}

.kohoBunsho-kensaku .paging-box {
  margin-right:0;
  margin-left:auto;
}

.info-edit.kohoBunsho dd {
  padding-right: 0px;
}

/* 問い合わせ対応（詳細）
-------------------------------------------------- */

.wrap.toiawase-shosai {
}

.toiawase-henshu .contents-box .inner table {
  table-layout: fixed;
}

.toiawase-henshu .contents-box .inner table td {}

.toiawase-henshu .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.toiawase-henshu .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.toiawase-henshu .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

/* 問い合わせ対応（登録）
-------------------------------------------------- */

.wrap.toiawase-toroku {
}

.toiawase-toroku .contents-box .inner table {
  table-layout: fixed;
}

.toiawase-toroku .contents-box .inner table td {}

.toiawase-toroku .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.toiawase-toroku .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.toiawase-toroku .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}


/* チャット対応（詳細）
-------------------------------------------------- */

.wrap.chat-shosai {
}

.chat-henshu .contents-box .inner table {
  table-layout: fixed;
}

.chat-shosai .tantosha-rireki{}

.chat-shosai .tantosha-rireki .inner{
  width: 100%;
  margin: 4px 0 0 0;
}

.chat-shosai .tantosha-rireki .inner table thead th {
  padding: 5px 5px 2px;
}

.chat-shosai .tantosha-rireki .inner table tbody td {
  padding: 2px;
}

.chat-shosai .tantosha-rireki .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.kohoBunsho table {
    table-layout: fixed;
}

.chat-shosai .kohoBunsho {}

.chat-shosai .kohoBunsho .inner {
    width: 100%;
    margin: 4px 0 0 0;
}

.chat-shosai .kohoBunsho .inner table thead th {
    padding: 5px 5px 2px;
}

.chat-shosai .kohoBunsho .inner table tbody td {
    padding: 2px;
}

.chat-shosai .kohoBunsho .inner table td.text-left {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: right;
}
.chat-shosai .kohoBunsho .inner table td.text-center {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
}

.chat-shosai .kohoBunsho .inner table td.text-right {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
}

.chat-shosai .kohoBunsho .inner table tr:hover td {
    cursor: pointer;
    background-color: aliceblue;
}

.chat-henshu .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.chat-henshu .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.chat-henshu .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

div.kohoBunshoSearch.input-box {
  display: inline-block;
  width: 100%;
}

.chat-shosai .dengon {}

textarea.dengon-input {
    width: calc(100% - 15px);
    height: calc(1.3em * 5);
    line-height: 1.3;
    margin: 5px 5px;
    padding: 5px;
    box-sizing: border-box;
}

.dengon .inner {
    width: 100%;
    margin: 4px 0 0 0;
    padding: 5px 10px 5px 5px;
    overflow-x: hidden;
}

.dengon .inner table thead th {
    padding: 5px 5px 2px;
}

.dengon .inner table tbody td {
    padding: 2px;
}

.dengon .inner table td.text-left {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    max-width: 0;
}

.dengon .inner table td.text-center {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

.dengon .inner table tr:hover td {
    cursor: pointer;
    background-color: aliceblue;
}

.modal_pop{
    width: 100vw;
    height: 100vh;
    position:fixed;
    top: 0;
    left:0;
    z-index:9997!important;
    max-width: 100%;
    object-fit: scale-down;
}
.bg{
    width: 100%;
    height: 100%;
    position:fixed;
    z-index:9998!important;
}
.modal_pop img{
    background-color: #1119;
    width: 80vw;
    height:80vh;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index:9999!important;
    object-fit: scale-down;
}

.chat_shosai_img{
  max-height: 120px;
  max-width: 100%;
  object-fit: scale-down;
}

.chat-shosai .file-dl-btn {
  border: none;
  font-size: inherit;
  cursor: pointer;
  letter-spacing: 3px;
  font-weight: 700;
  border-radius: 3px;
  width: 110px;
  padding: 2px 0 0px;
  position: relative;
  margin-left: auto;
}

.chat-shosai input[type="file"] {
    width: 290px;
    height: 27px;
}

.chat-shosai .temp-sakujo-btn-img {
    outline:solid 1px gray;
	padding: 0 4px 0 4px;
    height: 24px;
    margin: 0 0 0 0;
    vertical-align: middle;
    opacity: 0.5;
}

.chat-shosai .temp-preview-btn-img {
    outline:solid 1px gray;
	padding: 0 4px 0 4px;
    height: 24px;
    margin: 0 -1px 0 0;
    vertical-align: middle;
    opacity: 0.5;
}

.chat-shosai .temp-gazo-select-btn {
	padding: 0 4px 0 4px;
}

.chat-shosai .temp-gazo-file-name {
    display: inline-block;
	padding: 0 4px 0 0;
	width: 196px;
}

/* お知らせ管理（登録）
-------------------------------------------------- */

.wrap.oshirase-toroku {
}

.oshirase-toroku .contents-box .inner table {
  table-layout: fixed;
}

.oshirase-toroku .contents-box .inner table td {}

.oshirase-toroku .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.oshirase-toroku .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.oshirase-toroku .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

/* お知らせ管理（定期）
-------------------------------------------------- */

.wrap.teiki-oshirase {
  width: 1263px;
}

.teiki-oshirase .contents-box .inner table {
  table-layout: fixed;
}

.teiki-oshirase .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.teiki-oshirase .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.teiki-oshirase .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

.teiki-oshirase .ml-btn {
  margin-left: 0px;
}

.teiki-oshirase .disp-btn .btn {
  padding: 4px 0 2px;
  width: 100px;
}

.teiki-oshirase .disp-btn-dd {
  padding: 0 5px 14px 170px;
}



.teiki-oshirase .ml-btn {
  margin-left: 0px;
}

.teiki-oshirase .disp-btn .btn {
  padding: 4px 0 2px;
  width: 100px;
}

.teiki-oshirase .disp-btn-dd {
  padding: 0 5px 14px 170px;
}

.teiki-oshirase .btn {
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 3px;
  font-weight: 700;
  outline: none;
  border-radius: 3px;
  width: 80px;
  padding: 4px 0 2px;
  position: relative;
}

.teiki-oshirase .contents-box {
    margin: 20px 0 0 0;
}

.teiki-oshirase .oshirase-kanri-name-list {
  width:100%;
  border: 1px solid #ccc8c8;
  font-size: inherit;
  color: inherit;
}

.teiki-oshirase .teikeibun-select-list {
  width:101%;
  border: 1px solid #ccc8c8;
  font-size: inherit;
  color: inherit;
}

.teiki-oshirase .select-oshirase-kanri-name-list select option {
  border-bottom: 1px solid #ccc8c8;
  line-height: 1.6;
}

.teiki-oshirase .select-oshirase-kanri-name-list.ex-width {
  width: 101%;
}

.teiki-oshirase .btn-box.ex-align-left {
  text-align: left;
}

.teiki-oshirase .btn.ex-customize {
  width: 80px;
  box-shadow: none;
}

.teiki-oshirase .calendar.calender-width {
  width: 140px;
}

.teiki-oshirase .time.time-width {
  width: 100px;
}

.teiki-oshirase .higotoSettei-width {
  width: 60px;
}

.teiki-oshirase .text-center{
  padding:6px 0;
}

.teiki-oshirase .search-and-btn-field {
  display:flex;
}

.teiki-oshirase .oshirase-kanri-mode-btn {
  margin-left:auto;
}

.teiki-oshirase .oshirase-kanri-search-input {
  width:200px;
}

.teiki-oshirase .dd-inner {
  width:100%;
}

.teiki-oshirase .input-area {
  width:100%;
  padding:0 2px;
}

.teiki-oshirase .btn.cancel {
  width: 100px;
}


/* 定型文管理
-------------------------------------------------- */

.wrap.teikeibun-kanri {
  width: 1263px;
}

.teikeibun-kanri .ml-btn {
  margin-left: 0px;
}

.teikeibun-kanri .disp-btn .btn {
  padding: 4px 0 2px;
  width: 100px;
}

.teikeibun-kanri .disp-btn-dd {
  padding: 0 5px 14px 170px;
}

.teikeibun-kanri .btn {
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 3px;
  font-weight: 700;
  outline: none;
  border-radius: 3px;
  width: 80px;
  padding: 4px 0 2px;
  position: relative;
}

.teikeibun-kanri .btn.cancel {
  width: 100px;
}

.teikeibun-kanri .contents-box {
    margin: 20px 0 0 0;
}

.teikeibun-kanri .teikeibun-name-list {
  width:100%;
  border: 1px solid #ccc8c8;
  font-size: inherit;
  color: inherit;
}

.teikeibun-kanri .select-teikeibun-name-list select option {
  border-bottom: 1px solid #ccc8c8;
  line-height: 1.6;
}

.teikeibun-kanri .text-center{
  padding:6px 0;
}

.teikeibun-kanri .search-and-btn-field {
  display:flex;
}

.teikeibun-kanri .teikeibun-mode-btn {
  margin-left:auto;
}

.teikeibun-kanri .teikeibun-search-input {
  width:200px;
}

.teikeibun-kanri .dd-inner {
  width:100%;
}

.teikeibun-kanri .input-area {
  width:100%;
  padding:0 2px;
}

/* 候補文章管理（登録）
-------------------------------------------------- */

.wrap.kohoBunsho-toroku {
}

.kohoBunsho-toroku .contents-box .inner table {
  table-layout: fixed;
}

.kohoBunsho-toroku .contents-box .inner table td {}

.kohoBunsho-toroku .contents-box .inner table td.text-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.kohoBunsho-toroku .contents-box .inner table td.text-center {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.kohoBunsho-toroku .contents-box .inner table td.text-right {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}

/* お知らせ管理（メッセージ履歴）
  -------------------------------------------------- */
.message-naiyo {
	overflow-wrap: anywhere;
}

/* エラー
  -------------------------------------------------- */

.wrap.error {
  margin: 0 0 0 0;
}

.error {}

.error .dev {
  display: none;
}

/* クライアント最小モニターサイズは1280/1024
-------------------------------------------------- */

@media screen and (max-width: 1280px) {
  /* 共通スタイル */
  .inner {
    width: 1200px;
    margin: 0 2%;
  }
  .navi .inner,
  .footer .inner {
    width: 96%;
    margin: 0 2%;
  }
  /* menu */
  .menu .header .inner,
  .menu .contents-box .inner {
    width: 980px;
    margin: 0 auto;
  }
  /*  */
  .contents-box .inner table thead th .break {
    display: block;
  }
  .contents-box .inner table tbody td input {
    width: 65px;
  }
  .contents-box .inner table tbody td select {
    width: 70px
  }
}
