/* ********************************* */
/* color テーマ                      */
/* ********************************* */
:root{
  --purple-Strong:#00466D;
  --purple-Medium:#8A6BBE;
  --purple-Weak:#e2d3fc;
  --gray-Strong:#cdcbc2ea;
  --gray-Medium:#ebe9deea;
  --gray-Weak:#ffffffea;
  --blue-Strong:#0076B6;
  --blue-Medium:#66ACD3;
  --blue-Weak:#CCE3F0;
  --yellow-strong:#e9c600;
  --red:#ff0000;
  --main-color    :#2A3E70;  /* メインカラー (基本：紺) */
  --main-color-f  :#FFFFFF;  /* メインカラーが背景の時の文字色  (基本：白) */
  --sub-color     :#E9EBF0;
  --strong1-color :#f06060;  /* --main-color-fが背景の場合の強調色 (基本：朱) */
}

/* ********************************* */
/* 基本設定                          */
/* ********************************* */
html {
  font-size: 62.5%;        /* フォントのブラウザ指定より小さ目に設定する。通常ブラウザデフォルトは16px 大きさを 16px * 62.5% = 10px */
  box-sizing: border-box;  /* border-box: 指定された幅や高さはパディングやボーダーを含んだ状態での表示領域 */
}
body {
  /* color: #333; RGB */
  font-family: "Segoe UI","Noto_Sans_JP", "游ゴシック体", "游ゴシック", "Yu Gothic", "メイリオ",sans-serif;
  position: relative;
  font-size: 1.6rem;       /* 通常のフォントサイズを1.6倍に。(※htmlとの関係不明)*/
}
h3 {
  color: var(--main-color);
}
.hr-main {
    border: none;
    height: 2px;
    background-color: var(--main-color);
}

/* ********************************** */
/* フォントを指定                     */
/* ********************************** */
@font-face {
  font-family: Noto_Sans_JP;
  font-display: swap;
  src: url("fonts/Noto_Sans_JP/NotoSansJP-Regular.otf") format("TrueType");
}
@font-face {
  font-family: Noto_Sans_JP_bold;
  font-display: swap;
  src: url("fonts/Noto_Sans_JP/NotoSansJP-Bold.otf") format("TrueType");
}

/* ********************************** */
/* 画面全体の中心に何かを配置したい時の箱(この中に入れたら真ん中に表示される) */
/* ********************************** */
.box-center-center {
  display: flex;
  justify-content: center;   /* 中央 */ 
  align-items: center;       /* 中央 */ 
  flex-direction: column;
  height:auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.box-center-center h2 {
  color: var(--main-color);
  margin: 15px;
}
.box-center-center h3 {
  color: var(--main-color);
  margin: 12px;
}

/* ********************************** */
/* 左右中央に配置したい時の箱         */
/* ********************************** */
.box-center-top {
  display: flex;
  justify-content: center;   /* 中央 */
  align-items: center;       /* 中央 */ 
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.box-center-top h2 {
  color: var(--main-color);
  margin: 15px;
}
.box-center-top h3 {
  color: var(--main-color);
  margin: 12px;
}

/* ********************************** */
/* 横に並べる時に使用する             */
/* ********************************** */
.disp-yoko {
  display: flex;
/*  overflow: auto;*/
}
/* ********************************** */
/* 縦に並べる時に使用する             */
/* ********************************** */
.disp-tate {
  display: flex;
  flex-direction: column;
}
.disp-tate-center {
  display: flex;
  flex-direction: column;
/*  justify-content: center;*/
  align-items: center;
}
/* 右から順に詰める場合 */
.disp-reverse {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
  flex-direction: row-reverse;
}

/* ********************************** */
/* ○で囲む（width、height指定可能）  */
/* ********************************** */
.disp-circle {
  background-color: #fff;
  box-shadow: 0px 0px 3px 0px #ccc;
  padding: 5px;
  border: solid 1px #ccc;
  border-radius: 5px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  margin: 0 auto;
}

/* ********************************** */
/* メインカラーの強調文字             */
/* ********************************** */
.disp-main-color {
  font-size: 1.4rem;
  color: var(--main-color);
  font-family: "Noto_Sans_JP_Bold";
  margin: 0 5px 0px 0;
}

/* ********************************** */
/* Higgdb EDC のタイトル表示用        */
/* ********************************** */
.higgdb-title-large {
    margin-bottom: 20px;
    color: var(--main-color);
    text-align: center;
    font-size: 3.2rem;       /* 通常のフォントサイズの3.2倍に */
    font-weight: bold;       /* 太字 */
}
/* 中タイトル (幅はhtmlで指定) */
.higgdb-title-middle {
  font-size: 1.8rem;
  color: var(--main-color);
  background-color: var(--sub-color);
  padding: 10px;
  border: solid 1px #ccc;
}
/* 中タイトル (枠無) */
.higgdb-title-middle_none {
  font-size: 1.8rem;
  color: var(--main-color);
  padding: 10px;
  font-family: 'Noto_Sans_JP_bold';
}

/* 表示メッセージ(薄い水色背景で真ん中目立つよう) */
.higgdb-message-info {
  width: 70%;
  margin: 30px auto;
  padding: 10px 10px;
  border: solid 1px #78CEF0;
  background: #D8E9F0;
  text-align: center;
}
/* 表示メッセージ(薄い黄色背景で真ん中目立つよう) */
.higgdb-message-warn {
  width: 70%;
  margin: 30px auto;
  padding: 10px 10px;
  border: solid 1px #ffd900;
  background: #f2f2b0;
  text-align: center;
}
/* 表示メッセージ(ピンク背景で真ん中目立つよう) */
.higgdb-message-err {
  width: 70%;
  margin: 30px auto;
  padding: 10px 10px;
  border: solid 1px #EA0032;
  background: #ffc1cc;
  text-align: center;
}



/* ********************************** */
/* TOPタイトルバー（横）Entry         */
/* ********************************** */
.top_title_yoko{
  display: flex;
  justify-content: space-between;
  margin: 0px;
  padding: 5px 10px 5px;
  align-items: center;
  border: solid 1px #ccc;
  color: var(--main-color-f);
  background-color: var(--main-color);
}

/* ********************************** */
/* 白背景テーブルやや余裕あり         */
/* ********************************** */
/* widthは指定なし */
.table-white{
  width     : 100%;
  border    : solid 1px #ccc;
  border-top: none;
  position  : relative;
/*  border-collapse: separate;*/
  border-spacing : 5px;
  top       : -1px;
  border-collapse: collapse;
}
.table-white th{
  height        :45px;
  text-align    : center;
  vertical-align: middle;
  padding-left  :0px;
  padding-left  :2px;
  padding-right :2px;
  border-top: solid 1px #ccc;
}
.table-white td{
  height:45px;
  font-size:1.6rem;
  text-align    :center;
  vertical-align:middle;
  padding-left  :2px;
  padding-right :2px;
  border-top: solid 1px #ccc;
}

/* ********************************** */
/* 四角カード                         */
/* ********************************** */
.info-card {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  font-size:1.6rem;
}
.info-card2 {
  border: 1px solid #ccc;
  padding: 30px;
  margin: 15px;
  border-radius: 10px;
  font-size:1.6rem;
}

/* プログレスバー設定 */
.progress-bar1 {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 60px;
  width: 80%;
  color: #0075ff;
  text-align: left;
}
::-webkit-progress-bar {
  background-color: #EDEDED;
}
::-webkit-progress-value {
  background-color: #0075ff;
}

/* ********************************** */
/* 横３つづに均等に並べる方法         */
/* ********************************** */
.div_container {
    display: flex;
    flex-wrap: wrap;
}
.count_col3 {
    flex: 1 0 33.33%; /* 幅を3つのアイテムで均等に分ける */
    box-sizing: border-box; /* パディングやボーダーを含む */
    padding: 10px; /* 必要に応じて調整 */
}


/* ********************************** */
/* 施設メニュー                       */
/* ********************************** */
.entry-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #ccc;
  height: 60px;
  margin: 10px 0;
  padding-bottom: 10px
}
.entry-menu nav ul {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}
.entry-menu nav ul li {
  width: 150px;
  text-align: center;
  border-left: solid 1px #ccc;
}
.entry-menu nav ul li:first-child {
  border-left: none;
}
.entry-menu nav ul li:last-child {
  border-right: solid 1px #ccc;
}

/* 登録・一覧・お知らせボタン */
#info-button::before,#reg-button::before,#list-button::before,#sae-button::before,#mquery-button::before,#mupload-button::before,#mdownload-button::before {
  content: '';
  display: block;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
}
#info-button,#reg-button,#list-button,#sae-button,#mquery-button,#mupload-button,#mdownload-button {
  font-size: 1.6rem;
  border: none;
  background-color: #fff;
}
/* 新規登録ボタン */
#reg-button::before {
  background-image: url(../img/reg.svg);
}
#reg-button {
  color: var(--strong1-color);
}

