/* -------------------------------------------
style.css
---------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');
@import url(https://use.fontawesome.com/releases/v5.10.0/css/all.css);
/* --------------------------------------------
body
----------------------------------------------- */
body{
    font-family:'メイリオ', 'Meiryo', sans-serif;
    min-width: 1000px;
    color: #707070;
  }

/* --------------------------------------------
header
----------------------------------------------- */
header{
    background-color: #00A2A4;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: fixed;
    z-index: 99;
}
.header_title img{
    width: 70px;
}
/* --------------------------------------------
footer
----------------------------------------------- */
footer p{
    text-align: center;
    font-size: 12px;
}

/* --------------------------------------------
共通:全体
----------------------------------------------- */
.max1000{
    max-width: 1000px;
    margin: 0 auto;
}
.max1200{
    max-width: 1200px;
    margin: 0 auto;
}
.contents_area{
    width: 80%;
    margin: 0 auto;
    padding: 5% 0;
}
.contents{
    margin-top: 50px;
}
h1{
    font-size: 20px;
    border-left: 5px solid #00A2A4;
    font-weight: bold;
    padding: 6px 0;
    padding-left: 7px;
    margin-bottom: 20px;
}
.red_bold {
    font-size: 14px;
	color:red;
    font-weight: bold;
}
.pre_text {
	white-space: pre-wrap !important;
}

/* --------------------------------------------
共通:ボタン
----------------------------------------------- */
.btn_area{
    text-align: center;
    margin: 20px 0;
}
.reg_del_area{
    margin: 5px 0;
}
.red_btn{
    background-color: #97000F;
}
.blue_btn{
    background-color: #162640;
}
.red_btn,.blue_btn,.cancel_btn{
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 30px;
    text-shadow: 0 0 5px rgba(0,0,0,.5);
    transition-duration: 0.2s;
  }
 .red_btn:hover,.blue_btn:hover{
      opacity: 0.7;
  }
 .btn_right{
    text-align: right;
}
.btn_left{
    text-align: left;
}
.small_btn{
    padding: 3px 20px;
    font-size: 14px;
}
.cancel_btn{
    background-color: #707070;
}
/* --------------------------------------------
共通:ドロワーメニュー
----------------------------------------------- */
.drawer-hamburger-icon, .drawer-hamburger-icon:after,
.drawer-hamburger-icon:before{
    background-color: #fff !important;
}
.drawer-nav{
    text-align: left !important;
    background-color: #162640 !important;
    opacity: 0.9 !important;
}
.drawer-menu-item{
    color: #fff !important;
    border-bottom: 1px solid #fff !important;
    padding: 1rem !important;
}

.drawer-menu-name{
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    padding-top: 3rem !important;
}
/* --------------------------------------------
テーブル
----------------------------------------------- */
/* 対象者情報テーブル */
.table_area{
    margin-bottom: 40px;
}
.table_date{
    font-weight: bold;
    font-size: 18px;
}
.table_area table{
    width: 100%;
}
.table_area th,.table_area td{
    border: 1px solid #707070;
    padding: 6px 10px;
    text-align: center;
    vertical-align: middle;
}
.table_area td a{
    color: #162640;
    font-weight: bold;
    transition-duration: 0.3s;
}
.table_area td a:hover{
    opacity: 0.8;
}
.table_area th{
    color: #fff;
    font-weight: bold;
    background-color: #00A2A4;
}
.th_mail{
    font-size: 0.8rem;
    width: 20%;
}
.cancel_text{
    font-size: 0.7rem;
}
.target_select_table tr th{
	font-size:	14px;
}
.target_select_table tr th:first-child{
	width:30px;
}
 .target_select_table tr td:nth-child(2){
	font-size:	12px;
	width:	120px;
}
 .target_select_table tr td:nth-child(3){
 	width:	90px;
 }
 .target_select_table tr td:nth-child(4){
 	width:	150px;
 }
  .target_select_table tr td:nth-child(5){
 	width:	100px;
 }
 .target_table_top{
 	display: flex;
 	justify-content: space-between;
 	align-items: flex-end;
 }

