@charset "UTF-8";
/* CSS Document */

/****************************************************/
/**   全体レイアウト    **/
/****************************************************/
.wrapper{
    position: relative;
    min-height: 100%;
    height: auto !important;
    height: 100%;
}

#container{
    padding-bottom:65px;
    text-align:left;
    width:100%;
}

.box_container{
    width:980px;
    margin-left:auto;
    margin-right:auto;
    position: relative;
}

/* 2021/02/04 (T.Asato) Add Start */
.u_mb20{ margin-bottom: 20px; }
.u_mb30{ margin-bottom: 30px; }
.u_mb60{ margin-bottom: 60px; }
/* 2021/02/04 (T.Asato) Add End */


/****************************************************/
/**   ヘッダー    **/
/****************************************************/
header{
    height:82px;
    width:100%;
    background:rgba(0,37,136,0.9);    /* 2021/01/18 (T.Asato) Mod */
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
}

header h1{
    left:10px;
    position: absolute;
    top: 20px;
}

header h1 img{
    height:45px;  /* 2021/01/19 (T.Asato) Mod */
    width: auto;
}

header div.user_area{
    right: 30px;
    bottom: 30px;
    position: absolute;
    height: 20px;
}

header div.user_area p{
    color:#FFFFFF;
    display: inline-block;
    vertical-align: middle;
}

header p.logout{
    width:85px;
    height: 20px;
    background: url(../img/admin/common/btn_logout.png) no-repeat 0 0;
    margin-left:20px;
}

/****************************************************/
/**   お知らせ   2021-02-01 (T.Asato) Add           **/
/****************************************************/
.no_notice {
    text-align: center;
}
/* 2023-10-08 (T.Asato) Edit Start */
.new_arrival_mark {
    font-family: "acumin-pro",Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    transform: scale(0.8, 0.8);
    background-color: #FF0000;
    color: #FFFFFF;
    border-radius: 25px;
    line-height: 30px;
}
ul.notice_list li {
    display: inline-block;
    vertical-align: middle;
}
ul.notice_list li.new_arrival {
    width: 30px;
    height: 30px;
}
a.notice_list_item_link {
    position: relative;
    display: block;
    text-decoration: none;
}
a.notice_list_item_link:hover {
    background: #F5F5F5;
    color: #0000FF;
}

.notice::before{
  content: ' お知らせ '; white-space: pre; background-color: #33be40; color: #FFFFFF; }
.important::before{
  content: ' 重　　要 '; white-space: pre; background-color: #FFFF00; color: #000000; }
.failure::before{
  content: ' 障害情報 '; white-space: pre; background-color: #c32c1a; color: #FFFFFF; }
.emergency::before{
  content: ' 緊　　急 '; white-space: pre; background-color: #FF00FF; color: #FFFFFF; }

.admin_notice {
    width: auto;
    height: auto;
    padding: 5px 5px;
    border: 1px solid #808080;
    border-radius: 4px;
    color: #808080;
    font-size: 1.3em;
    text-align: left;
}
/* 2023-10-08 (T.Asato) Edit End */

.notice_detail_header{
  padding: 40px 80px;
  font-size: 1.5rem;
  border-top: 2px solid #808080;
  border-bottom: 2px solid #808080;
  text-align: center;
  /* font-size:70px  20251201 Koda お知らせタイトルフォントが大きすぎる*/
}

.notice_detail_signature{
  font-size: 1.0rem;
  text-align: right;
}

.notice_detail_body{
  font-size: 1.0rem;
  text-align: left;
}

.notice_detail_footer{
  text-align: center;
}


/****************************************************/
/**   承認情報   2023-10-10 (T.Asato) Mod  **/
/****************************************************/
a.approval_info {
    width: auto;
    font-size: 150%;
    padding: 1px 3px;
    position: static;
    cursor: pointer;
    margin-left: 5px;
    text-decoration: none;
}

a.approval_info:hover{
    opacity: 0.65;    /*ロールオーバーで透過*/
}

a.approval_info.recordmod {
    background-color: #1a9ea0;
    padding: 1px 3px;
    color: #FFFFFF;
}

a.approval_info.request {
    background-color: #1a9ea0;
    padding: 1px 3px;
    color: #FFFFFF;
}

/****************************************************/
/**   ナビゲーション    **/
/****************************************************/
nav{
    /*height:100%;*/   
    height:auto;    /*20250829　100％だとシステム管理者などのメニューが全表示の時に下の方のメニューに色がつかない*/
    width: 200px;
    background:#efefef;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

nav > ul{
    margin-top: 82px;
}

nav > ul > li{
    /*height: 50px;*/
    line-height: 50px;
    vertical-align: middle;
    /*background: url(../img/admin/common/list_mark.gif) no-repeat 20px 20px;   20250724 kobayashi*/
    background: none;
    border-bottom:#b4b5b5 solid 1px;
    padding-left: 35px;
    min-height: 50px;
    overflow: hidden;
}
/*20250724 kobayashi*/
nav > ul > li.has-submenu {
    background: url(../img/admin/common/list_mark.gif) no-repeat 20px 20px;
}

nav li a{
    color:#000000 !important;
    text-decoration: none !important;
    width: 100%;
    height: 100%;
    display: block;
}

nav > ul > li > a{
    height: 50px;
    display: block;
    z-index: 30;
}

nav > ul > li > ul{
    background-color: #bab8b9;
    margin-left: -35px;
    color: #FFFFFF;
    box-sizing: border-box;
    margin-top:-300%;
    overflow: hidden;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    box-sizing: border-box;
}

nav > ul > li > ul.opner{
    height: auto;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    margin-top: 0;
}

nav > ul > li > ul > li{
    height: 40px;
    line-height: 40px;
    padding-left: 35px;
    border-bottom: #FFFFFF dotted 1px;
    min-height: 40px;
}

nav > ul > li > ul > li:last-child{
    border-bottom: none;
}

nav > ul > li > ul a{
    color:#FFFFFF !important;
}




/****************************************************/
/**   コンテンツ    **/
/****************************************************/
#contents{
    padding-left: 230px;
    padding-top: 112px;
    padding-right: 30px;
    margin-bottom: 30px;
    min-width: 750px;
}

#contents section{
    margin-bottom: 50px;
}

#contents section > *,
#contents section form > *{
    margin-bottom:15px;
}


#contents h2{
    width:100%;
    font-size: 1.5em;
    border-bottom: #000000 solid 1px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#contents h3{
    font-size: 1.5em;
    border-left: #000000 5px solid;
    padding-left: 10px;
}

#contents div.names{
    float: left;
}