/* 症例一覧ボタン */
#list-button::before {
  background-image: url(../img/list.svg);
}
#list-button {
  color:#0067c0;
}

/* お知らせボタン */
#info-button::before {
  background-image: url(../img/info.svg);
}
#info-button {
  color: var(--main-color);
}

/*クエリーボタン（モニター権限のみ）*/
#mquery-button::before {
  background-image: url(../img/mquery_icon.png);
  background-size: contain;
}
#mquery-button {
  color: #F69D8C;
}


/* SAEボタン */
#sae-button::before {
  background-image: url(../img/sae.png);
}
#sae-button {
  color:#f39800;
}
/* ｱｯﾌﾟﾛｰﾄﾞボタン */
#mupload-button::before {
  background-image: url(../img/mupload.png);
}
#mupload-button {
  color:#6600CC;
}
/* ﾀﾞｳﾝﾛｰﾄﾞボタン */
#mdownload-button::before {
  background-image: url(../img/mdownload.png);
}
#mdownload-button {
  color:#D78CB4;
}

/* 登録・一覧・お知らせボタン マウスオーバー */
#info-button:hover,#reg-button:hover,#list-button:hover,#sae-button:hover,#mquery-button:hover,#mupload-button:hover,#mdownload-button:hover {
  cursor: pointer;
  opacity: 0.8;
}
/* パスワード変更、ログアウト*/
#pw-button,#logout-button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 5px;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1.4rem;
  color: var(--main-color);
}
#pw-button:hover,#logout-button:hover{
  color: var(--strong1-color);
}


/* ************************************* */
/* 管理者画面・オーナーメニュー（縦）    */
/* ************************************* */
.manage-menu-wrap{
  display: flex;
  flex-direction: column;
  justify-content: normal;
  align-items: normal;
  margin: 0px;
  border: solid 1px #ccc;
  height: 97vh;
  padding: 15px 0px;
  background: #ffffff;
}
.manage-menu-wrap h3 {
  text-align: center;
  color: var(--main-color);
}
.manage-menu nav ul {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.manage-menu nav ul li {
  list-style: none;
  border-bottom: dotted 1px var(--main-color);
}
.manage-menu nav ul li:first-child {
  border-top: solid 1px var(--main-color);  
  border-bottom: dotted 1px var(--main-color);
}
.manage-menu nav ul li:last-child {
  border-bottom: solid 1px var(--main-color); 
}

/*ボタン全般*/
/* #buttonMenu */
.m_button {
  height: 50px;
  width: 100%;
  color: var(--main-color);
  background: #fff;
  padding: 0px;
  border: none;
  font-family: "Noto_Sans_JP_Bold";
  text-align: left;
  font-size: 1.4rem;
}
.m_button:hover {
  opacity: 0.8;
  cursor: pointer;
}

/*メニューアイコン共通設定*/
.m_button::before {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  float: left;
  margin: -3px 10px 0px 15px;
}

/*スタディ状況*/
.m_info::before {
  background-image: url(../img/chart_bar_fill.png);
  background-repeat: no-repeat;
}
/*施設登録*/
.m_inst::before {
  background-image: url(../img/hospital_line.png);
  background-repeat: no-repeat;
}
/*医師協力者*/
.m_dr::before{
  background-image: url(../img/user_add_2_line.png);
  background-repeat: no-repeat;
}
/*症例一覧*/
.m_list::before {
  background-image: url(../img/document_line.png);
  background-repeat: no-repeat;
}
/*データチェック*/
.m_check::before {
  background-image: url(../img/data-chk.png);
  background-repeat: no-repeat;
  background-size: cover;
}
/*クエリー*/
.m_query::before {
  background-image: url(../img/folder_query_3.png);
  background-repeat: no-repeat;
  background-size: cover;
}
/*アップロード*/
.m_upload::before {
  background-image: url(../img/upload_line.png);
  background-repeat: no-repeat;
}
/*ダウンロード*/
.m_download::before {
  background-image: url(../img/download_line.png);
  background-repeat: no-repeat;
}
/*SAE*/
.m_sae::before {
  background-image: url(../img/sae_line.png);
  background-repeat: no-repeat;
}

/*コーディング*/
.m_meddra::before {
  background-image: url(../img/coding_dict.png);
  background-repeat: no-repeat;
}

/*メール連絡*/
.m_mail::before {
  background-image: url(../img/mailcon.png);
  background-repeat: no-repeat;
}

/*データ取得*/
.m_get::before {
  background-image: url(../img/folder_download_fill.png);
  background-repeat: no-repeat;
}
/*タスク管理*/
.m_task::before {
  background-image: url(../img/task.png);
  background-repeat: no-repeat;
  background-size: cover;
}
/*管理者登録*/
.m_manager::before {
  background-image: url(../img/user_setting_line.png);
  background-repeat: no-repeat;
}
/*パスワード変更*/
.m_pass::before {
  background-image: url(../img/key_2_fill.png);
  background-repeat: no-repeat;
}
/*権限切り替え*/
.m_restart::before {
  background-image: url(../img/transfer_3_line.png);
  background-repeat: no-repeat;
}
/*ログアウト*/
.m_logout::before {
  background-image: url(../img/exit_door_fill.png);
  background-repeat: no-repeat;
}

/*オーナー権限*/
/*基本設定*/
.o_init::before {
  background-image: url(../img/setting.png);
  background-repeat: no-repeat;
}
/*環境構築*/
.o_env::before {
  background-image: url(../img/earth.png);
  background-repeat: no-repeat;
}
/*項目インポート*/
.o_make1::before {
  background-image: url(../img/import.png);
  background-repeat: no-repeat;
}


/*#logout-button {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin: 0px 5px;
  background-color: #fff;
  background-image: url(../img/logout.svg);
  background-repeat: no-repeat;
  background-position: center;
  border: solid 1px #ccc;

}*/
/*#pw-button,#logout-button {
  background-color: #fff;
  width: 40px;
  margin: 0 auto;
  border: none;
  font-size: 1.4rem;
}*/


/* ********************************** */
/* 全体的使用するボタン               */
/* ********************************** */
/* >> ボタン */
#buttonArrow{
  width: 30px;
  height: 30px;
  background: #333;
  border: solid 0px #333;
  background-image: url(../img/arrows.png);
  background-repeat: no-repeat;
  background-position: center;
  margin: 5px 10px;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 0px #333;
}