/* 検索・設定テーブル */
.gray_table{
    width: 80%;
    background-color: #D4D4D4;
    border-radius: 10px;
    padding: 40px 40px 20px 40px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.gray_table th, .gray_table td{
    padding: 10px;
    vertical-align: middle;
}
.gray_table input[type="date"],.gray_table input[type="text"],
.gray_table input[type="time"],.gray_table select {
	background-color: #fff;
	border-radius: 3px;
	padding: 0.3em;
}
.gray_table input[type="date"]:hover,.gray_table input[type="date"]:focus,
.gray_table input[type="time"]:hover,.gray_table input[type="time"]:focus,
.gray_table input[type="text"]:hover,.gray_table input[type="text"]:focus,
.gray_table select:hover,.gray_table select:focus,
.gray_table textarea:hover,.gray_table textarea:focus {
    background-color: #00A2A4;
    color: #fff;
    transition-duration: 0.2s;
}

.gray_table input[type="date"],.gray_table input[type="time"]{
	width: 175px;
}

.gray_table input[type="text"],.gray_table select {
	width:230px;
}

.gray_table select {
	-webkit-appearance: auto !important;
	appearance: auto !important;
}

.gray_table textarea {
	width: 300px;
	min-height: 150px;
	background-color: #fff;
	border-radius: 3px;
	padding: 0.3em;
}

/* ユーザー情報テーブル */
.user_table th,.user_table td{
    text-align: left;
}
.user_table .user_info_detail_table th {
    width: 40%;
}
.del_text{
    font-size: 0.8rem;
}
.userinfo_question{
	text-align: left;
    font-size: 0.9rem;
    padding: 5px;
}
.d_bd{
    border-bottom: 1px dashed;
}
.qa_number{
    font-weight: bold;
    margin-right: 5px;
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.pulldown_items{
    transition: all 0.2s ease-in-out;
    display: none;
}
.pulldown_items th{
    opacity: 0.8;
    padding: 0;
    margin: 0;
}
.pulldown_items td{
    padding: 0;
    text-align: right;
}
.pulldown_items p{
    display: none;
    padding: 5px;
}
.table_details_title{
    transition: all 0.2s ease-in-out;
}
.memo_file{
    padding: 2px 5px;
}
.memo_btn_area{
    text-align: left;
    min-width: 130px;
    padding: 8px 10px 5px 0;
}
.memo_btn_double i,.memo_btn_double a,
.memo_btn_double_left i, .memo_btn_double_left a{
    color: white!important;
}
.memo_btn_double{
    width: 100%;
    text-align: right;
    margin: 5px 0;
    display: inline-block;
}
.memo_btn_double_left{
    width: 100%;
    text-align: left;
    margin: 5px 0;
    display: inline-block;
}
.canvas_area{
    width: 100%;
    height: auto;
}
.remodal {
  position: relative;
  padding: 25px;
  width: 80%;
  height: 80vh;
  border-radius: 10px;
}
.remodal img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.remodal-cancel {
  color: #fff;
  background: #000000;
  background-color: #162640!important;
  width: auto;
  margin-top: 25px;
  padding: 10px 15px;
  border-radius: 5px;
  bottom: 0;
}
.remodal-cancel:hover {
  background: #333;
}
.canvas_area{
    width: 100%;
    height: 98%;
}
.memo_textarea{
    padding: 0 20px 10px 20px;
}
.memo_btn_area textarea{
    padding: 5px;
    width: 100%;
    background-color: #fff8d4;
    border: 1px solid #f5d014;
    height: 40px;
    border-radius: 2px;
}
.memo_btn_area textarea:focus{
    background-color: #a3e2e3;
    border: 1px solid #00A2A4;
}
.memo_btn_area textarea::placeholder{
    font-size: 0.7rem;
}
.user_note_area textarea {
	border: solid 1px #aaa;
	width: 100%;
	min-height: 7em;
}
/* -----------------------------------------------
トグルボタン
-------------------------------------------------- */
.switch {
    display: flex;
    align-items: center;
}
.switch span{
    color: #fff;
    font-size: 14px;
}
.switch__label {
    width: 50px;
    position: relative;
    display: inline-block;
}
.switch__content {
    display: block;
    cursor: pointer;
    position: relative;
    border-radius: 30px;
    height: 24px;
    overflow: hidden;
}
.switch__content:before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    top: 0;
    left: 0;
    border: 1.5px solid #E5E5EA;
    border-radius: 30px;
    background-color: #fff;
}
.switch__content:after {
    content: "";
    display: block;
    position: absolute;
    background-color: transparent;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    border-radius: 30px;
    -webkit-transition: all .2s;
       -moz-transition: all .2s;
        -ms-transition: all .2s;
         -o-transition: all .2s;
            transition: all .2s;
}
.switch__input {
    display: none;
}
.switch__circle {
    display: block;
    top: 0;
    left: 2px;
    position: absolute;
    -webkit-box-shadow: 0 2px 6px #999;
            box-shadow: 0 2px 6px #999;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 20px;
            border-radius: 20px;
    background-color: #fff;
    -webkit-transition: all .2s;
       -moz-transition: all .2s;
        -ms-transition: all .2s;
         -o-transition: all .2s;
            transition: all .2s;
}
.switch__input:checked ~ .switch__circle {
    left: 26px;
}
.switch__input:checked ~ .switch__content:after {
    background-color: #00A2A4;
    top: 0;
    left: 0;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
}
/* --------------------------------------------
設定
----------------------------------------------- */
.radio_text{
    margin: 0 40px 0 5px;
}
.setting_table{
    width: 70%;
}
.setting_table th{
    width: 40%;
}

.individual_config_meeting_info {
	font-weight: bold;
	padding-left: 10px;
	width: 70%;
	margin: 15px auto;
}

/* --------------------------------------------
ログイン画面
----------------------------------------------- */
.login{
    background-color: #00A2A4;
}
/* .login h1{
    font-size: 6rem;
    color: #fff;
    text-align: center;
} */
.login_table{
    background-color: #D4D4D4;
    width: 70%;
    margin: 0 auto;
    border-radius: 18px;
}
.login h1{
    text-align: center;
    font-weight: bold;
    background-color: #fff;
    font-size: 20px;
    padding: 20px;
    border-radius: 18px 18px 0 0;
    box-shadow: 2px 2px 4px;
    border-left: none;
}
.login_input{
    padding: 50px 20px 20px 20px;
}
.login_input table{
    width: 100%;
}
.login_input th, .login_input td{
    padding: 10px;
    vertical-align: middle;
}
.login_input input[type="email"],.login_input input[type="password"]{
    background-color: #fff;
    border-radius: 3px;
    padding: 0.7em 0.3em;
    width: 100%;
    margin: 10px 0;
}
.login_input input[type="password"]:hover,.login_input input[type="password"]:focus,
.login_input input[type="email"]:hover,.login_input input[type="email"]:focus{
    background-color: #00A2A4;
    color: #fff;
    transition-duration: 0.2s;
}
.login_input input::placeholder:hover{
    color: #fff;
}
.login_btn{
    font-size: 20px;
    padding: 13px 40px;
    margin-top: 32px;
}
.login_text{
    font-size: 12px;
    margin: 20px;
}
.main_logo_area{
    text-align: center;
}

/* -----------------------------------------------
チャットエリア
-------------------------------------------------- */

.hidden {display:none;}

.existence{
	border-style	:solid;
	border-color	:black;
	border-width	:thin;
	border-radius	:50%;
	cursor			:default;
	display			:inline-block;
	position		:absolute;
 	width			:15px;
	height			:15px;
	padding			:0px;
	margin			:0px;
	right			:0px;
	bottom			:0px;
}

.chat_area{
    width: 100%;
    margin-bottom: 40px;
}
.chat_title{
    width: 100%;
    background-color: #00A2A4;
    color: #fff;
    padding: 10px;
}
.chat_title p{
    padding: 6px 10px;
}
.chat_message_area{
    background-color: #D4D4D4;
    padding: 15px;
    height: 700px;
    overflow-y: scroll;
}

.chat_notification{
    text-align: center;
    font-size: 12px;
    color: #fff;
    /* margin: 3px 0; */
}
.chat_notification p{
    margin: 10px 0;
}
.chat_notification span{
    background-color: #707070;
    border-radius: 10px;
    width: auto;
    padding: 0 5px;
}

.send_time{
    font-size: 10px;
    margin:0 5px;
}
/*相手からのメッセージ*/
.yourcomment{
    margin: 15px 0;
}
.chat_conversation {
    width: 100%;
    margin: 10px 0;
    overflow: hidden;
  }

 .faceicon {
    float: left;
    margin-right: -50px;
    width: 40px;
    position: relative;
  }

    .faceicon img{
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .chat_conversation .chatting {
    width: 100%;
    text-align: left;
  }
  .says {
    display: inline-block;
    position: relative;
    margin: 0 0 0 50px;
    padding: 10px;
    max-width: 600px;
    border-radius: 12px;
    background: #edf1ee;
  }

  .says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 3px;
    left: -19px;
    border: 8px solid transparent;
    border-right: 18px solid #edf1ee;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  .says p {
    margin: 0;
    padding: 0;
  }

  /*自分が送ったメッセージ*/
  .mycomment {
    margin: 15px 0;
    text-align: right;

  }
  .mycomment p {
    display: inline-block;
    position: relative;
    margin: 0 10px 0 0;
    padding: 8px;
    max-width: 600px;
    border-radius: 12px;
    background:#00A2A4;
    color: #fff;
    font-size: 15px;
    text-align: left;
  }

  .mycomment p:after {
    content: "";
    position: absolute;
    top: 3px;
    right: -19px;
    border: 8px solid transparent;
    border-left: 18px solid #00A2A4;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
.submit_area{
    display: flex;
    align-items: top;
    justify-content: space-between;
}
.submit_area dt{

}
.textArea {
    resize: vertical;
    min-height: 2.6em;
    max-height: 9em;
    width         : 100%;               /* 入力域の最大幅 */
    height        : auto;                /* 入力域の高さ   */
    background    : #ffffff;             /* 入力域の背景色 */
    border        : 2px solid #00A2A4;   /* 入力域の枠線   */
    border-radius : 0;                 /* 入力域の角丸   */
    padding       : 8px;                /* 入力文字の余白 */
    font-size     : 14px;                /* 入力文字サイズ */
    color         : #333333;             /* 入力文字の色   */
    font-weight   : bold;                /* 入力文字の太字 */
    letter-spacing: .1em;                /* 入力文字の間隔 */
    line-height   : 19px;                /* 入力文字の間隔 */
}
.textArea:focus {
    border-color  : #00a2a4;                 /* 枠線色     */
    background    : rgba(0, 162, 164, 0.20);  /* 背景色     */
    outline       : 0;
}
.submit_btn {
    display       : inline-block;
    border-radius : 0;          /* 角丸       */
    font-size     : 16pt;        /* 文字サイズ */
    text-align    : center;      /* 文字位置   */
    cursor        : pointer;     /* カーソル   */
    padding       : 6px 12px;   /* 余白       */
    background    : #00a2a4;     /* 背景色     */
    color         : #ffffff;     /* 文字色     */
    line-height   : 1em;         /* 1行の高さ  */
    transition    : .3s;         /* なめらか変化 */
    /* box-shadow    : 6px 6px 3px #666666;  */
    border        : 2px solid #00a2a4;    /* 枠の指定 */
  }
  .submit_btn:hover {
    box-shadow    : none;        /* カーソル時の影消去 */
    color         : #00a2a4;     /* 背景色     */
    background    : #ffffff;     /* 文字色     */
  }
.sendlist_area{
    margin-bottom: 30px;
}

.sendlist_area table{
    width: 100%;
}
.sendlist_area th{
    background-color: #00a2a4;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
}
.list_line{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prof{
    display: flex;
    justify-content: start;
    align-items: center;
}
.prof .faceicon{
    float: none;
    margin: 0;
    margin: 5px;
    position: relative;
}
.prof a{
    font-weight: bold;
    color: #162640;
}
.prof a:hover{
    opacity: 0.8;
}
/* --- 検索全体のBOX (サンプル用)--- */
.searchArea{
    /* width          : 290px;               */
    height         : 24px;               /* BOXの高さ             */
    margin         : 10px 0;               /* サンプルを中心に寄せ  */
    letter-spacing : 0.1em;              /* 文字間隔              */
    font-weight    : bold;               /* 太字                  */
    line-height    : 0;                  /* 標準の行高さ          */
  }

   /* --- テキスト入力欄のSTYLE設定 --- */
  .searchArea .searchText {
    display        : block;              /* ブロック化            */
    float          : left;               /* 横並び                */
    box-sizing     : border-box;         /* 枠線,余白を含んだ長さ */
    height         : 24px;               /* 入力の高さ            */
    width          : 250px;              /* 入力の幅              */
    margin         : 0;                  /* 外余白                */
    padding        : 0 12px;             /* 内余白                */
    border         : 2px solid #00a2a4;  /* 枠線　幅,実践,色      */
    border-radius  : 12px 0 0 12px;      /* 左上下の角丸          */
    color          : #333;               /* 文字色                */
    outline        : 0;                  /* 入力の薄い枠を非表示  */
    font-size      : 12px;               /* フォントサイズ        */
  }

   /* --- 検索ボタン欄のSTYLE設定 --- */
  .searchArea .searchButton {
    float          : left;               /* 横並び                */
    box-sizing     : border-box;         /* 枠線,余白を含んだ長さ */
    height         : 24px;               /* 入力の高さ            */
    margin         : 0;                  /* 外余白                */
    padding        : 6px 10px;           /* 内余白                */
    border         : none;               /* 枠線　幅,実践,色      */
    border-radius  : 0 12px 12px 0;      /* 右上下の角丸          */
    background     : #00a2a4;            /* ボタンの色            */
    color          : #fff;               /* 文字色                */
    cursor         : pointer;            /* カーソル設定          */
    line-height    : 12px;               /* 1行の高さ             */
    font-size      : 12px;               /* フォントサイズ        */
  }

   /* --- 検索ボタン欄にフォーカスか来たとき --- */
  .searchArea .searchText:focus {
    background     : #cfe7ff;            /* フォーカス時の背景色  */
  }

   /* --- 検索ボタン内のアイコンSTYLE設定 --- */
  .searchArea .fa-search {
    display        : inline-block;       /* インラインブロック化  */
    width          : auto;               /* 幅は高さに合わせる    */
    height         : 12px;               /* 画像の高さ            */
    margin         : 0 3px 0 0;          /* 余白                  */
    vertical-align : middle;             /* 横の文字位置          */
  }

   /* --- IEの入力エリア右側×消し -------------------------*/
  .searchArea .searchText::-ms-clear {
    display        : none;               /* ×を消す              */
  }


/* topに戻るボタン */
  .topIcon {
    display       : inline-block;
    position      : fixed;       /* ボタン固定 */
    bottom        : 0;        /* 下から位置 */
    right         : 0;        /* 右から位置 */
    padding       : 5px 10px;   /* 余白       */
    background    : #00a2a4;     /* 背景色     */
    color         : #ffffff;     /* 文字色     */
    opacity       : 0.5;         /* 透明度     */
    border-radius : 5%;        /* 角丸       */
    font-size     : 20pt;        /* 文字サイズ */
    font-weight   : bold;        /* 太字       */
    line-height   : 1.2em;       /* 行の高さ   */
    letter-spacing: 2px;         /* 文字間隔   */
    text-align    : center;      /* 文字位置   */
    cursor        : pointer;     /* カーソル   */
    z-index       : 999;         /* 重ね順位   */
  }

  .topIcon:hover {
    opacity       : 0.9;   /* カーソル時透明度 */
  }

/* --------------------------------------------
共通:モーダルウィンドウ
----------------------------------------------- */
.modal_bg{
    position: fixed;
    width: 100%;
    height: 120%;
    background-color: #000;
    opacity: 0.8;
    top: 0;
    left: 0;
    display: none;
    z-index: 6666;
}

.modal_box {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 80%;
    max-width: 768px;
    margin: 0;
    padding: 30px 2vw;
    border-radius: 5px;
    text-align: center;
    background: #ffffff;
    box-sizing: border-box;
    margin: 0 auto;
    max-height: 80vh;
    min-height: 50vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
.modal_box .modal_title{
    margin-bottom: 10px;
}
/* -----------------------------------------------
個別対応登録フォーム
-------------------------------------------------- */

.mt_select{
    background-color: #fff;
    border-radius: 3px;
    padding: 0.5em 0.3em;
    width: 50%;
    /* margin: 10px 0; */
    border: #00A2A4 1px solid;
}
.mt_select select:focus,
.mt_select:hover{
    background-color: #00A2A4;
    color: #fff;
    transition-duration: 0.2s;
}
.mt_select{
	-webkit-appearance: auto;
	width:	500px;
}
.add_regist .red_btn{
	height: 40px;
}


.regist_individual_table_area .form_line{
	margin: 20px 0;
}
.form_small{
	width:200px !important;
}
.regist_individual_table_area .form_line label{
	display: block;
	font-weight: bold;
	margin: 5px 0;
	align-items: center;
    display: flex;
    justify-content: flex-start;
}
.regist_individual_table_area .form_line label span{
	margin-left: 10px;
    font-size: 13px;
    background-color: #97000F;
    color: #fff;
    padding: 3px 5px;
    border-radius: 5px;
}
.regist_individual_table_area .form_line input[type="text"],
.regist_individual_table_area .form_line input[type="date"],
.regist_individual_table_area .form_line input[type="time"],
.regist_individual_table_area .form_line input[type="number"],
.regist_individual_table_area .form_line select{
    background-color: #fff;
    border-radius: 3px;
    padding: 0.5em 0.3em;
    width: 50%;
    /* margin: 10px 0; */
    border: #00A2A4 1px solid;
}
.regist_individual_table_area .form_line input:focus,
.regist_individual_table_area .form_line input:hover,
.regist_individual_table_area .form_line select:focus,
.regist_individual_table_area .form_line select:hover{
    background-color: #00A2A4;
    color: #fff;
    transition-duration: 0.2s;
}
.regist_individual_table_area .form_line input::placeholder{
	font-size: 13px;
}
.regist_individual_table_area .form_line input::placeholder:hover{
    color: #fff;
}
.regist_individual_table_area .form_line select{
	-webkit-appearance: auto;
}
.trigger_list_area{
	display: flex;
	justify-content:flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 5px;
}
.radio_label{
	white-space: nowrap;
	margin: 3px 15px 3px 5px;
}
.radio_label input[type="radio"]{
	margin-right: 5px;
}
.regist_individual_table_area .red_btn,
.regist_individual_table_area .blue_btn{
	height: 34px;
}
/* モーダル */
.regist_idv_modal_wrap{
	position: fixed;
    z-index: -1;
    background-color: rgba(0,0,0,0);
    width: 100vw;
    height: 100vh;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    overflow: scroll
}
.regist_idv_modal_wrap_active{
	z-index: 10000000;
    transition: .5s;
    background-color: rgba(0,0,0,.8);
    display: flex;
}
.regist_idv_modal_main{
	background-color: #F1F4F5;
    display: block;
    margin: 15vh auto 5vh;
    width: 90vw;
    border: 1px solid #CCCCCC;
    padding: 5px;
    position: relative;
    max-width: 650px;
    max-width: none;
    width: 550px;
}
.regist_idv_modal_table_area{
	width:100%;
}
.regist_idv_modal_table{
	width: 100%;
}
.regist_idv_modal_table tr th,
.regist_idv_modal_table tr td{
	padding: 15px;
	word-break: break-all;
}
.regist_idv_modal_table tr th{
	width: 150px;
	font-size: 14px;
}
.modal_alert{
    text-align: center;
    margin: 20px auto;
    color: #97000F;
}
input.modal_information_check{
	margin: 10px 5px 10px 0px;
}
input.red_btn:disabled{
  	opacity: 0.5;
  	pointer-events: none;
}

/* エラー */
.error_message{
	margin: 5px 0;
	color: #97000F;
}
.error_message i{
	margin-right: 5px;
}


/* -----------------------------------------------
タブレットサイズ以下
-------------------------------------------------- */
@media screen and (max-width:768px){
    body{
        min-width: auto;
    }

/* --------------------------------------------
共通:全体
----------------------------------------------- */

.contents_area{
    width: 90%;
}
/* --------------------------------------------
共通:　テーブル
----------------------------------------------- */

/* 検索・設定テーブル */
.gray_table{
    width: 90%;
    padding: 20px 20px 10px 20px;
}
/* --------------------------------------------
設定
----------------------------------------------- */
.setting_table{
    width: 90%;
    padding: 10px 10px 5px 10px;
}
.setting_table th{
    width: auto;
}
.radio_text{
    margin: auto;
}
/* --------------------------------------------
ログイン画面
----------------------------------------------- */
.login_table{
    width: 70%;
}

}
/* --------------------------------------------
エラー画面
----------------------------------------------- */
.error_area{
    text-align: center;
    /*font-weight: bold;*/
    /*color: red;*/
    text-align: center;
    width: 50%;
    background: rgb(241, 241, 255);
    margin: 150px auto;
    padding: 25px 8px;
    margin-top: 30px;
    margin-bottom: 0;
    color: rgb(7, 0, 77);
}

.button-panel {
  margin: 15px 0;
  width: 100%;
  /*background: #55bef5;*/
  border: none;
  /*color: #fff;*/
  cursor: pointer;
  height: 50px;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
}

.error_btn:hover {
  background: #0096dc;
}

.error_btn:focus {
  outline: none;
}

.error_btn {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0;
  margin: 0 30px;
}

.btn_border {
  border: none;
  outline: none;
  border-radius: 5px;
  background: #55bef5;
   border-bottom: 5px solid #478FB3;
   margin: 0 auto!important;
   -webkit-appearance: none;

}

.btn_border:hover {
  color: #fff;
  margin-top: 3px;
  background: #fff20a;
  border-bottom: 2px solid #478FB3;
  background: #0096dc;
}

/* -----------------------------------------------
スマホサイズ以下
-------------------------------------------------- */
@media screen and (max-width:500px){
    #event_modal .modal_meeting_ymd{
        display: block;
        margin-bottom: 2px;
    }
}
@media screen and (max-width:375px){
    img{
        width: auto;
        max-width: 100%;
    }
/* --------------------------------------------
共通:　テーブル
----------------------------------------------- */
/* 対象者テーブル */
.table_area table{
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
/* 検索・設定テーブル */
.gray_table{
    width: 100%;
    font-size: 0.9rem;
    padding: 7px;
}
/* ユーザー情報テーブル */
.pulldown_items td{
    width: 100%;
}
/* --------------------------------------------
ログイン画面
----------------------------------------------- */
.login_table{
    width: 95%;
}
/* --------------------------------------------
チャット画面
----------------------------------------------- */
.chat_message_area{
    height: 380px;
    padding: 15px 10px;
}
.textArea{
    height: 1em;
}
.blue_btn{
    padding: 5px 10px;
}
.faceicon{
    width: 30px;
}
.says,.mycomment p{
    max-width: 70%;

}
.says{
    margin:0 0 0 40px;
}

.send_time{
    font-size: 8px;
}
.user{
    display: block;
}
.user p{
    padding: 5px;
}

}

/* ------------------------------------
アンケート実施画面 カウントダウン
--------------------------------------- */
.count_down_timer{
	position: fixed;
	right: 20px;
	bottom:30px;
	width: 170px;
	z-index: 10;
	font-size: 20px;
	background-color: #00A2A4;
	color: white;
	padding: 20px;
	border-radius: 15px;
}

/* ------------------------------------
試験実施前　出身地入力プルダウン
--------------------------------------- */
.select_prefecture{
	background-color: white;
	border: 2px solid #848484;
    border-radius: 5px;
    padding: 5px;
    appearance: auto;
}
.regist_prefecture_table{
	margin: 0px auto;
}
.regist_prefecture_table th{
	width: 200px;
}

/* ------------------------------------
対象者選択画面　実施確認モーダル
--------------------------------------- */
.index_modal_wrap{
	position: fixed;
    z-index: -1;
    background-color: rgba(0,0,0,0);
    width: 100vw;
    height: 100vh;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.index_modal_wrap_active{
	z-index: 10000000;
    transition: .5s;
   	background-color: rgba(0,0,0,.8);
   	display: flex;
}

.index_modal_main{
	background-color: #F1F4F5;
    display: block;
    margin: 10vh auto 20px;
    width: 90vw;
    border: 1px solid #CCCCCC;
    padding: 5px;
    position: relative;
    max-width: 650px;
    max-width: none;
	width: 550px;
}

/* ------------------------------------
履歴一覧　川戸
--------------------------------------- */
.cursorDefault{cursor:default}
.fontRed{color: red}

/* ------------------------------------
 ホバー注釈
--------------------------------------- */
.hover_annotation_word {
	position: relative;
}

.hover_annotation_detail:hover {
	display: block;
}

.hover_annotation_detail {
	display: none;
	position: absolute;
	 top: 35px;
    left: 30px;
    width: auto;
    min-width:200px;
	height: auto;
	padding: 10px;
	padding-left: 20px;
	font-size: 15px;
	background-color: #162640;
    color: #FFF;
    opacity: 0.95;
	border-radius: 5px;
	box-sizing: content-box;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .4);
	text-indent:0;
}

/* ------------------------------------
ユーザ詳細画面　尾崎
--------------------------------------- */
.user_info_detail_resume a{
	margin-right: 5px;
	margin-left: 5px;
}

.user_info_detail_edit_prefecture_flg{
	margin-right: 5px;
	margin-left: 15px;
}
/* ------------------------------------
勤怠一覧画面
--------------------------------------- */
.trainee_attendance_area{
	 width: 80%;
	 margin: 5% auto;
	 overflow: auto
}

.attendance_operation_wrap input{
	float: right;
	margin: 0 5px;
}

.judgment_switching_radio {
    display: none;
}

.judgment_switching_label {
	display: inline-block;
	padding: 10px 30px;
    width: 150px;
    text-align: center;
	font-size: 14px;
	font-weight: bold;
	background: #d0d0d0;
	border: 1px solid #707070;
	border-bottom: none;
	border-radius: 10px 10px 0px 0px;
	transition: all 0.3s ease;
}

.judgment_switching_radio:checked+.judgment_switching_label {
    background: #00A2A4;
    color: #fff;
}

.judgment_on_table th {
	min-width:100px
}

.judgment_on_table th,.judgment_on_table td,
.judgment_off_table th,.judgment_off_table td {
	font-size: 13px
}

.judgment_off_table{
	display: none;
}

.judgment_off_table th {
	min-width:150px
}

.judgment_on_table th:first-child,
.judgment_off_table th:first-child{
	min-width: 60px !important;
	max-width: 60px !important;
}

.judgment_on_table th:nth-child(2),
.judgment_off_table th:nth-child(2){
	min-width: 120px !important;
	max-width: 120px !important;
}

.judgment_on_table th:nth-child(3),
.judgment_off_table th:nth-child(3){
	min-width: 75px !important;
	max-width: 75px !important;
}

.judgment_on_table th:last-child,
.judgment_off_table th:last-child {
	min-width: 200px !important;
	width: 400px;
}

.judgment_on_table td:last-child,
.judgment_off_table td:last-child {
	padding-left: 5px;
}

.judgment_on_table td:last-child p,
.judgment_off_table td:last-child p {
	margin: 5px 0;
	text-align: left;
}

.personal_ditail_btn {
	cursor: pointer;
}
.send_attendance_mail_check{
	margin-top: 10px;
	margin-right: 10px;
}

.judgment_on_table button,.judgment_off_table button{
	color: #162640;
	font-weight: bold;
	transition-duration: 0.3s;
}

.judgment_on_table button:hover,.judgment_off_table button:hover{
	opacity: 0.8;
}

/* ------------------------------------
勤怠一覧画面 個別リストモーダル
--------------------------------------- */
.attendance_operation_wrap_modal {
    text-align: left;
}

.attendance_table_modal_overlay,
.attendance_table_modal_wrap {
	display: none;
}

.attendance_table_modal_wrap {
	position: relative;
}

.attendance_table_modal_overlay {
	background: rgba(43,46,56,0.9);
	position: fixed;
	z-index: 9999;
	width:100vw;
	height:100vh;
	overflow: auto;
}

.attendance_table_modal {
	width: fit-content !important;
	border-radius: 10px !important;
	padding: 20px;
	position: absolute;
	z-index: 10000;
	top: 30vh;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	background: #fff;
}
/* ------------------------------------
勤怠一覧画面 登録確認モーダル
--------------------------------------- */
.register_attendance_modal p {
	background: #00A2A4;
	color: #fff;
	width: fit-content;
	padding: 5px 25px;
	border-radius: 25px;
	margin: 5px auto 20px auto;
	font-size: 14px;
}

.modal_confirm_alert_text{
	width: fit-content;
	padding: 5px 30px;
	margin: 15px auto 30px auto;
}

.register_attendance_modal_overlay,
.register_attendance_modal_wrap {
	display: none;
}

.register_attendance_modal_wrap {
	position: relative;
}

.register_attendance_modal_overlay {
	background: rgba(43,46,56,0.9);
	position: fixed;
	z-index: 9999;
	width:100vw;
	height:100vh;
	overflow: auto;
}

.register_attendance_modal {
	width: 500px !important;
	border-radius: 10px !important;
	padding: 20px;
	position: absolute;
	z-index: 10000;
	top: 10vh;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	background: #fff;
}

.register_attendance_cancel,
.register_attendance_submit {
	width: 120px;
	padding: 5px 15px;
	margin: 30px;
}

.attendance_confirm_title {
	text-align: left;
	margin: 10px;
	font-weight: bold;
}

.attendance_confirm_value {
	padding: 5px 20px;
}

@media print{
  .print{display:none}
}
/* ------------------------------------
研修生一覧画面 個別リストモーダル
--------------------------------------- */

.traineedetial_modal_overlay,
.traineedetial_modal_wrap {
	display: none;
}

.traineedetial_modal_wrap {
	position: relative;
}

.traineedetial_modal_overlay {
	background: rgba(43,46,56,0.9);
	position: fixed;
	z-index: 9999;
	width:100vw;
	height:100vh;
	overflow: auto;
}

.traineedetial_modal {
	/*width: fit-content !important;*/
	border-radius: 10px !important;
	padding: 20px;
	position: absolute;
	z-index: 10000;
	top: 5vh;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	background: #fff;
	width: 40%;
}
.traineedetial_modal table{
    width: 100%;
}

/* ------------------------------------
応募者一覧画面
--------------------------------------- */
.applicantlist_table{
    width: 95%;
    max-width: 1300px;
	margin:0 auto;
	display: block;
    overflow-y: auto;
    height: 75vh;
    margin-bottom: 40px;
}
.applicantlist_table table{
	font-size:14px;
}
.applicantlist_table table th{
    font-size: 13px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}
.applicantlist_table table td{
	min-width:100px;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
    word-break: break-all;
}
.applicantlist_table table th,
.applicantlist_table table td{
    border: none;
}
.applicantlist_table tr{
    border-bottom: 1px solid #D4D4D4;
    background-color: white;
    transition: 0.5s;
}
.applicantlist_table tr:nth-child(2n){
    background-color: #f2eded;
}
.applicantlist_table tr:hover{
    background-color: #faee46d8;
}
.applicantlist_table table td:first-child{
    min-width: 170px;
}
.applicantlist_table table td:nth-child(2){
    min-width: 130px;
    max-width: 160px;
}
.applicantlist_table table td:nth-child(3){
    min-width: 240px;
}
.applicantlist_table table td:nth-child(4){
    min-width: 270px;
}
.applicantlist_table table td:nth-child(5),
.applicantlist_table table td:nth-child(6){
    min-width: 150px;
}
.applicantlist_table table td:nth-child(6){
	word-break: break-word;
}
.applicantlist_table table td i{
    margin-right: 3px;
    color: #00A2A4;
    display: inline;
}
.applicantlist_table table .note{
	white-space:normal;
}
.mail_text{
    word-wrap: break-word
}
.mini_label{
    font-size: 12px;
    width: 62px;
    margin-right: 3px;
    color: #00A2A4;
    font-weight: bold;
}
.multiple_line p:not(:first-child) span:first-child{
    margin-left: 68px;
}
.small_td_text{
    font-size: 12px;
}
.applicant_name{
    font-size: 15px;
    font-weight: bold;
}
.halfway_mark::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0b1";
	margin-right:3px;
    color: #00A2A4;
}
.newgraduate_mark::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f19d";
	margin-right:6px;
    color: #00A2A4;
}
.informal_offer_notice_btn_area{
    display: none;
    position: relative;
}
.informal_offer_notice_btn{
    background-color: #00A2A4;
    color: #fff;
    padding: 1px 4px;
    border-radius: 2px;
    transition: 0.5s;
}
.informal_offer_notice_btn:hover{
    opacity: 0.8;
}
.informal_offer_notice_btn:disabled {
    background-color: #aaa;
}
.informal_offer_notice_btn:disabled:hover {
    opacity: 1;
}
.informal_offer_notice_btn_area p {
	font-size: 12px;
	color: #ff2020;
}
.mini_label_icon{
    font-size: 20px;
    position: relative;
}
.tool_tip{
	display: none;
    background: #fff;
    color: #00A2A4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 48px;
    text-align: center;
    z-index: 2;
    line-height: 1.3;
    border-radius: 3px;
    padding: 3px 4px ;
    filter: drop-shadow(0px 1px 4px #aaa);
    animation: fadeIn 0.6s;
    font-size: 13px;
    font-weight: normal;
}
.tool_tip::before{
	content: "";
	position: absolute;
	top: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	border: 6px solid transparent;
	border-top: 6px solid #fff;
}
@keyframes fadeIn {
	from {opacity: 0;}
	to {opacity:1 ;}
  }
/* 担当者・面接日程 */
.charger_list_area li{
    margin-bottom: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.saler_area .select_area{
    margin: 0;
}

.applicantlist_table input[type="date"],
.sticky_applicantlist_table table input[type="text"],
.applicantlist_table input[type="time"],
.applicantlist_table select,
.user_info_detail_table select {
	background-color: #fff;
	border-radius: 3px;
	padding: 0.3em;
	border:1px solid #00a2a4;
}
.applicantlist_table input[type="date"]:hover,.applicantlist_table input[type="date"]:focus,
.applicantlist_table input[type="time"]:hover,.applicantlist_table input[type="time"]:focus,
.applicantlist_table input[type="text"]:hover,.applicantlist_table input[type="text"]:focus,
.applicantlist_table_table select:hover,.gray_table select:focus,
.applicantlist_table textarea:hover,.gray_table textarea:focus,
.user_info_detail_table select:hover  {
    background-color: #00A2A4;
    color: #fff;
    transition-duration: 0.2s;
}
.applicantlist_table input[type="date"]{
	width: 150px;
    font-size: 12px;
}
.applicantlist_table input[type="text"],.applicantlist_table select {
	width:230px;
}
.applicantlist_table select {
	-webkit-appearance: auto !important;
	appearance: auto !important;
    width: 150px;
    font-size: 12px;
    text-align: left;
    margin-bottom: 3px;
}
.add_select i{
	color:#A4404A;
	font-size:20px;
	margin:2px;
}
.del_select i{
	color:#4166a3;
	font-size:20px;
	margin:2px;
}
.add_select,.del_select{
	cursor: pointer;
}
.add_select:hover,.del_select:hover{
	opacity:0.7
}
.select_area{
	display:flex;
	justify-content: start;
	align-content: start;
	margin:10px;
}
.add_btn_area{
	display: flex;
    justify-content: start;
    align-content: start;
    padding-top: 3px;
}
.interview_note{
	border-radius: 3px;
    padding: 10px 5px;
    border: 1px solid #00a2a4;
    text-align: left;
    min-width: 150px;
    min-height: 90px;
    width: 100%;
    height: 100%;
    background-color: #fff;
}


.user_info_detail_table select {
	-webkit-appearance: auto !important;
	appearance: auto !important;
}
.user_info_detail_table select:disabled{
    background-color: #707070;
    color: #fff;
    transition-duration: 0.2s;
}
.user_info_detail_table select {
	width:150px;
}
#event_modal .modal_title{
	margin: 10px;
	font-weight: bold;
	margin-bottom: 30px;
    color: #00A2A4;
}
#event_modal ul li{
	margin: 10px;
    border-bottom: 1px dotted #00a2a4;
    padding: 5px;
    text-align: left;
}
#event_modal .modal_meeting_ymd{
    width: 100px;
    margin-right: 20px;
    font-size: 14px;
    vertical-align: top;
}
#event_modal .modal_meeting_title{
    text-align: left;
    word-break: break-all;
    font-weight: bold;
}
.search_detail_btn{
	width: 80%;
    margin: 0 auto;
    padding: 5px;
    border-radius: 15px;
    background-color: #00a2a4;
    color: white;
    text-align: center;
}
.search_detail_btn i{
	margin-right: 5px;
}
.user_status_select:disabled{
	background-color: #707070;
	color: #fff;
}
#confirm_user_status_modal .applicantlist_table,
#confirm_recruit_member_modal .applicantlist_table{
	height: auto;
}
#confirm_user_status_modal .applicantlist_table tr,
#confirm_recruit_member_modal .applicantlist_table tr{
	pointer-events: none;
}
p.applicant_edit_btn_area {
	text-align: center;
	padding: 15px 0 10px;
}
.applicant_edit_btn{
	background-color: #00A2A4;
	color: #fff;
	padding: 1px 4px;
	border-radius: 2px;
	transition: 0.5s;
}
.applicant_edit_btn:hover{
	opacity: 0.8;
}
/* ------------------------------------
適性試験詳細
--------------------------------------- */
#top {
   width: 740px;
   margin: 0px auto;
   padding:0 20px;
   background:#fff;
   position: relative;
   top: 80px;
}