#contents h3 > span{
    display: inline-block;
    font-size: 0.8em;
    margin-left: 10px;
}

/****************************************************/
/**   テーブル    **/
/****************************************************/
ul.table_tag{
    width:100%;
}
ul.table_tag li{
    float: left;
    border-left: #000000 solid 5px;
    padding-left: 5px;
    width: auto;
}

ul.btns li.btns_title{    /* 2023-10-10 (T.Asato) Mod */
    width: auto;
    margin-left: 15px;
    font-size: 1.5em;
    color: #808080;
}

ul.btns li{     /* 2023-10-10 (T.Asato) Mod */
    float: left;
    width: auto;
    margin-right: 15px;
}

ul.btns li.disable{
    opacity:0.5;
    filter: alpha(opacity=50); /* IE lt 8 */
    -ms-filter: "alpha(opacity=50)"; /* IE 8 */
    -khtml-opacity: .50; /* Safari 1.x */
    -moz-opacity: .50; /* FF lt 1.5, Netscape */
}

ul.btns li:last-child{
    margin-right: 0;
}

table{
    background:#b4b5b5;
    border-collapse:separate;
    border-spacing:1px;
    width:100%;
}

/* 2019-08-28 (T.Asato) Add Start */
table.target_table th{
    padding:7px;
}
/* 2019-08-28 (T.Asato) Add End */

table th{
    background-color:#efefef;    /* 2021/01/19 (T.Asato) Mod */
    box-sizing:border-box;
    padding:10px;
    vertical-align:top;
    color: #000000;
}

table.info_table th{
    width:200px;
}

table th a{
    color: #FFFFFF !important;
}

/* 2019-08-28 (T.Asato) Add Start */
table.target_table td{
  padding:1px;    /* 2021-03-05 (T.Asato) Mod */
}
/* 2019-08-28 (T.Asato) Add End */

table td{
    background:#FFFFFF;
    box-sizing:border-box;
    padding:10px;
    vertical-align:middle;
}

table.thin_table th,
table.thin_table td{
    padding:6px 4px;
}

/* 2019-08-28 (T.Asato) Add Start */
table.thin_table_small th,
table.thin_table_small td{
    padding:3px 2px;
}
/* 2019-08-28 (T.Asato) Add End */

table td > input[type="button"],
input[type="button"].btn_normal_design{
    border: none;
    background: #1a9ea0;    /* 2021-01-25 (T.Asato) Mod */
    color: #FFFFFF;
    min-width:60px;   /* 2021-03-05 (T.Asato) Mod */
    box-sizing: border-box;
    padding: 2px 10px;
    width: auto;
}

table td > input[type="button"]:disabled,
input[type="button"].btn_normal_design:disabled{
    opacity: 0.6;
}


table tr.disable_tr td > input[type="button"]{
    background: #666666;
    margin-bottom: 3px;
}



table tr.disable_tr > td{
    background-color:#b0b0b0 !important;
    padding-bottom: 7px;
}

/**   追加用テーブル    **/

table.list_table{
    margin-top: -10px;
}

table.list_table th{
    background:url(../img/admin/user/th_bg.gif) no-repeat 10px center #52a5cb;
    padding-left:40px;
}

/* 2021/01/20 (T.Asato) Add Start */
table.login_table .group_signin_input{
    width: 150px;
    text-align: center;
    font-size: 18px;
    color: #000000;
}

table.login_table .admin_signin_input{
    width: 290px;
    text-align: left;
    font-size: 16px;
    color: #000000;
}
/* 2021/01/20 (T.Asato) Add End */

table.login_table tr:nth-child(1) th{
    background:url(../img/admin/user/th_bg.gif) no-repeat 10px center #efefef;    /* 2021/01/19 (T.Asato) Mod */
    padding-left:40px;
}

table.login_table tr:nth-child(2) th{
    background:url(../img/admin/user/th_bg2.gif) no-repeat 10px center #efefef;    /* 2021/01/19 (T.Asato) Mod */
    padding-left:40px;
}


table.list_table td span.entry_status{
    display: inline-block;
    background: #52a5cb;
    color: #FFFFFF;
    margin-right: 5px;
    padding: 3px 5px;
    margin: -3px 0;
}


/* 2022/11/24 (T.Asato) Add Start */
._sticky {
  position: sticky;
  left: 0;
  z-index: 1;
}
._sticky.th_00 {
  top: 0;
}
._sticky.th_40 {    /* 2023/09/29 (T.Asato) Add */
  top: 40px;
}
._sticky::before {
  pointer-events: none;   /* 2023/03/30 (T.Asato) Add */
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
}
._sticky.zi_02 {
  z-index: 2;
}
._sticky.clm_lf_35 {    /* 2023/09/29 (T.Asato) Add */
    left: 35px;
}
._sticky.clm_lf_160 {
    left: 160px;
}
._sticky.clm_lf_205 {
    left: 205px;
}
._sticky.clm_lf_285 {
    left: 285px;
}
._sticky.clm_lf_335 {
   left: 335px;
}
/* 2022/11/24 (T.Asato) Add End */

/**   勤務表テーブル    **/
/* 2021/06/03 (T.Asato) Add Start */
.sticky_table thead th {
    /* 縦スクロール時に固定する */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    /* tbody内のセルより手前に表示する */
    z-index: 1;
}
/* 2021/06/03 (T.Asato) Add End */

table.date_table th,
table.date_table2 th{
    width:200px;
    background:#efefef;
    vertical-align:middle;
    text-align: center;
    color: #000000;
}

table.date_table2 th{
    width: 70px;
    padding: 2px;
}