/* OKボタン */
#buttonOK {
  width: 135px;
  height: 135px;
  border-radius: 75px;
  color: #fff;
  font-size: 1.8rem;
  font-family: 'Noto_Sans_JP_bold';
  border: solid 0px #fff;
  box-shadow: 0px 0px 4px 0px #a1a1a1;
  margin: 0px 15px;
  background: rgb(255,153,150);
  background: linear-gradient(148deg, rgba(255,153,150,1) 0%, rgba(242,102,96,1) 70%);
}

/* 修正ボタン */
#buttonModify{
  width: 30px;
  height: 30px;
  background: var(--main-color);
  border: solid 0px var(--main-color);
  background-image: url(../img/more.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 0px #333;
}
#buttonModifyFalse{
  width: 30px;
  height: 30px;
  background: var(--gray-Medium);
  border: solid 0px var(--gray-Medium);
  background-image: url(../img/more.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 0px #333;
}
/* 新規追加ボタン */
#buttonAddnew {
 width:125px;
 height:125px;
 border-radius: 50%;
 color: #fff;
 font-size: 2.0rem;
 border: none 0px;
 box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
 margin-bottom: 30px;
 background: rgb(255,153,150);
 background: linear-gradient(148deg, rgba(255,153,150,1) 0%, rgba(242,102,96,1) 70%);

}
/* 削除ボタン(大) */
#buttonXOK {
 width: 125px;
 height:125px;
 border:0px;
 border-radius:70px;
 font-size:20px;
 background-color: #D0021B;
 color: #fff;
 box-shadow: 0px 0px 3px 0px #333;
}
/*削除*/
#buttonDelete{
  width: 30px;
  height: 30px;
  background: #696969;
  border: solid 0px #696969;
  background-image: url(../img/delete.png);
  background-repeat: no-repeat;
  background-position: center;
  margin: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 0px #333;
}
/*メール連絡*/
#buttonMail {
  width: 30px;
  height: 30px;
  background: var(--main-color);
  border: solid 0px var(--main-color);
  background-image: url(../img/mail.png);
  background-repeat: no-repeat;
  background-position: center;
  margin: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 0px #333;
}
/* 戻るボタン */
#buttonCancel {
  width: 60px;
  height: 60px;
  background-color: var(--sub-color);
  border-radius: 40px;
  border: solid 0px #ccc;
  margin: 0px 15px;
  box-shadow: 0px 0px 3px 0px #333;
}

#buttonArrow:hover,#buttonOK:hover,#buttonModify:hover,#buttonAddnew:hover,#buttonMail:hover,#buttonDelete:hover{
  opacity: 0.8;
  cursor: pointer;
}

/* 戻るボタン */
.button-back {
  background-color: #fff;
  box-shadow: 0px 0px 3px 0px #ccc;
  padding: 5px;
  border: solid 1px #ccc;
  border-radius: 5px;
}



/* ********************************** */
/* 全体的使用するテーブル             */
/* ********************************** */
/* 1. 症例一覧等 */
.table_main1,.table_main2,.table_main2s {
  background-color: var(--main-color);
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #ccc;
  margin-bottom: 60px;
}
.table_main1 th,.table_main2 th,.table_main2s th {
  font-size:1.6rem;
  color  :var(--main-color-f);
  text-align : left;
  vertical-align : center;
  border : solid 1px #ccc;
  height : 30px;
  padding: 0 10px;
  font-weight:normal;
}
.table_main1 td,.table_main2 td,.table_main2s td {
  background-color: var(--main-color-f);
  color  :#000000;
  padding: 5px 10px;
  font-size: 1.6rem;
  border: solid 1px #ccc;
  text-align :center;
  font-weight:bold;
}
.table_main2 td,.table_main2s td {
  font-size: 1.4rem; /* table_main2 は文字小さ目 */
  font-weight:normal;
}
.table_main2s th {
  font-size: 1.4rem; /* table_main2s はタイトルも文字小さ目 */
  font-weight:normal;
}

/* 3. 割付結果等 */
.table_main3 {
  background-color: var(--main-color);
  width: 70%;
  border-collapse: collapse;
  border: solid 1px #ccc;
  margin-bottom: 60px;
}
.table_main3 th {
  font-size:1.6rem;
  color  :var(--main-color-f);
  text-align : center;
  vertical-align : center;
  border : solid 1px #ccc;
  height : 30px;
  padding: 0 10px;
  font-weight:normal;
}
.table_main3 td {
  background-color: var(--main-color-f);
  color  :#000000;
  padding: 5px 10px;
  font-size: 2.0rem;
  border: solid 1px #ccc;
  text-align :center;
  font-weight:bold;
}

/* 4. 施設一覧、医師一覧等、5:クエリー */
.table_main4,.table_main5 {
  width : 100%;
  border : 0px;
  border-collapse: collapse;
}
.table_main4 th,.table_main5 th {
  background-color: var(--main-color);
  color: #fff;
  text-align: left;
  padding: 5px 10px;
  font-weight: normal;
  border: solid 1px #ccc;
}
.table_main4 th:first-child ,.table_main5 th:first-child{
  border-left: solid 1px #ccc;
}
.table_main4 th:last-child,.table_main5 th:last-child {
  border-right: solid 1px #ccc;
}
.table_main4 td,.table_main5 td {
  border: solid 1px #ccc;
  padding: 5px 10px;
}
.table_main5 th {
  font-size: 1.2rem; /* table_main5 は文字小さ目 */
}
.table_main5 td {
  font-size: 1.2rem; /* table_main5 は文字小さ目 */
}