#header {
   width:700px;
   position:absolute;
   top: 20px;
}

#navi {
   position:absolute;
   bottom:0px;
   right:0;
   text-align: right;
}

#header h1 {
   padding-top: 20px;
   font-weight:bold;
   font-size:28px;
}

#header h1 a {
   color:#333;
}

#header h1 a:hover {
   color:#92C45B;
}
#header p {
   margin:0;
   padding:0 0 5px 0;
}

#navi ul {
   list-style:none;
}

#navi li {
   float:left;
   margin:0 0 0 22px;
   padding:0 0 0 20px;
   font-size:11px;
}

#navi li a {
   border-bottom:1px solid #CECFCE;
}
#contents {
  z-index: 0;
  font-size: 16px;
  clear:both;
  position:relative;
  top:90px;
}

#contents h2 {
   margin-bottom:10px;
   padding:10px 0;
   font-weight:bold;
   font-size:16px;
   border-bottom:2px solid #ddd;
}

#contents h3 {
   margin-bottom:2px;
   padding:2px 0 2px 0px;
   font-weight:bold;
   font-size:15px;
   line-height:1.2;
}

#contents h3.score{
   padding:2px 0 2px 0;
   border-left:0;
}

#contents h4 {
   margin-bottom:2px;
   font-weight:bold;
   font-size:14px;
   border-bottom:2px solid #666;
}