table.date_table th.month,
table.date_table2 th.month{
    background-color:#efefef;    /* 2021/01/19 (T.Asato) Mod */
    color: #000000;     /* 2021/01/19 (T.Asato) Mod */
    width: 100px;
    font-size: 1.2em;   /* 2021/01/19 (T.Asato) Add */
}

table.date_table td,
table.date_table2 td{
    text-align: center;
    vertical-align: middle;
    margin: 0.5px;
    padding: 0.5px;
    width: auto;
}

table.date_table2 td input{
    margin: 0.5px;
    padding: 0.5px;
    width: 100%;
}

table.date_table2 td select{
    margin: 1px;
    padding: 0.5px;
    width: auto;
}

table.date_table2 tr td:first-child{
    position:relative;
}

table.date_table2 div.caution_information{
    position: absolute;
    bottom:-10px;
    left: 0;
    width:300px;
    height: 15px;
    z-index: 2;
    border-radius: 3px;
    background: rgba(255,0,0,0.8);
    color:#FFFFFF;
    padding: 3px 10px;
    cursor: pointer;
}

table.date_table2 div.caution_information:before{
    content:'';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 8.7px 5px;
    border-color: transparent transparent rgba(255,0,0,0.8) transparent;
    left: 15px;
    top:-8.7px;
}

/* 2020-05-04 (T.Asato) Add Start */
table.date_table tr.leaving > td,
table.date_table2 tr.leaving > td,
td.leaving{
    background-color:#b0b0b0;
}
/* 2020-05-04 (T.Asato) Add End */

table.date_table tr.sun > td,
table.date_table2 tr.sun > td,
td.sun{
    background-color:#fcdfd6;
}


table.date_table tr.sat > td,
table.date_table2 tr.sat > td,
td.sat{
    background-color:#d2e5eb;
}

table.master_table th{
    text-align: center;
    vertical-align: middle;
}



/**   メニューテーブル    **/


table.menu_table{
    margin-bottom: 5px !important;
}
table.menu_table thead th{
    background:#efefef;
    width: 500px;

}

table.menu_table thead td{
    background:#efefef;
    text-align: right;
}


table.menu_table tbody th{
    background:#FFFFFF;
    text-align: left;
    padding-left: 50px;
}

table.menu_table thead th > input,
table.menu_table tbody th > select{
    width:90%;
}

table.menu_table tbody tr td:first-of-type{
    width: 150px;
    text-align: center;
}

div#menus > table.menu_table:first-child,
table.menu_table tbody tr:first-child{
   display: none;
}



div#menus > table.menu_table:nth-of-type(2) thead input.btn_minus,
div#menus > table.menu_table:nth-of-type(2) thead input.btn_top,
div#menus > table.menu_table:nth-of-type(2) thead input.btn_up,
table.menu_table tbody tr:nth-of-type(2) input.btn_top,
table.menu_table tbody tr:nth-of-type(2) input.btn_up,
table.menu_table tbody tr:nth-of-type(2) input.btn_minus{
    display: none;
}

table .time_col{
    width:80px !important;
}

table .summary{
    min-width:170px;
    width:auto !important;
}

/****************************************************/
/**   ボタン    **/
/****************************************************/
.buttons{
    float:right;
    width: auto;
    position: relative;
}

.buttons > li,
.buttons > input{
    width: 125px;
    height: 50px;
    float: left;
    margin-left: 10px;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/*.buttons #btn_add{background-image: url("../img/admin/common/btn_add.gif");}*/
.buttons #btn_add::after{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f067' ' 追加';
}

/*.buttons #btn_output{background-image: url("../img/admin/common/btn_output.gif");}*/
.buttons #btn_output_label::after{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f019' ' 出力';
}

/*.buttons #btn_save{background-image: url("../img/admin/common/btn_save.gif");}*/
.buttons #btn_save::after{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0c7' ' 保存';
}

/*.buttons #btn_delete{background-image: url("../img/admin/common/btn_delete.gif");}*/
.buttons #btn_delete::after{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f2ed' ' 削除';
}

/*.buttons #btn_calc{background-image: url("../img/admin/common/btn_calc.gif");}*/
.buttons #btn_calc::after{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f1ec' ' 集計';
}

/*.buttons #btn_login{background-image: url("../img/admin/common/btn_login.gif");}*/
.buttons #btn_login::after{ content: 'ログイン'; font-size: 100%; }

/*.buttons #btn_back{background-image: url("../img/admin/common/btn_back.gif");}*/
.buttons #btn_back::after{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f3e5' ' 戻る';
}

/*.buttons #btn_prev{background-image: url("../img/admin/common/btn_prev.gif");} */
.buttons #btn_prev::after{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f100' ' 前月';
}
/*.buttons #btn_next{background-image: url("../img/admin/common/btn_next.gif");}*/
.buttons #btn_next::after{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '翌月 ' '\f101';
}

/*.buttons #btn_approval{background-image: url("../img/admin/common/btn_approval.gif");}*/
.buttons #btn_approval::after{ content: '一括承認'; }

.buttons #btn_copy_prev_mon::after{ content: '前月分コピー'; font-size: 75%; }

p.user_name{
    background: url(../img/common/user_mark.png) no-repeat 10px 5px #FFFFFF;
    font-size: 1.3em;
    padding: 5px 0 10px 40px;
    border-left: #000000 solid 5px;
}

ul.buttons > ul#overlay{
    position: absolute;
    right: 0;
    top: 62px;
    height: auto;
    overflow: hidden;
    background:url(../img/common/list_bg.png) repeat;
    z-index: 3;
    display: none;
}

ul.buttons > ul.shown{
    display:block !important;
}

ul#overlay > li{
    padding-bottom:8px;
    margin-bottom: 8px;
    border-bottom: #CCCCCC solid 1px;
    width: 180px;
    text-align: right;
}

ul#overlay > li a{
    display: block;
    height: 100%;
    width: 100%;
    color: #FFFFFF !important;
}