/* 6.オーナー設定 */
.table_main6 {
  padding: 10px;
  margin: 5px auto;
  border-collapse:collapse;
  width: 100%;
  text-align: left;
}
.table_main6 th {
  padding: 10px;
  text-align: left;
  max-width: 150px;
  text-align: left;
  background: var(--main-color);
  border: solid 2px  var(--main-color);
  color: #fff;
  font-family: "Noto_Sans_JP_Bold";
}
.table_main6 td {
  padding: 10px;
  text-align: left;
  border: solid 1px #333;
  vertical-align: top;
}

/* 7.DMログのところ */
.table_main7A,.table_main7B {
  width : 100%;
  border: solid 1px #f6bfbc;
  border-collapse: collapse;
}
.table_main7A th,.table_main7B th {
//  background-color: #f6bfbc;
  background-color: #f2a0a1;

  font-size: 1.2rem;
//  color: var(--main-color);
  color: white;
  text-align: left;
  padding: 2px 5px;
  font-weight: normal;
  border: solid 1px #f6bfbc;
}
.table_main7A th:first-child ,.table_main7B th:first-child{
  border-left: solid 1px #f6bfbc;
}
.table_main7A th:last-child,.table_main7B th:last-child {
  border-right: solid 1px #f6bfbc;
}
.table_main7A td,.table_main7B td {
  background-color: white;
  color: #333;
  border-bottom: solid 1px #f6bfbc;
  padding: 5px 10px;
  font-size: 1.2rem;
}


/* ************************************ */
/* ラベルとテキストをセットにするクラス */
/* ************************************ */
/* 使用方法 
   <label for="idA" class="grouplbltxt">
   <input type="text" id="idA" name="userid" value="">
   <span class="label">ID</span>
   </label>
*/
.grouplbltxt {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 280px;
}
.grouplbltxt .label {
    position: absolute;
    top: -9px;
    left: 15px;
    font-size: 16px;
    color: #999999;
    font-weight: 500;
    transform-origin: 0 0;
    transition: all 0.2s ease;
}
.grouplbltxt input {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 12px 0;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid #c8ccd4;
    background: none;
    border-radius: 0;
    color: #223254;
    transition: all 0.15s ease;
}
/* placeholder-shown 何も入力されていない、わけではない時 */
.grouplbltxt input:not(:placeholder-shown) + span {
  color: #999999;
  transform: translateY(-7px) scale(0.75);
}
/* span内にフォーカスされたら、色を変える。少し上にずらして、小さくする */
.grouplbltxt input:focus + span {
  color: var(--main-color);
  transform: translateY(-7px) scale(0.75);
}

/* ************************************ */
/* MANAGE/OWNERの全体ラップ             */
/* ************************************ */
.manage-wrap {
  margin: 0px 30px 60px;
}
.manage-wrap h2 {
  display: block;
  color: var(--main-color);
  font-size: 2.4rem;
  font-family: "Noto_Sans_JP_Bold";
  margin: 24px 0;
}
.manage-wrap h3 {
  display: block;
  color: var(--main-color);
  font-family: "Noto_Sans_JP_Bold";
  margin: 0 0 24px 0;
}


/* ************************************ */
/* ログイン画面                         */
/* ************************************ */
.login-box {
  max-width: 625px;
  padding  :  30px;
  text-align: center;
  display:   flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 0px 3px 0px #333;
  border: solid 1px var(--main-color);
  justify-content: center;
  align-items: center;
}

/*ログインボックス内の内部箱*/
.login-box-small {
    width: 300px;
    height: 50px;
    margin-bottom: -1px;
    background-color: #fff;
}

/*ログインボックス内のテキストボックス*/
.login-box input[type="text"] {
    border: solid 1px #979797;
    padding: 15px 15px 0px;
}
/*ログインボックス内のパスワード*/
.login-box input[type="password"] {
    border: solid 1px #979797;
    padding: 15px 15px 0px;
}

/*ログインボタン*/
.login-button{
    width: 300px;
    height: 50px;
    font-size: 1.8rem;
    margin: 15px 0px;
    font-family: 'Noto_Sans_JP_bold';
}
.login-button input[type="submit"] {
    background-color:var(--main-color);
    border-color:var(--main-color);
    border-radius: 4px;
    border: none;
    color: var(--main-color-f);
    cursor: pointer;
}
.login-button input[type="submit"]:hover {
    opacity: 0.8;
}
.login-license {
/*    position: absolute;*/
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    color: var(--main-color);
}

/*ログアウトボタン*/
.logout-button{
  width: 300px;
  height: 50px;
  font-size: 1.8rem;
}
.logout-button input[type="submit"] {
  background-color: var(--main-color-f);
  border: solid 3px var(--main-color);
  border-radius: 4px;
  color: var(--main-color);
  cursor: pointer;
  font-family: 'Noto_Sans_JP_bold';
}
.logout-button input[type="submit"]:hover {
  opacity: 0.8;
}


/* ************************************ */
/* ログイン後スタディテーブル           */
/* ************************************ */
.study-table {
  width: 760px;
  padding: 10px;
  border-radius: 4px;
  border-collapse: separate; /* border-collapseをseparateに設定 */
  border-spacing: 0;         /* border-spacingを0に設定 */
  border-radius: 10px;       /* 丸みの大きさを設定 */
  overflow: hidden;          /* 角を超えた内容を非表示に */
}
.study-table th {
    height:80px;
    padding: 10px;
    color: var(--main-color);
    text-align: left;
}
.study-table td {
    height:80px;
    padding: 10px;
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);  /* 下側に細枠の横線 */
}
/* 行(最初)の下側に太枠 */
.study-table tr:nth-child(2) td {
    border-top: 3px solid var(--main-color);
}
.study-table tr:last-child td {
    border-bottom: 3px solid var(--main-color);
}
.study-table td:first-child {
    border-left: 3px solid var(--main-color);
}
.study-table td:last-child {
    border-right: 3px solid var(--main-color);
}
/* 外側少し丸く */
.study-table tr:nth-child(2) td:first-child {
    border-top-left-radius: 5px;
}
.study-table tr:nth-child(2) td:last-child {
    border-top-right-radius: 5px;
}
.study-table tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

.study-table tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