#contents h5 {
   margin-bottom:2px;
   padding:2px 5px;
   font-weight:bold;
   font-size:13px;
   background:#ececec;
}

#contents h6 {
   font-weight:bold;
   font-size:13px;
}

#contents dl {
   margin:0;
   padding:0;
}

#contents dt {
   text-decoration:underline;
}

#contents dd {
   margin:0 0 1em 1em;
}

#contents table {
   width:100%;
   border-collapse: collapse;
}

#contents table th {
   padding: 5px;
   font-size: 12px;
   border: 1px solid #ddd;
   background: #cfcfcf;
   white-space: nowrap;
   text-align: center
}

#contents table td {
   padding: 4px;
   font-size: 12px;
   text-align: left;
   border: 1px solid #ddd;
   vertical-align: top;
}

#contents table td.center{
   padding: 0px;
   padding-top: 5px;
   text-align: center;
}

#contents table td input{
   margin:1px;
   font-size:12px;
}

.qno {
   margin-bottom:2px;
   padding:2px 0 2px 10px;
   font-weight:bold;
   font-size:15px;
   position: relative;
   top: 10px;
}

.unitNameText{
	border: 1px solid #000000;
    border-radius: 3px;
    width: 290px;
}

.answer_ul{
	position: relative;
	top: -20px;
	left: 5px;
}