/* 2021/01/25 (T.Asato) Add Start */
.circle_button {
    width: 120px;
    height: 40px;   /* 2021/03/11 (T.Asato) Mod */
    border: none;
    outline: none;
    border-radius: 25px;
    text-align:center;
    background-color: #1a9ea0;
    font-size: 180%;
    color:#FFFFFF;
    cursor: pointer;
    transition-duration: 0.5s;  /*透過時のふわっと動くはやさ*/
}

.circle_button > i{
    vertical-align: middle;
    margin-top: -3px;   /*縦位置微調整*/
}

.circle_button:hover{
    opacity: 0.65;    /*ロールオーバーで透過*/
}
/* 2021/01/25 (T.Asato) Add End */

/* 2021/12/02 (T.Asato) Mod Start */
.day_label {
    background-color:#FFFFFF;
    cursor: pointer;
    position: relative;
    min-width: 56px;
    text-align: right !important;
}
.day_label.sun{
    background-color:#FCDFD6;
}
.day_label.sat{
    background-color:#D2E5EB;
}
.day_label:hover {
    background: #1a9ea0 !important;
    color: white;
}
.day_label.day_button {
    font-size:100%;
    min-width:35px;
    padding:0.5px;
    text-align: center !important;
}
.day_button.calc_req {
    background:#FF0000;
    color:#FFFFFF;
}
.day_button.time_req {
    background:#0000FF;
    color:#FFFFFF;
}
/* 2021/12/02 (T.Asato) Mod End */

/****************************************************/
/**   フッター    **/
/****************************************************/
footer{
    width:100%;
    height:35px;      /* 2021/04/12 (T.Asato) Mod */
    position:fixed;
    bottom:0;
    left:0;
    background:#3c3b3b;
    padding-top: 10px;
    z-index: 2;
}

footer p.rev{
    float:left;
    margin:0 10px;
    color: #FFFFFF;
}

footer p.copyright{
    float:left;
}





#overlay{
    width:100%;
    height: 100%;
    position: fixed;
    background:url(../img/common/over_lay_bg.png) repeat;
    z-index: 10;
    display: none;

}


#overlay p#overlay_close{
    width:33px;
    height: 37px;
    background: url(../img/admin/common/btn_overlay_close.png) no-repeat 0 0;
    position: absolute;
    left: 50%;
    margin-left: -16.5px;
    bottom:5%;
}

#overlay div.message_area
{
    width: 50%;
    height: 30%;
    background-color: #FFFFFF;
    text-align: center;
    color: #000000;
    left: 50%;
    top: 50%;
    margin-left: -25%;
    margin-top: -15%;
    position: absolute;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    behavior:url("/PIE.php");
    min-height: 300px;
}

#overlay div.message_area > p.message_title{
    font-size: 200%;
}

#overlay div.message_area > p.message_det{

}

/* 2025.09.30 (R.Iwane) Add Start */
#overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.5); 
  display: none; 
  z-index: 1000;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none; 
  z-index: 1000;

  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90vw;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

#edit_punch_modal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90vw;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}


.punch-editable {
  min-height: 500px !important;
  max-height: 600px !important;
}


.modal-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 5px;
}

.modal-date {
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.punch-container {
  display: flex;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.punch-column {
  flex: 1 1 45%;  
  min-width: 300px;
  max-width: 45%; 
  padding: 10px;
  box-sizing: border-box;
}

.punch-header {
  display: flex;
  justify-content: center; 
  align-items: center;     
  height: 48px;
  font-weight: bold;
  background: #eee;
  padding: 0 5px;
  box-sizing: border-box;
}

.punch-record {
  display: flex;
  align-items: center;
  height: 48px; 
  width: 100%;
  box-sizing: border-box;
}

.punch-record {
  width: 90%;        
  max-width: 400px;
  min-width: 0;
}

.punch-original .punch-record {
    grid-template-columns: 1fr 1fr 1fr;
}

.punch-cell {
  flex: 1;
  padding: 4px;
  box-sizing: border-box;
}

.punch-cell input[type="time"],
.punch-cell input[type="text"] {
    width: 100%;
    padding: 3px 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.punch-cell input,
.punch-cell select {
  width: 100%;
  height: 32px;
  box-sizing: border-box;
}

.punch-cell button {
    padding: 3px 6px;
    font-size: 12px;
}

.button-area {
    margin-top: 20px;
    text-align: right;
}

.punch-record--short {
    grid-template-columns: 1fr 1fr; 
}

/* セル幅の調整（3列構造） */
.punch-cell:nth-child(1) { flex: 1.2; }  /* 区分 */
.punch-cell:nth-child(2) { flex: 1.2; }  /* 時間 */
.punch-cell:nth-child(3) { flex: 3; }  /* 地点名 or 空セル */
.punch-cell:nth-child(4) { flex: 0 0 60px; text-align: center; }  /* 削除ボタン（右列のみ） */

.punch-record {
  display: flex;
  align-items: center;
  height: 48px;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
}

.punch-cell {
  flex: 1;
  padding: 4px;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
}

.punch-cell:last-child {
  border-right: none;
}

.punch-column .punch-record:last-child {
  border-bottom: none;
}

.punch-header {
  background-color: #f5f5f5;
  font-weight: bold;
  border-bottom: 2px solid #aaa;
}

.work-point-wrap {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;  
}

.work-point-wrap select {
  flex: 0 1 auto;    
  max-width: 150px;
  min-width: 100px;
}

.work-point-other-input {
  flex: 1 1 auto;     
  min-width: 100px;
  width: auto;
}

.punch-cell input[type="time"] {
  width: 100%;
  min-width: 80px;
  max-width: 120px;
  box-sizing: border-box;
}

.punch-cell:nth-child(1) {
  flex: 0 0 60px; 
  min-width: 60px;
  max-width: 60px;
  text-align: center;
}

.punch-cell:nth-child(2) {
  flex: 1.2;
  min-width: 100px;
}

.work-point-other-input {
  color: #000 !important;           
  background-color: #fff !important; 
  border: 1px solid #ccc !important; 
}

.d-none {
  display: none !important;
}

.punch-cell.status-label {
    flex: 0 0 120px;
    min-width: 120px;
    max-width: 120px;
    text-align: center;
}
/* 2025.09.30 (R.Iwane) Add End */

#overlay .editor{
    padding: 10px;
    width: 80%;
    height: 77%;
    min-height: auto;
    background-color: #FFFFFF;
    text-align: center;
    color: #000000;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    behavior:url("/PIE.php");
    display: inline-block;
    min-height: 500px;

}

.editor{
    display: none;
}

#overlay .editor table{
    margin-bottom:15px;
}

#overlay .editor td{
    text-align: left;
    padding: 3px;
}