/* ************************************ */
/* パスワード変更テーブル               */
/* ************************************ */
.pw_change_table {
  width: 85%;
  border: 0px;
  border-collapse: collapse;
  margin: 0 auto;
  table-layout: fixed;
}
.pw_change_table th {
  color: var(--main-color);
  font-family: "Noto_Sans_JP_Bold";
  text-align: left;
  padding: 5px 10px;
  border: solid 1px #ccc;
  background: var(--sub-color);
  width: 320px;
}
.pw_change_table td {
  border: solid 1px #ccc;
  padding: 10px 10px;
}
.pw_change-image {
  width: 350px;
  height: 220px;
  background-image: url(../img/pw-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 30px;
  top: 50%;
  right: 0;
  position: absolute;
}

/* ************************************ */
/* ユーザー登録                         */
/* ************************************ */
.user-reg-table {
  width: 760px;
  padding: 10px;
}
.user-reg-table th {
    width  :180px;
    height :80px;
    padding: 10px;
    color: var(--main-color);
    text-align: left;
    vertical-align: top;
}
.user-reg-table td {
    height:80px;
    padding: 10px;
    color: var(--main-color);
}

.user-reg-box {
  max-width: 800px;
  margin: 30px auto;
  background: var(--main-color-f);
  border: solid 1px var(--main-color);
  padding: 30px 20px;
  border-radius: 10px;
  color: var(--main-color);
}
.user-reg-box h2 {
  font-size: 1.6rem;
/*  color: #0d3f67;*/
  color: var(--main-color);
}
.user-reg-box h3 {
  font-size: 1.4rem;
/*  color: #0d3f67;*/
  color: var(--main-color);
}
.user-reg-box__label {
  margin-bottom: 10px;
/*  color: #0d3f67;*/
  color: var(--main-color);
  float: left;
  width: 170px;
}
.user-reg-box input[type="text"] {
  padding: 0px 5px;
  margin-bottom: 10px;
}
.user-reg-box input[type="password"] {
  padding: 0px 5px;
  margin-bottom: 10px;
}



/*PW合言葉*/
.form__box-fgtpw input[type="text"] {
    border: solid 1px #979797;
    border-radius: 0px;
    padding: 0 5px;
}
/*忘れた方*/
.fgt_psw {
    -moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background-color: transparent;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1.6rem;
}
.fgt_psw:hover {
    color: red;
}

.form__question {
    font-size: 1.6rem;
    margin: 20px 0px;
}

/*権限選択画面*/
.login-image {
  width: 100%;
  height: 190px;
  background-image:url(../img/login-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 5px;
}
.user-image {
  width: 380px;
  height: 170px;
  background-image: url(../img/user-image.png);
  background-repeat: no-repeat;
  margin-top: 5px;
  display: block;
  top: 70%;
  right: 0;
  position: absolute;
}


/* ************************************ */
/* 施設お知らせ画面                     */
/* ************************************ */
/* お知らせ（黄色）*/
.info-box-news {
  width: 700px;
  min-height: 40px;
  background: #ffef99;
  margin-bottom: 30px;
  padding: 10px 10px 10px 15px;
  font-size: 1.4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: solid 1px #ccc;
}
.info-box-news::after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 5px ;
  background-image: url(../img/info.svg);
  background-repeat: no-repeat;
  background-position: center;
  float: left;
}
/* 問合せ先 */
.info-box-contact {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #333;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #cccccc;
}
/* 画像 */
.info-image {
  display: none;  /* デフォルト非表示*/
  width : 350px;
  height: 200px;
  background-image: url(../img/info-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  right: 0;
  position: fixed;   /* ここを変更 */
  z-index: -1;     /* 必要に応じてz-indexを調整 */
  right: 0;
  bottom: 20px;
}
@media (min-width: 1350px) {
  .info-image {
    display: block; /* 画面幅がある場合は表示 */
  }
}


/* ************************************ */
/* 症例一覧                             */
/* ************************************ */
.list-menu-box {
  display: flex;
  color: var(--main-color);
  font-size: 1.4rem;
  align-items: center;
}
.list-menu-box li {
  list-style: none;
  width: 75px;
  text-align: center;
}
/* 検索ボックス */
.search-box {
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #ccc;
/*  border-collapse: collapse;*/
  border-radius: 5px;
}
.search-box td {
  padding-left: 10px;  
  padding-right: 10px; 
  vertical-align: middle; 
}

/* セルの内側のボーダーは表示しない */
.table-wrapper table td,
.table-wrapper table th {
  border: none;
  padding: 5px;
}


/* 一覧右上アイコン */
.list-menu__edit::after,.list-menu__save::after,.list-menu__confirm::after,.list-menu__confirm-lock::after,.list-menu__app::after,.list-menu__query::after,.list-menu__sdv::after
{
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  margin-bottom: 5px;
}
/*各アイコン*/
.list-menu__edit::after {
  background-image: url(../img/edit_2.svg);
}
#button-edit{
  background-image: url(../img/edit.svg);
}
.list-menu__save::after,#button-save {
  background-image: url(../img/folder_fill_.png);
  background-size: cover;
}
.list-menu__confirm::after,#button-kaku {
  background-image: url(../img/folder_confirm.png);
  background-size: cover;
}
.list-menu__confirm-lock::after,#button-kakulock {
  background-image: url(../img/folder_lock.png);
  background-size: cover;
}
.list-menu__app::after,#button-admit {
  background-image: url(../img/folder_check_fill.png);
  background-size: cover;
}
.list-menu__query::after,#button-query {
  background-image: url(../img/folder_query_3.png);
  background-size: cover;
}
.list-menu__sdv::after,#button-sdv {
  background-image: url(../img/folder_sdv.png);
  background-size: cover;
}
/* 保存等ボタン*/
#button-save,#button-kaku,#button-admit,#button-query,#button-kakulock,#button-sdv {
  padding: 20px 5px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgb(0 0 0 / 0%);
}
#button-save:hover,#button-kaku:hover,#button-admit:hover,#button-query:hover,#button-kakulock:hover,#button-sdv:hover {
  cursor: pointer;
  opacity: 0.8;
}
#button-edit {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #fff;
  box-shadow: 0px 0px 3px 0px #333;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
#button-edit:hover {
  border: solid 1px #ccc;
  cursor: pointer;
}

/* 固定ボタン */
#buttonKotei {
 width: 55px;
 height:55px;
 background:url(../img/kotei.png)  no-repeat;
 background-position:top center;
 background-size: cover;
 padding-top:5px;
 font-size:10px;
 color:red;
 border:solid 0px;
}
#buttonKotei:hover{
 width:55px;
 height:55px;
 background:url(../img/kotei.png)  no-repeat;
 background-position:top center;
 background-size: cover;
 padding-top:5px;
 font-size:10px;
 color:red;
 border:solid 0px;
 cursor:pointer;
}
/* 固定済 */
#buttonKoteion {
 width:55px;
 height:55px;
 background:url(../img/kotei_on.png)  no-repeat;
 background-position:top center;
 background-size: cover;
 padding-top:5px;
 font-size:10px;
 color:red;
 border:solid 0px;
}
#buttonKoteion:hover{
 width:55px;
 height:55px;
 background:url(../img/kotei_on.png)  no-repeat;
 background-position:top center;
 padding-top:5px;
 font-size:10px;
 background-size: cover;
 color:red;
 border:solid 0px;
 cursor:pointer;
}