.answer_li{
	margin: 0px 0px 0px 20px;
}

.grapf_area{
	position: relative;
	height:110px;
	width:220px;
}

.td_text{
	text-align: center !important;
}

.content_area{
	width: 660px;
	margin-left: 20px;
	position: relative;
	top: 5px;
	padding: 5px;
}

.answer1{
	margin: 25px 0px;
}

.answer2{
	margin: 25px 0px;
	position: relative;
	top: 5px;
}

/*-------------------------------------------------
学校名サジェスト機能
-------------------------------------------------*/
.suggestion_item{
	display: none;
	max-height:300px;
	margin-top: -1px;
	background-color: #fff;
	box-shadow: 2px 2px 10px;
	border-radius: 3px;
	position: absolute;
	z-index: 2;
	word-break: break-all;
	overflow-y:auto;
	padding: 0 !important;
}

.suggestion_item li{
	display: none;
	padding: 5px 8px !important;
	font-size: 14px;
	border-top: 1px solid #dedede;
	cursor:pointer;
}

.suggestion_item li:first-child {
	border-top: none;
}

.suggestion_item li:hover{
	background-color: #00A2A4;
	color:#fff;
}


.suggestion_item_last{
	background-color: #162640 !important;
	color: #fff !important;
	font-weight:bold !important;
	text-align:center !important;
	transition:0.5s;
}
.suggestion_item_last::before{
	content:"\f067";
	color:#fff;
	margin-right:6px;
	font-family:"Font Awesome 5 Free";
	font-weight:900;
}