#overlay .editor td input[type="text"]
{
    width:99%;
}

.message_area > h3{
    margin: 100px auto 30px auto;
    font-size: 1.3em;
    font-weight: bold;

}

#output_list{
    display: none;;
    background:url(../img/common/over_lay_bg.png) repeat;
    position: absolute;
    width: auto;
    heigt:auto;
}

#output_list li{
    padding:10px;
    border-bottom: #FFFFFF dotted 1px;
}

#output_list li:nth-child(2){
    display:none;
}


#output_list li a{
    color:#FFFFFF !important;
}



ul.shown{
    display:block !important;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

td.on_mod{
    /* background-color: #FF0000 !important;        2025.09.30 iwane Upd*/ 
    border: 2px solid #FF0000 !important;
    position: relative;
}

td.on_mod2{
    /* background-color: #33be40 !important;        2025.09.30 iwane Upd*/
    border: 2px solid #33be40 !important;
    position: relative;
}
/* 2021-04-01 (T.Asato) Add */
td.day_schedule{
    border-width: medium;
    border-style: solid;
    border-color: #33be40 !important;
}

td input.times{
    width:60px !important;
    text-align: center;
    ime-mode:disabled;
}

/* 2021-05-11 (T.Asato) Add */
td input.req_times{
    width:60px !important;
    text-align: center;
    ime-mode:disabled;
}

td input.integer{
    width:20px !important;
    text-align: center;
    ime-mode:disabled;
}

td input.number{
    width:70px !important;
    text-align: right;
    ime-mode:disabled;
}

td input.dates{
    ime-mode:disabled;
    width: 100px !important;
}

/* 2019-04-29 (T.Asato) Add Start */
td input.workdates{
    ime-mode:disabled;
    width: 100px !important;
}
/* 2019-04-29 (T.Asato) Add End */

td input.onlyLetterNumber{
    ime-mode:disabled;
}

td input.txt{
    ime-mode:active;

}

td input.kana{
    ime-mode:active;
}

td textarea.summary{
    width:99%;
    height: 100px;
}

/* 2021-02-01 (T.Asato) Add Start */
td textarea.noticetext{
    width: 99%;
    height: 220px;
}
/* 2021-02-01 (T.Asato) Add End */

input.btn_plus,
input.btn_minus,
input.btn_top,
input.btn_bottom,
input.btn_up,
input.btn_down{
    width:20px !important;
    height: 20px !important;
    display: inline-block;
    min-width: 0  !important;
    min-height: 0;
    margin: 0 4px;
    border:none;
}

input.btn_plus{background: url(../img/admin/menu/btn_add.png) no-repeat 0 0 !important;}
input.btn_minus{background: url(../img/admin/menu/btn_minus.png) no-repeat 0 0 !important;}
input.btn_top{background: url(../img/admin/menu/btn_top.png) no-repeat 0 0 !important;}
input.btn_bottom{background: url(../img/admin/menu/btn_bottom.png) no-repeat 0 0 !important;}
input.btn_up{background: url(../img/admin/menu/btn_up.png) no-repeat 0 0 !important;}
input.btn_down{background: url(../img/admin/menu/btn_down.png) no-repeat 0 0 !important;}



/**LOADER**/
.loader_wrap{
    width:100%;
    height: 100%;
    display: none;
    position: fixed;
    top:0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.5);

}
.loader {
    position: absolute;
    display: inline-block;
    top:50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
    border: 2px solid #0cf;
    border-radius: 50%;

    animation: spin 0.75s infinite linear;
}
.loader::before,
.loader::after {
    left: -2px;
    top: -2px;
    display: none;
    position: absolute;
    content: '';
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
}

.loader-4 {
    border-top-color: transparent;
}
.loader-4::after {
    display: block;
    border-color: transparent;
    border-top-color: #0cf;
    animation: spin 1.25s infinite linear reverse;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



.list_controler > *{
    vertical-align: middle;
}
.list_controler > p{
    display: inline-block;
}


label.hasParent{
    margin-left:15px;
}

td.group_id_td > *{
    display: inline-block;
}
div.group_ids{
    letter-spacing: -0.40em;
    width: auto;
}

td.group_id_td2 > div.group_ids{
    margin-left: 5px;
    margin-right: -10px;
}

span.parent_mark{
    letter-spacing: normal;
    display: inline-block;
    width: 10px;
    height: 12px;
    box-sizing: border-box;
    border-left:#CCCCCC solid 1px;
    border-bottom:#CCCCCC solid 1px;
    -webkit-transform: translate(0,-4px);
    -ms-transform: translate(0,-4px);
    transform: translate(0,-4px);
    margin-left: 3px;
    margin-right: 3px;
}

span.parent_mark.mark_brank{
    border:none !important;
}




#entry_list{
    background:#efefef;
    padding: 20px;
    margin-top: 50px;

}

#entry_list h3{
    border-bottom: #000000 solid 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

#entry_list li{
    border-bottom:#8f8f8f solid 1px;
    margin-bottom: 10px;
    padding: 3px 0 10px 0;
}

#entry_list li:last-child{
    border-bottom:none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

#entry_list li span{
    display: inline-block;
    background: #52a5cb;
    color: #FFFFFF;
    margin-right: 5px;
    padding: 3px 5px;
    margin: -3px 0;
}

span.record_type_names{
    background-color: transparent !important;
    color:#FF0000 !important;
    border:#FF0000 solid 1px;
    display: inline-block;
    padding: 3px 5px;
}