/* 検索ボタン*/
#buttonSearch {
  width: 30px;
  height: 30px;
  BACKGROUND: #ffffff;
  background-image: url(../img/search.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0px 0px 1px 0px #333;
  margin: 0px 10px;
  padding: 0px;
  background-size: cover;
}
#buttonSearch:hover{
 cursor:pointer;
 opacity: 0.8;
}


/* ************************************ */
/* VISIT画面                            */
/* ************************************ */
/* Visitの幅と並び設定 */
.box-view {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
/* 左右両端に表示*/
.box-view-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.box-view-header h3 {
  color: var(--main-color);
  float: left;
}
.box-view-header p {
  color: var(--main-color);
  padding: 8px;
  margin: 0;
}
/* 症例情報等を表示するボックス */
.box-view-status {
  padding: 10px 20px;
  background: var(--main-color-f);
  border-radius: 5px;
  border: solid 2px var(--main-color);
  box-shadow: 0px 0px 3px 0px #ccc;
  height: auto;
  width: 100%;
  margin: 0 20px 0 0;
}
.box-view-status h2 {
  color: var(--strong1-color);
  margin: 0;
  float: left;
}
/* 保存等のボタンの配置(右寄せ) */
.entry-func-button {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.entry-func-button ul  {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.entry-func-button ul li {
  list-style: none;
  background-color: #fff;
  box-shadow: 0px 0px 3px 0px #ccc;
  padding: 5px;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
.entry-func-button ul li:first-child {
  border-radius: 5px 0px 0px 5px;
  border-left: solid 1px #ccc;
}
.entry-func-button ul li:last-child {
  border-radius: 0px 5px 5px 0px;
  border-right: solid 1px #ccc;
}
/* ページの設定 */
.entry-page-button {
  width: 100%;
}
.entry-page-button td {
  width: 170px;
}

/* ************************************ */
/* VISIT機能ボタン                      */
/* ************************************ */
/* チェックボタン     */
#buttonEcheck{
  background:url(../img/e_check.svg) no-repeat;
}
/* チェックOFFボタン */
#buttonEcheckof{
  background:url(../img/e_check_of.svg)  no-repeat;
}

/* 一時保存ボタン */
#buttonSave {
 background:url(../img/folder_fill_2.png)  no-repeat;
}
/* 確定ボタン */
#buttonKaku{
  background:url(../img/folder_confirm2_.png)  no-repeat;
}
/* 確定解除ボタン */
#buttonKakuof{
  background:url(../img/folder_open.png)  no-repeat;
}
/* 承認ボタン */
#buttonAdmit{
  background:url(../img/folder_check_fill2.png)  no-repeat;
}
/* 完了ボタン */
#buttonFinq {
  background:url(../img/folder_locked.png)  no-repeat;
}
/* 完了解除ボタン */
#buttonFinqof {
  background:url(../img/finquery.png)  no-repeat;
}


/* SDVボタン */
#buttonSdv {
  background:url(../img/sdv_on.png)  no-repeat;
}
/* SDV解除ボタン */
#buttonSdvoff {
  background:url(../img/sdv_off.png)  no-repeat;
}


/* クエリー一括オープンボタン */
#buttonOpenqry{
  background:url(../img/st_query.png)  no-repeat;
}
/* 入力履歴ボタン */
#buttonLog{
  background:url(../img/history.svg)  no-repeat;
}
/* DMログボタン */
#buttonDmlog{
  background:url(../img/dmlog.png)  no-repeat;
}
/* DMログボタン */
#buttonDmlogof{
  background:url(../img/dmlogof.png)  no-repeat;
}
/* ワークシート印刷ボタン */
#buttonWorksheet{
  background:url(../img/worksheet.png)  no-repeat;
}

/* 戻るボタン */
#buttonClose{
  background:url(../img/back.svg)  no-repeat;
}


/* ログアウトボタン(再ログイン時) */
#buttonlogout {
  background:url(../img/relogout.png)  no-repeat;
}

#buttonEcheck,#buttonEcheckof,#buttonSave,
#buttonKaku,#buttonKakuof,#buttonAdmit,
#buttonFinq,#buttonLog,#buttonFinqof,#buttonOpenqry,#buttonSdv,#buttonSdvoff,
#buttonClose,#buttonlogout,#buttonWorksheet,#buttonDmlog,#buttonDmlogof
{
  width:70px;
  height:70px;
  background-position:top center;
  padding-top: 40px;
  color: var(--main-color);
  font-size: 1.1rem;
  border:none;
}

#buttonEcheck:hover,#buttonEcheckof:hover,#buttonSave:hover,
#buttonKaku:hover,#buttonKakuof:hover,#buttonAdmit:hover,
#buttonFinq:hover,#buttonLog:hover,#buttonFinqof:hover,#buttonOpenqry:hover,#buttonSdv:hover,#buttonSdvoff:hover,
#buttonClose:hover,#buttonlogout:hover,#buttonWorksheet:hover,#buttonDmlog:hover,#buttonDmlogof:hover
{
  cursor:pointer;
  border:none;
  opacity: 0.8;
}
/* 繰り返しVisitの新規追加ボタン */
#buttonadd-edt {
  width: 90px;
  height: 80px;
  background: url(../img/edit_2.svg) no-repeat;
  background-position: center;
  padding-top: 55px;
  font-size: 14px;
  border: none;
  margin: 0 auto;
}
#buttonadd-edt:hover {
  cursor: pointer;
  opacity: 0.8;
}

#buttondownload {
  width: 32px;
  height: 32px;
  background: url(../img/download.png) no-repeat;
  background-position: center;
  border: none;
  margin: 0 auto;
}
#buttondownload:hover {
  cursor: pointer;
  opacity: 0.8;
}


/* ************************************ */
/* VISITVIEW内部                        */
/* ************************************ */
/* ページボタン */
#buttonMenuZero,
#buttonMenuNon,#buttonMenuAct,
#buttonMenuNonE,#buttonMenuActE,
#buttonMenuNonW,#buttonMenuActW,
#buttonMenuNonC,#buttonMenuActC
{
  width:186px;
/*  width: 100%;*/
  height: 45px;
  font-size: 1.4rem;
}

#buttonMenuZero {
  color:white;
  background:white;
  border:solid 2px white;