.suggestion_item_last:hover{
	opacity:0.8;
}

.suggestion_item::-webkit-scrollbar {
	width: 10px;
}
.suggestion_item::-webkit-scrollbar-track {
	background: #f7fafc;
	border-radius: 10px;
}
.suggestion_item::-webkit-scrollbar-thumb {
	background: #d0d0d0;
	border-radius: 10px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
	height: 50px;
}

.input_form_checkbox{
	font-size: 16px;
	background: #ff8305;
	padding: 5px;
	color: #fff;
	margin-right: -10px;
	float: right;
	border-radius: 3px;
}
.input_form_checkbox input{
	margin-left: 10px;
	width: 15px;
	height: 15px;
}

/* ------------------------------------
対象者選択
--------------------------------------- */
.contents_area_target{
	width: inherit;
}
.nowrap{
	white-space: nowrap;
}
/* ------------------------------------
内定通知送信
--------------------------------------- */
.sendnotice_table_area{
    width: 100%;
}
.sendnotice_table_area table{
    width: 100%;
}
.sendnotice_table_area table th,
.sendnotice_table_area table td{
    text-align: left;
    padding: 10px;
}
.sendnotice_table_area table th{
    width: 25%;
    white-space: nowrap;
}
.sendnotice_table_area input:not([type='checkbox']),
.sendnotice_table_area select {
    background-color: #fff;
    border-radius: 3px;
    padding: 0.3em;
    border: 1px solid #00a2a4;
    width: 150px;
}
.sendnotice_table_area input:disabled {
    background-color: #ccc;
}
.sendnotice_table_area .input_joining_ymd_notFixed {
    margin-right: 5px;
}
.sendnotice_table_area select {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    width: 200px;
    text-align: left;
    margin-bottom: 3px;
}
.sendnotice_table_area table td textarea{
    border-radius: 3px;
    padding: 10px 5px;
    border: 1px solid #00a2a4;
    text-align: left;
    min-width: 150px;
    /* min-height: 90px; */
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.sendnotice_content_area {
	height: 400px;
	overflow-y: scroll;
}
.sendnotice_content_area span {
	color: #ff2020;
}
.sendnotice_table_area button:disabled {
	background-color: #aaa;
}
.sendnotice_table_area button:disabled:hover {
	opacity: 1;
}
/* ------------------------------------
メールテンプレート管理
--------------------------------------- */
li.mail_genre_name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    vertical-align: middle;
}
li.mail_genre_name > span {
    cursor: pointer;
    position: relative;
}
li.mail_genre_name > span::after {
    content: "";
    position: absolute;
    transition: all 0.3s ease;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 10px solid #707070;
    border-bottom: 0;
    margin: auto 6px;
    top: 0;
    bottom: 0;
}
li.mail_genre_name.open > span::after {
    transform: rotate(-180deg);
}
ul.mail_template_list {
    font-size: initial;
    width: 90%;
    margin: 10px auto 30px;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
}
li.mail_template_ttl {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 5px auto;
}
.mail_template_ttl .button_area {
    width: 200px;
    text-align-last: right;
}
.mail_template_ttl span {
    width: calc(100% - 200px);
}
li.mail_template_ttl button {
    padding: 5px 15px;
    font-size: 14px;
}
/* ------------------------------------
メールテンプレート編集
--------------------------------------- */
.mail_template_edit_area .template_ttl,
.mail_template_modal .template_ttl {
    font-weight: bold;
    margin-bottom: 10px;
}
.mail_template_edit_area .select_area {
    margin: 10px auto;
}
.mail_template_edit_area .select_area .blue_btn {
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
}
.mail_template_edit_area select {
    background-color: #fff;
    border-radius: 3px;
    padding: 0.3em;
    border:1px solid #00a2a4;
    -webkit-appearance: auto !important;
    appearance: auto !important;
    width: 200px;
    font-size: 12px;
    text-align: left;
    margin-bottom: 3px;
    margin-right: 10px;
    height: 30px;
}
.mail_template_edit_area .variable_text {
    padding-bottom: 10px;
    color: #2b2b2b;
    text-indent: 1em
}
.mail_template_edit_area table {
    width: 100%;
}
.mail_template_edit_area td {
    width: 85%;
}
.mail_template_edit_area input {
    background-color: #fff;
    border-radius: 3px;
    padding: 0.3em;
    width: 100%;
}
.mail_template_edit_area textarea {
    border-radius: 3px;
    padding: 10px 5px;
    text-align: left;
    min-width: 150px;
    min-height: 90px;
    width: 100%;
    height: 300px;
    background-color: #fff;
}
.mail_template_edit_area textarea:hover,
.mail_template_edit_area textarea:focus {
    background-color: #fff !important;
    color: #000 !important;
}
.mail_template_modal .modal_content {
    text-align: left;
    width: 80%;
    margin: auto;
}
.mail_template_modal .subject_area {
    display: flex;
    font-weight: bold;
    margin: 20px 0 30px;
}
.mail_template_modal .modal_content .subject {
    font-weight: normal;
    width: calc(100% - 3em);
}
.mail_template_modal .modal_content .content {
    white-space: pre-wrap;
    margin-left: 3em;
}
.mail_template_modal .modal_content span {
    color: #ff4a4a;
}
.mordal_subject_alert {
	text-align : left;
	color: #ff4a4a;
	margin-bottom: 15px;
	font-size: 14px;
}
/* ------------------------------------
履歴紐づけ
--------------------------------------- */
.hidden_user_id{
	display: none;
}