/* 2019-08-28 (T.Asato) Add Start */
span.record_type_names_small{
    background-color: transparent !important;
    color:#FF0000 !important;
    border:#FF0000 solid 0.5px;
    display: inline-block;
    padding: 1px 3px;
}
/* 2019-08-28 (T.Asato) Add End */

div.record_types{
    border:#b4b5b5 solid 1px;
    padding: 20px;
    width:100%;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.01);
    margin-top: 5px;
}

div.record_types p{
    border-bottom:#b4b5b5 solid 1px;
    padding-bottom:5px;
    margin-bottom: 5px;
}

div.table_wrap{
    width:100%;
    overflow: auto;
}

div.output_conditions{
    float: left;
}

div.output_conditions dl{
    margin-bottom: 5px;   /* 2021/01/19 (T.Asato) Mod */
}

div.output_conditions dl > *{
    display:inline-block;
    padding: 3px 5px;
}

div.output_conditions dl > dt{
    background-color:#efefef;   /* 2021/01/19 (T.Asato) Mod */
    color: #000000;   /* 2021/01/19 (T.Asato) Mod */
    width:100px;
    text-align: center;

    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
    border-left: 1px solid #999999;
    border-right: 1px solid #999999;
}

div#contents.transport_contents{
    position:absolute;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    padding: 100px 20px 65px 220px;   /* 2021/04/12 (T.Asato) Mod */
    box-sizing: border-box;
    width:100%;
}

div#transport_display{
    position:relative;
    height:100%;
    overflow: hidden;
    padding-top: 45px;    /* 2021/03/11 (T.Asato) Mod */
    box-sizing: border-box;
    width:100%;
}

div#transport_display div.pager{
    position: absolute;
    top:0;
    right:0;
}

div#transport_display > section{
    height:50%;
    max-height:50%;
    min-height:50%;
    overflow-y: scroll;
    margin-bottom: 0;
    width:100%;
    box-sizing: border-box;
}

div#transport_display section#tranport_input_area{
    height:50%;   /* 2021/03/11 (T.Asato) Mod */
    max-height: 50%;    /* 2021/03/11 (T.Asato) Mod */
    min-height: 50%;
    /*margin-bottom: 5px;*/     /* 2021/04/12 (T.Asato) Mod */
    /*margin-bottom: -30px;   20250829　交通費下の勤務表が下が見切れる*/ /* 20251024 koda 削除*/
    overflow-y: hidden;
    /*padding-bottom: 32px;*/
    padding-bottom: 65px;   /*20250829　交通費下の勤務表が下が見切れる*/
}

div#transport_display section#tranport_input_area > div.input_inner{
    overflow-y: scroll;
    height: 100%;
    min-height: 100%;
    margin-bottom: 0;
}

/* 2019-09-26 (T.Asato) Mod Start */
div#transport_display section#tranport_input_area > div.input_bottom{
    padding-right: 17px;
}
/* 2019-09-26 (T.Asato) Mod End */

/* 2025-11-04 (T.Yagi) Add */
div#transport_display #user_list {
    padding-bottom: 25px;
}

/* 2020-03-24 (T.Asato) Add Start */
div.user_belong_input_area{
    border: 1px solid #b4b5b5;
    overflow-y: scroll;
    height: 270px;
    min-height: 270px;
    margin-bottom: 0;
}
/* 2020-03-24 (T.Asato) Add End */

td.date_col{
    width:130px;
}

/* 2021-03-06 (T.Asato) Mod Start */
table.transport_total_table td{
    padding: 1px  !important;
    height: 30px;
}

td.divide_col{
    width:170px;
}
td.divide_col select{
    width:170px;
    box-sizing: border-box;
}

td.title_col{
    width:680px;
}
td.title_col input[type='text']{
    width:100%;
    box-sizing: border-box;
}

td.int_col_days{
    width:50px;
}
td.int_col_days input[type='text']{
    width:50px;
    box-sizing: border-box;
}
td.total_int_col_days{
    width:52px;
}

td.int_col{
    width:55px;
}
td.int_col input[type='text']{
    width:55px;
    box-sizing: border-box;
}
td.total_int_col{
    width:57px;
}

td.int_col_long{
    width:60px;
}
td.int_col_long input[type='text']{
    width:60px;
    box-sizing: border-box;
}
td.total_int_col_long{
    width:62px;
}

td.int_col_price{
    width:70px;
}
td.int_col_price input[type='text']{
    width:70px;
    box-sizing: border-box;
}
td.total_int_col_price{
    width:72px;
}
/* 2021-03-06 (T.Asato) Mod End */

input:read-only{
    background-color: rgb(235, 235, 228);
    color: rgb(84, 84, 84);
    border:rgb(169, 169, 169) solid 1px;
    padding: 3px;
}

tr.buf_row,
tr.del_row{
    display: none;
}

table.target_table td.btn_delete_col{
    width:30px;
}

span.record_holiday{
    background-color:#FF0000;
    padding: 1px 3px;
    color: #FFFFFF;
    font-size: 80%;
    position: absolute;
    top: 1px;
    left: 1px;
}

/*残業申請*/
.message_area > h4 {
    margin: 7px auto 7px auto;
    font-size: 1.2em;
    font-weight: bold;
}

.message_area .ui-state-default {
    color: #FFFFFF;
    background: #1a9ea0;
    font-size: 140%;
    margin: 0 5px;
    cursor: pointer;
}

.message_area .ui-state-default:hover{
    opacity: 0.55;
}

.document_index .master_table{
    width: 1600px;
}

.document_index .ta_center{
    width: 100px;
}

.worktime_hide_container2{
    width:250px; 
    height:190px;
}

.login #contents {
    padding: 100px;
}

.group_login #contents {
    padding: 100px;
}

.error_page #contents{
    padding: 100px;
} 

.error #contents{
    padding: 100px;
} 

/*.user_index .LoginName_td{
    width:10%;
}

.user_index .ValidStartDate{
    width:100px;
}

.user_index .ValidEndDate{
    width:100px;
}*/
.syozoku_list{
    float:right; 
    margin-left:10px;
}

.routepoint .routepoint_hide_container{
    min-width: 850px; 
    min-height: 350px;
}