/*  line-height: 110%;*/
}
#buttonMenuNon {
  color: var(--main-color);
  border: solid 2px var(--main-color);
  border-radius: 5px;
  background: #fff
}
#buttonMenuNon:hover{
  /*background: var(--sub-color);*/
}
#buttonMenuAct { 
  background-color: var(--main-color);
  border: solid 1px var(--main-color);
  border-radius: 5px;
  color: #fff;
  font-family: "Noto_sans_JP_Bold";
}
#buttonMenuNonE {
  background:white;
  border:solid 1px #ec6800;
  border-radius: 5px;
}
#buttonMenuActE {
  color:black;
  background:#fddea5;
  border:solid 1px #ec6800;
  border-radius: 5px;
}
#buttonMenuNonW {
  background:white;
  border:solid 1px #ffd900;
  border-radius: 5px;
}
#buttonMenuActW {
  background:#f2f2b0;
  border:solid 1px #ffd900;
  border-radius: 5px;
}
#buttonMenuNonC {
  background:white;
  border:solid 1px var(--purple-Strong);
  border-radius: 5px;
}
#buttonMenuActC {
  background:#eaedf7;
  border:solid 1px var(--purple-Strong);
  border-radius: 5px;
}



/* セクション */
.table_s_view{
 width   : 100%;
 padding : 10px;
 border  : 0px;
}
.table_s_view th {
  font-size:16px;
  color:var(--main-color);
  text-align : left;
  font-family: "Noto_Sans_JP_bold";
}

/* サブセクション */
.table_01{
  width: 100%;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: white;
}
.table_01 tr {
  height:40px;
}
.table_01 th{
  width:252px;
  height:34px;
  text-align: left;
  vertical-align: top;
  padding-left:0px;
  font-size:14px;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  background: white;
  padding-left:2px;
  padding-right:2px;
}
.table_01 td{
  height:34px;
  font-size:14px;
  text-align: left;
  vertical-align: middle;
  border: 2px solid var(--main-color);
  padding-left:2px;
  padding-right:2px;
  background: white;
  border: 0px solid white;
}
/* サブセクションエラー時 */
.table_01E {
  width: 100%;
  border: 1px solid #cccccc;
  background : #f0f0f0;
}
.table_01E tr {
  height:40px;
}
.table_01E th{
  width: 252px;
  height: 34px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  color: #f01010;
  border: 2px solid #f01010;
  padding-left: 2px;
  padding-right: 2px;
  background: rgb(253 222 165);
}
.table_01E td{
  height:34px;
  font-size:14px;
  text-align: left;
  vertical-align: middle;
  padding-left:2px;
  padding-right:2px;
  background : #f0f0f0;
}
/* サブセクション警告時 */
.table_01W{
  width: 100%;
  border-left: 2px solid #ebe1a9;
  border-right: 2px solid #ebe1a9;
  border-top: 1px solid #ebe1a9;
  border-bottom: 1px solid #ebe1a9;
  background : #f0f0f0;
}
.table_01W tr {
  height:40px;
}
.table_01W th{
  width:252px;
  height:34px;
  text-align: left;
  vertical-align: top;
  font-size:14px;
  color: #f08300;
  border: 2px solid #ffd900;
  padding-left:2px;
  padding-right:2px;
  background: #f2f2b0;
}
.table_01W td{
  height:34px;
  font-size:14px;
  text-align: left;
  vertical-align: middle;
  font-weight:bold;
  padding-left:2px;
  padding-right:2px;
  background : #f0f0f0;
}
/* サブセクション注意時 */
.table_01C{
  width: 100%;
  border-left: 2px solid #ebe1a9;
  border-right: 2px solid #ebe1a9;
  border-top: 1px solid #ebe1a9;
  border-bottom: 1px solid #ebe1a9;
  background : #f0f0f0;
}
.table_01C tr {
  height:40px;
}
.table_01C th{
  width:252px;
  height:34px;
  text-align: left;
  vertical-align: top;
  font-size:14px;
  color: var(--purple-Strong);
  border: 2px solid var(--purple-Strong);
  padding-left:2px;
  padding-right:2px;
  background:#eaedf7;
}
.table_01C td{
  height:34px;
  font-size:14px;
  text-align: left;
  vertical-align: middle;
  border: 2px solid var(--blue-Strong);
  font-weight:bold;
  padding-left:2px;
  padding-right:2px;
  background : #f0f0f0;
}

/* チェックメッセージ */
.table_check{
  width: 100%;
  background : white;
  padding-top :10px;
}
.table_check th{
  font-size:14px;
  color: red;
  text-align: left;
}

/* クエリーメッセージ */
.table_query_open,.table_query_close {
  width: 100%;
  border: solid 1px #ccc;
}
.table_query_open td,.table_query_close td{
  background: #FFFFFF no-repeat;
}
.table_query_open th{
  height: 45px;
  color: #333;
  font-size: 12px;
  font-weight: normal;
  text-align: left;
  padding-left: 50px;
  background: #ffefc7  url(../img/folder_query_3.png) no-repeat;
  border: solid 1px #cccccc;
  background-size: contain;
}
.table_query_close th {
  height:40px;
  color: #333;
  font-size:12px;
  font-weight:normal;
  text-align: left;
  padding-left:50px;
  background: #cecece url(../img/folder_query_3.png) no-repeat;
  background-size: contain;
  border: solid 1px #ec00c5;
}

/* 保存前メッセージ */
.table_messave_open,.table_messave_close {
  width: 100%;
  border: solid 1px #ccc;
}
.table_messave_open td,.table_messave_close td{
  background: #FFFFFF no-repeat;
}
.table_messave_open th{
  height: 45px;
  color: #333;
  font-size: 12px;
  font-weight: normal;
  text-align: left;
  padding-left: 50px;
  background: #ffefc7  url(../img/info.svg) no-repeat;
  border: solid 1px #cccccc;
  background-size: contain;
}
.table_messave_close th {
  height:40px;
  color: #333;
  font-size:12px;
  font-weight:normal;
  text-align: left;
  padding-left:50px;
  background: #cecece url(../img/info.svg) no-repeat;
  background-size: contain;
  border: solid 1px #ec00c5;
}

/* メモ */
.table_ssmemo {
  width: 100%;
  border: solid 1px #ccc;
}
.table_ssmemo td{
  background: #FFFFFF no-repeat;
}
.table_ssmemo th {
  height: 45px;
  color: #333;
  font-size: 12px;
  font-weight: normal;
  text-align: left;
  padding-left: 50px;
  background: #ffefc7  url(../img/document_line.png) no-repeat;
  border: solid 1px #cccccc;
  background-size: contain;
}


/* テキスト */
input[type=text]{
   border-radius: 3px;
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   -o-border-radius: 3px;
   -ms-border-radius: 3px;
   border:#a9a9a9 1px solid;
   -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
   -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   height:25px;
   font-size:14px;
   padding-left:5px;
   padding-right:5px;
   readonly:readonly;
}