.routepoint .hide_input{
    width: 300px;
}

.confirm_dialog.ui-dialog {
    width: 435px;
}

.approvalhistory2 .hide_table {
    min-width: 850px; 
    min-height: 350px;
}

.approvalhistory2 .requestform {
    float: left;  
}

.approvalhistory2 .hide_th {
    width: 340px;
}

.approvalhistory2 .requestform {
    width: 100%;
}

/* 202509010 スマホ対応用に追加 
.flexbox .row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 7% 1rem;
}

.flexbox ul.buttons {
    float: none;
}*/


/* H.Koda add スマホ対応 文書管理 管理側画面用 */
div.documentmanage table.master_table {
    width: 1500px;
}

/* 20250917 H.Koda add スマホ対応 各種申請履歴画面用 */
div.requesthistory2 table.master_table {
    width: 1350px;
}

/* yagi templateのstyleより移動 start*/

/* template/admin/requestapply/index.tpl.php 0924 */

.requestapply_index .mobile_sum {
    min-width: 300px;
}

/* template/admin/route/index.tpl.php 0924 */

.route_index .route_hide_table {
    min-width: 850px;
}

.route_index .route_hideform {
    margin-left:60px;
}

.route_index .hide_th {
    width: 220px;
}

.add_new_row_case6 {
    width: 450px;
}

.view_route_detail_case6 {
    width: 450px;
}
/* requesthistory2  */
.requesthistory2_index .hide_wid {
    width: 220px;
}

.requesthistory2_index .hide_requestform ,
.requesthistory2_index .hide_editform {
    margin-left:60px;
    margin-top:30px;
}

.requesthistory2_index .edit_mas_table,
.requesthistory2_index .hide_mas_table {
    min-width: 850px;
}

.requesthistory2_index .sum_mob {
    min-width: 500px;
}

/* インラインcssをそのまま移動したためmobile.cssにも!important */
 .buttons4 {
    width:auto !important;
}

.transportconfirm_output .label_size {
    font-size: 150%;
}

/* yagi templateのstyleより移動 end */

/* 20250924 H.Koda add スマホ対応 インラインcssの移動 */
    div table:not(.thin_table_small, #user_belong_table) ._sticky, /* 20251201 Koda ユーザー情報画面で干渉 変更 */
    .daystatesums table tr td._sticky:first-of-type{
        min-width:160px;
    }

     div table:not(.thin_table_small) ._sticky.clm_lf_160,
    .daystatesums table .clm_lf_160{
        min-width:45px;
    }
    
     div table:not(.thin_table_small) ._sticky.clm_lf_205,
    .daystatesums table .clm_lf_205{
        min-width:80px;
    }
     
     div table:not(.thin_table_small) ._sticky.clm_lf_285,
    .daystatesums table .clm_lf_285{
        min-width:50px;
    }
     div table:not(.thin_table_small) ._sticky.clm_lf_335,
    .daystatesums table .clm_lf_335{
        min-width:50px;
    }
    div.users select{
        font-size:85%;
    }

/* 20250929 H.Koda add スマホ対応 インラインcssの移動 */

.requesttitle #overlay .editor #requestform{
float: left; 
margin-top:30px; 
margin-left:60px;
}

.requesttitle #overlay .editor #request_title{
font-size:25px; float: left; 
 text-align: left; width: 100%; 
 border-bottom: #000000 solid 1px; 
 padding-bottom: 10px; 
 margin-bottom: 20px;
}

.requesttitle #overlay .editor table{
    min-width: 850px; 
    min-height: 350px;
}


#overlay .editor td input[type="text"].datepickeradd.datepicker{
    width:200px/* !important */; /* 20250929 H.Koda del */
}

.users #overlay .editor td input[type="text"] {
     width: auto !important; /* 20250929 H.Koda del*/
}

.users #overlay .editor td input.dates {
    ime-mode: disabled;
    /* width: 100px !important; 20250929 H.Koda del*/
}
.documentmanage td.ta_center.va_middle{
    width: 90px;
}
.documentmanage ul.buttons.clearfix{
    margin-right: 150px;
}
.documentmanage #overlay table tr:first-of-type th:first-of-type {
    width: 220px;
}

.documentmanage #overlay .editor div:is(#catform, #requestform, #editform) {
    float: left; 
    margin-top:30px; 
    margin-left:60px;
}

.documentmanage #overlay .editor label:is(#cat_title, #request_title, #edit_title) {
    font-size:25px; 
    float: left; 
    text-align: left; 
    width: 100%; 
    border-bottom: #000000 solid 1px; 
    padding-bottom: 10px; 
    margin-bottom: 20px;
}

.documentmanage #overlay .editor table:is(#cat_detail, #request_detail, #edit_detail) {
    min-width: 850px; 
    min-height: 350px;
}

.approval3 #requestform{
    float: left; 
    margin-top:30px; 
    margin-left:60px;
}

.approval3 #requestform #request_title{
    font-size:25px; 
    float: left; 
    text-align: left; 
    width: 100%; 
    border-bottom: #000000 solid 1px; 
    padding-bottom: 10px; 
    margin-bottom: 20px;
}

.approval3 #requestform #request_detail{
    min-width: 850px; 
    min-height: 350px;
}

.approval3 #requestform th.w220{
    width: 220px;
}

/* 20251001 H.Koda スマホ対応 インラインcssの移動 flexboxの追加 */
.flexbox {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.record .row{
    display: flex;
    flex-direction: row;
}

.record .row button {
    margin-left: 15px;
}

.record .f-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.record .f-str{
    width: 300px;
    flex-basis: 700px;
}

.record .f-btn .row:first-of-type li{
    width: 125px;
    margin-left: 10px;
}

.record .work_status_alert{
    height: 80px; 
    margin-top: 30px; 
    color: #FF0000; 
    font-size: 2.7em;
}

.record .is_month_fixed{
    font-size: 2.5em; 
    background-color: #FFFF00; 
    text-align: center;
}

/* 20260219 R.Iwane 残業アラートCSS追加 Start */
.record .is_month_fixed2{
    font-size: 25px; 
    background-color: #FFFF00; 
    text-align: center;
}
/* 20260219 R.Iwane 残業アラートCSS追加 End */

.record #overlay :is(#requestform, #requeststatus_none, #requeststatus, #timetable_none, #timetable){
    float: left; margin-top:30px; margin-left:30px
}

.record #overlay :is(#request_title, #requeststatus_title, #timetable_title){
    font-size: 25px;
}

.record #overlay :is(#timetable_basetime, #timetable_overall){
    font-size: 20px;
}

.record #overlay :is(#requeststatus>.scroll-wrap, #timetable>.scroll-wrap){
    max-height: 500px; 
    max-width: 800px;
    /* overflow-x: auto; 
    overflow-y: scroll; */
    overflow: auto;
}

.record #overlay #timetable>.scroll-wrap{
    max-width: 750px;
}

.record #overlay .editor table{
    min-width: 0;
    min-height: 0;
}

.record #overlay p{
    margin: 50px 0; font-size: 30px;
}

.record #overlay p#overlay_close {
    bottom: 0%;
} 

.record #Attendance .th .stamp_th{
    min-width:200px;
}

table :is(#targetYM, #targetMonth, #TargetYear){
    font-size: 25px;
}

.overtimelist :is(#year_month_container, #custom_month_input){
    align-items: center;
}

.overtimelist input#targetYear {
    font-size: 25px; 
    width: 90px;
}

.overtimelist input#targetMonth {
    font-size: 25px; 
    width: 60px;
}

.overtimelist #custom_month_input a{
    font-size: 1.3rem;
}

.overtimelist.output td:first-of-type{
    min-width: 160px;
}

.overtimelist.output td:nth-of-type(3){
    min-width: 120px;
}

div#media-table{
    width: 100%;
    overflow-x: auto;
}

.users div.floatleft{
    float: left;
}

/* 20251202 Koda add start*/
#overlay .editor .scrolltd{
    white-space: nowrap;
    max-height: 600px;
    overflow: auto;
}
/* 20251202 Koda add end*/

/* 20251023 koda 交通費精算画面　在宅手当支給対象日欄 追加 */
table.transport_total_table td:is(.title_calc, .total_price){
    background-color: #efefef;
}

table.transport_total_table{
    /* width: 900px;
    margin: 0 0 0 auto; */
}

table.transport_total_table .price_total{
    width: 90px;
}

table.transport_total_table .title_calc{
    width: 70px;
}

table.transport_total_table .narrow{
    width: 200px;
}

/* table.transport_total_table .empty{
    width:800px;
} */

table.transport_total_table td{
    padding: 0 13px!important;
}
/* 20251023 koda 追加 end*/

/* 1001 yagi add admin/index.tpl */
@media screen and (max-width: 1370px) {
    .admin_index .row ,
    body.admin_index li.mobile_title{
        display: flex;
        align-items: center;
        margin: 0 7% 0.7rem;
    }

    body.admin_index li.mobile_title {
        float: none;
	}

    .admin_index .admin_notice {
        justify-content: center;
    }
}

@media screen and (min-width: 1371px) and (max-width: 1760px) {
    .admin_index .table-top {
        margin-top: 15px;
    }
}

/*20251113 koda 追加 start*/

.overtime_alert_table {
    height: auto;
}

.admin_index #display_modal .scrol-wrap{
    width: 100%;
    height: 600px;
    overflow: auto;
}

.admin_index .modal_wrapper{
    margin: 30px 30px 0 30px;
}

.admin_index #display_modal .flexbox{
    justify-content: center;
}

.admin_index #display_modal .modal-title{
    font-size: 25px;
    text-align: left;
    border-bottom: 1px solid #000;
}
.admin_index #display_modal thead th{
    height: 24px;
    padding: 3px;
}

.admin_index .alert_wrapper{
    align-items: flex-start;
    text-align: left;
    flex-basis: 50%;
    margin: 0;
    padding: 0 0  0 7%;
}

.alert_wrapper span{
    font-size: 18px;
    line-height: 22px;
}

.yellow_alert{
    background: #fbff47;
}
.red_alert{
    background: #FF0000;
}

.yellow_alert .alert_title{
    background-color: #fbff47;
}

.red_alert .alert_title{
    background-color: #ff4b4b;
}

.yellow_alert td{
    background-color: #feffee;
}
.red_alert td{
    background-color: #ffecec;
}

/*20251113 koda 追加 end*/

/* 20251201 Koda 追加 start */
.authority .scrolltd {
    white-space: nowrap;
    max-height: 650px;
    overflow: auto;
    font-size: 75%;
}

.authority #overlay .editor .scrolltd {
    white-space: nowrap;
    max-height: 600px;
    overflow: auto;
    font-size: 75%;
}

/* 20251201 Koda 追加 end */

/* 20251203 yagi add */
.trans_label {
    min-width: 56px;
    max-width: 56px;
}

.trans_day_label {
    position: relative;
    text-align: right !important;
}

/* 2026-01-14 kamimura 非表示toggle */
#sub_area2 {
        justify-self: right;
        margin-right: 45px;
        margin-bottom: 0 !important;
        display: flex;
        align-items: center;
    }

    .hide_toggle {
        position: relative;
        display: inline-block;
        width: 75px;
        height: 41px;
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .hide_toggle_input {
        opacity: 0;
        width: 0;
        height: 0;

        &:checked+.toggle_slider {
            background: #1a9ea0;

            &:before {
                transform: translateX(30px);
            }

            i {
                transform: translateX(30px);
            }
        }

        &:focus-visible+.toggle_slider {
            outline: 2px solid;
        }
    }

    .toggle_slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: 0.4s;
        border-radius: 64px;

        &::before {
            border-radius: 50%;
            position: absolute;
            content: "";
            height: 30px;
            width: 30px;
            left: 8px;
            bottom: 6px;
            background: #fff;
            transition: 0.3s;
        }

        i {
            position: absolute;
            left: 8px;
            bottom: 6px;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            color: #a4a4a4;
            pointer-events: none;
            transition: transform 0.3s;
            font-size: 18px;
        }
    }