/* パスワード */
input[type=password]{
   border-radius: 3px;
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   -o-border-radius: 3px;
   -ms-border-radius: 3px;
   border:#a9a9a9 1px solid;
   -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
   -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   height:25px;
   font-size:14px;
   font-family:verdana , sans-serif;
   readonly:readonly;
}

/* メモ */
textarea{
    font-size:14px;
    font-family: '�q���M�m�p�S Pro W3', 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', Meiryo;
    border: 1px solid #B9C9CE;
    border-radius:5px;
    padding: 12px 0.8em;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}

/* セレクト */
select{
   border-radius: 3px;
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   -o-border-radius: 3px;
   -ms-border-radius: 3px;
   border:#a9a9a9 1px solid;
   -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
   -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   height:25px;
   font-size:14px;
   min-width: 40px;
}

/* ラジオボタン*/
.radioGroup input[type="radio"] {
	position:absolute;
	width:22px;
	height:22px;
	overflow:hidden;
	margin:0;
	padding:0;
	border:0;
	outline:0;
	opacity:0;
}
.radioGroup input[type="radio"] + label {
  font-size:14px;
  color:black;
  font-weight:normal;
  background:url(../img/rdo_of.png) no-repeat;
  padding: 5px;
  padding-left:30px;
}
.radioGroup input[type="radio"]:disabled + label {
  background:url(../img/rdo_of_x.png) no-repeat;
}
.radioGroup input[type="radio"] + label:hover {
  color:orange;
  font-weight:bold;
}
.radioGroup input[type="radio"]:focus + label {
  color:orange;
}
.radioGroup input[type="radio"]:checked + label {
  font-weight:bold;
  color:black;
  background:url(../img/rdo_on.png) no-repeat;
  padding: 5px;
  padding-left:30px;
}
.radioGroup input[type="radio"]:checked:focus + label {
  color:orange;
}
.radioGroup input[id$="x"] + label {
  background:url(../img/rdo_x.png) no-repeat;
  padding-top:0px;
}
.radioGroup input[id$="x"] + label:hover {
  background:url(../img/rdo_x.png) no-repeat;
  padding-top:0px;
}
.radioGroup input[id$="x"]:focus + label {
  background:url(../img/rdo_x.png) no-repeat;
  padding-top:0px;
}
.radioGroup input[id$="x"]:checked + label {
  background:url(../img/rdo_x.png) no-repeat;
  padding-top:0px;
}

.radioGroup input[id$="x"]:checked:focus + label {
  background:url(../img/rdo_x.png) no-repeat;
  padding-top:0px;
}

/* チェックボックス*/
.checkGroup input[type="checkbox"] {
	position:absolute;
	width:22px;
	height:22px;
	overflow:hidden;
	margin:0;
	padding:0;
	border:0;
	outline:0;
	opacity:0;
}
.checkGroup input[type="checkbox"] + label {
  font-size:14px;
  padding: 5px;
  padding-left:35px;
  background:url(../img/chk_of.png) no-repeat;
  color:black;
}
.checkGroup input[type="checkbox"]:disabled + label {
  background:url(../img/chk_of_x.png) no-repeat;
}
.checkGroup input[type="checkbox"] + label:hover {
  font-weight:bold;
  background:url(../img/chk_of.png) no-repeat;
  color:orange;
}
.checkGroup input[type="checkbox"]:focus + label {
  font-weight:bold;
  background:url(../img/chk_of.png) no-repeat;
  color:orange;
}
.checkGroup input[type="checkbox"]:checked + label {
  font-weight:bold;
  background:url(../img/chk_on.png) no-repeat;
  color:black;
 }
.checkGroup input[type="checkbox"]:checked:focus + label {
  font-weight:bold;
  background:url(../img/chk_on.png) no-repeat;
  color:orange;
}


/* *******************************/
/* オーナー基本設定画面          */
/* *******************************/
.owner-init-wrap {
  display: grid;
  grid-template-columns: repeat(6, 0.5fr);
  grid-template-rows: 0.5fr 1fr repeat(3, 0);
  grid-column-gap: 10px;
  grid-row-gap: 3px;
}
  
.owner-init-box1 {
  grid-area: 1 / 1 / 2 / 5;
  border: solid 2px var(--main-color);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0px;
}

.owner-init-box2 {
  grid-area: 1 / 5 / 2 / 7;
  border: solid 2px var(--main-color);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0px;
}
.owner-init-box3 {
   grid-area: 2 / 1 / 3 / 4;
   border: solid 2px var(--main-color);
   padding: 20px;
   border-radius: 10px;
   margin: 20px 0px; 
}
.owner-init-box4 {
   grid-area: 2 / 4 / 3 / 7;
   border: solid 2px var(--main-color);
   padding: 20px;
   border-radius: 10px;
   margin: 20px 0px; 
}


/* ************************************ */
/* 管理者印刷ボタン                      */
/* ************************************ */
#buttonPrint{
 width:50px;
 height:50px;
 background:url(../img/print70.png)  no-repeat;
 background-position:top center;
 background-size: cover;
 border:none;
 padding: 10px;
}
#buttonPrint:hover{
 cursor:pointer;
}

/* ************************************ */
/* ダウンロードボタン                   */
/* ************************************ */
.Download-button {
  border: 1px solid #ccc;
  background: rgb(255,255,255);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(204,227,240,1) 100%); 
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
  width: 150px;
  font-size: 1.4rem;
  font-family: "Noto_Sans_JP";
}
.Download-button:hover {
  background: rgb(255,255,255);
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(204,227,240,1) 100%); 
}








/* -------------------- */
/* ログイン画面         */
/* -------------------- */
@media (max-width: 768px) {
  .login__list-studynm {
    width: 100%;
  } 
  .form__logout-button{
   
  }  
  .form-signin {
    height: auto;
    padding: 15px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .login-title {
    display: flex;
    width: 100%;
    padding: 10px;
    margin: 10px auto;
    color: var(--main-color);
  }
  .login-wrap {
    width: 100%;
  }
}


/* -------------------- */
/* 印刷用               */
/* -------------------- */
@media print{
.radioGroup input[type="radio"] {
	position:absolute;
	width:22px;
	height:22px;
	overflow:hidden;
	margin:0;
	padding:0;
	border:0;
	outline:0;
	opacity:0;
}
.radioGroup input[type="radio"] + label {
  font-size:14px;
  color:black;
  font-weight:normal;
  background:url(../img/rdo_of.png) no-repeat;
  padding: 5px;
  padding-left:30px;
}
 
.checkGroup input[type="checkbox"] {
	position:absolute;
	width:22px;
	height:22px;
	overflow:hidden;
	margin:0;
	padding:0;
	border:0;
	outline:0;
	opacity:0;
}
.checkGroup input[type="checkbox"] + label {
  font-size:14px;
  padding: 5px;
  padding-left:35px;
  background:url(../img/chk_of.png) no-repeat;
  color:black;
}
}


}