@charset "utf-8";
/*基本的なレイアウト*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
html{
    height:100%;
}

body{
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Arial,verdana,sans-serif;
    margin:  0;
    padding: 0;
    background-color:#f0f8f9;
    height: 100%;
}

body > .wrapper{
    height: auto;
}

p, pre, dt, dd {
    color: #111;
    line-height: 1.4em;
    margin-bottom: 1em;
}

pre, p.bgclr {
    background-color: #ffffee;
    color: #000;
    font-style: italic;
    text-shadow: 1px 1px 0 #fff;
    margin-bottom: 20px;
    padding: 4px 12px;
    border: 1px solid #ffcc33;
    -webkit-border-radius: 6px;/* for Safari and Chrome */
    -moz-border-radius: 6px; /* for Firefox */
    -o-border-radius: 6px; /* for opera */
    border-radius: 6px;
}
ul, ol {
    font-size: 1em;
}
ul {
    list-style-type: disc;
}
ol {
    list-style-type: decimal;
    list-style-position: outside;
    margin-left: 20px;
}

ol li{
    margin-bottom: 0px;
}

li{
    margin: 5px;
}
dl {
    width: 100%;
    margin: 0;
    display: table;
}
dt {
    font-weight: normal;
    min-width: 200px;
    display: inline-table;
}
dd {
    display: inline-table;
    word-break: break-all;
}


h1, h2, h3, h4, h5, h6 {
    clear: both;
}
table{
    border-collapse:separate;
    border-spacing: 0;
    width: 90%;
    margin: 0 auto;
}


table tr th,
table tr td{
    color:#222;
    text-align:left;
    vertical-align: top;
    padding: 6px 9px;
    border-bottom: 1px solid #DDDDDD;
}

table tr th{
    white-space: nowrap;
}

table tr th:last-child,
table tr td:last-child{
    border-right:none;
}

table tr {
    display: table-row;
    vertical-align: inherit;
}

table thead tr th,
table thead tr td{
    color:#222;
    font-size:0.875rem;
    font-weight:bold;
    padding:0.5rem 0.625rem 0.625rem;
    background:#EFEFEF;
}

table ul{
    margin:0px;
}

table li{
    margin: 5px 0px 0px 0px!important;
    list-style: none;
}

img {
    border: none;
}
a {
    color: #1982d1;
    text-decoration: none;
}
.disabled a,
a.disabled {
    pointer-events: none;
}
a:focus,
a:active,
a:hover {
    color: #1982d1;
    text-decoration: underline;
    cursor: pointer;
}

select{
    -webkit-appearance:none !important;
    -moz-appearance:none !important;
    border-radius:0;
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
    background-position:100% center;
    background-repeat:no-repeat;
    border-style:solid;
    border-width:1px;
    border-color:#ccc;
    color:rgba(0,0,0,0.75);
    font-family:inherit;
    font-size:0.875rem;
    line-height:normal;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    height: auto;
    width: auto;
}

select:hover {
    background-color: #fafafa;
    border-color: #999;
}

select::-ms-expand{
    display:none
}
select:disabled{
    background-color:#ddd;
    cursor:default
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea
{
    -webkit-appearance:none;
    -moz-appearance:none;
    border-radius:0;
    background-color:#fff;
    border-style:solid;
    border-width:1px;
    border-color:#999;
    box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);
    color:rgba(0,0,0,0.75);
    display:block;
    font-family:inherit;
    font-size:0.875rem;
    height:2.3125rem;
    margin:0;
    padding:0.5rem;
    width:100%;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-transition:border-color 0.15s linear,background 0.15s linear;
    -moz-transition:border-color 0.15s linear,background 0.15s linear;
    -ms-transition:border-color 0.15s linear,background 0.15s linear;
    -o-transition:border-color 0.15s linear,background 0.15s linear;
    transition:border-color 0.15s linear,background 0.15s linear
}

label,
input[type="submit"],
input[type="radio"],
input[type="button"] {
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Arial,verdana,sans-serif;
    cursor: pointer;
    margin: 0;
    display: inline;
}

input[type="radio"] {
    margin: 0 4px 0 0 !important;
}
input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea, select {
    border-color: #999;
    margin: 0;
    height: auto;
    width: auto;
}
input[type="text"],input[type="number"],input[type="tel"] {
    border-color: #999;
    margin-top: 5px;
    margin-bottom:10px;
    height: auto;
    width:auto;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance:textfield;
}

select[multiple] {
    min-height:150px;
    background: none;
    padding:0;
}

input[type="file"], input[type="checkbox"], input[type="radio"], select {
    margin: 5px 0 0;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #aaa;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #aaa;
    opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #aaa;
}

button,
.button {
    -webkit-appearance:none;
    border-style:solid;
    border-width:0;
    cursor:pointer;
    font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    font-weight:normal;
    position:relative;
    text-align:center;
    text-decoration:none;
    display:inline-block;
    font-size:1.05rem;
    color:#fff;
    transition:background-color 300ms ease-out;
    margin: 0;
    padding: 10px 20px;
    box-shadow: 0 3px 0 #86b6a9;
    -webkit-border-radius: 5px;/* for Safari and Chrome */
    -moz-border-radius: 5px; /* for Firefox */
    -o-border-radius: 5px; /* for opera */
    border-radius: 5px;        /* CSS3草案 */
    text-shadow: 0 0 5px #04291f;
    background: #159170;
    line-height: inherit;
    letter-spacing: 1px;
}

button:hover,button:focus,.button:hover,.button:focus{
    color:#fff;
    background-color:#159170;
    transform:translate(1px,2px);
}


a.button{
    text-decoration: none;
    color:#fff;
}

fieldset {
    margin: 0 auto 12px;
    width: 90%;
    max-width: 810px;
    text-align: left;
}

fieldset legend {
    width: 100%;
    border-bottom: 2px solid #1798A5;
    font-size: 1.18em;
    font-weight:bold;
    background: transparent;
    color:#15848f;
    line-height: 1.5em;
    margin: 10px 0 8px;
    padding: 0 4px;
}

fieldset legend:not(:first-of-type) {
    padding-top: 16px;
}

fieldset fieldset{
    border:2px solid #ddd;
    -webkit-border-radius: 5px;/* for Safari and Chrome */
    -moz-border-radius: 5px; /* for Firefox */
    -o-border-radius: 5px; /* for opera */
    -ms-border-radius: 5px;
    border-radius: 5px;
    width:auto;
    padding:0 10px 10px 10px;
    margin:10px 0 20px 0;
    display:grid;
}
fieldset fieldset legend{
    border:none;
    color:#444;
    width:auto;
}
/*---------------------------*/
/*　メッセージエラー
/*---------------------------*/

div.message {
    background-color: #82D5EE;
    color: #333;
    cursor: pointer;
    display: table;
    font-weight: normal;
    line-height: 2.5em;
    width: auto;
    height: initial;
    overflow: hidden;
    position: absolute;
    top: 5px;
    left: auto;
    right: 60px;
    padding: 20px 40px;
    z-index: 999;
}
div.message.hidden {
    opacity: 0;
    height:  0;
    top: -400px;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
}
div.message.error {
    background-color: #C3232D;
    color: #FFF;
}
div.message::before {
    line-height: 0px;
    font-size: 25px;
    height: 12px;
    width: 12px;
    -webkit-border-radius: 15px;/* for Safari and Chrome */
    -moz-border-radius: 15px; /* for Firefox */
    -o-border-radius: 15px; /* for opera */
    border-radius: 15px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    left: -11px;
    background-color: #FFF;
    padding: 17px 10px 2px 10px;
    content: "i";
    color: #a0d3e8;
}
div.message.error::before {
    padding: 13px 8px 2px 8px;
    color: #C3232D;
    content: "x";
    font-size: 20px;
}

div.message.error a{
    color:#fff;
    text-decoration:underline;
}



/* 画面メッセージ
----------------------------------------------- */
.error-message {
    clear: both;
    background-color: #ff0000;
    color: #fff;
    font-size: 0.75em;
    line-height: 1.25em;
    margin: 5px 0 6px 0;
    padding: 2px 6px;
    -webkit-border-radius: 4px;/* for Safari and Chrome */
    -moz-border-radius: 4px; /* for Firefox */
    -o-border-radius: 4px; /* for opera */
    border-radius: 4px;
    display: table;
}

/*---------------------------*/
/*　ページネーション
/*---------------------------*/

.paginator {
    margin: 50px 0 0;
    text-align: center;
}

.paginator ul.pagination li {
    float: none;
    display: inline-block;
}

.paginator p {
    text-align: right;
    color: rgba(0, 0 ,0 , 0.54);
}

ul.pagination li{
    color:#222;
    font-size:0.875rem;
    height:1.5rem;
    margin-left:0.3125rem;
}
ul.pagination li a,ul.pagination li button{
    -webkit-border-radius: 3px;/* for Safari and Chrome */
    -moz-border-radius: 3px; /* for Firefox */
    -o-border-radius: 3px; /* for opera */
    border-radius:3px;
    transition:background-color 300ms ease-out;
    background:none;
    color:#999;
    display:block;
    font-size:1em;
    font-weight:normal;
    line-height:inherit;
    padding:0.0625rem 0.625rem 0.0625rem
}
ul.pagination li:hover a,
ul.pagination li a:focus,
ul.pagination li:hover button,
ul.pagination li button:focus{
    background:#e6e6e6
}
ul.pagination li.unavailable a,
ul.pagination li.unavailable button{
    cursor:default;
    color:#999
}
ul.pagination li.unavailable:hover a,
ul.pagination li.unavailable a:focus,
ul.pagination li.unavailable:hover button,
ul.pagination li.unavailable button:focus{
    background:transparent
}
ul.pagination li.current a,
ul.pagination li.active a,
ul.pagination li.current button{
    background:#008CBA;
    color:#fff;
    cursor:default;
    font-weight:bold
}
ul.pagination li.current a:hover,
ul.pagination li.current a:focus,
ul.pagination li.current button:hover,
ul.pagination li.current button:focus{
    background:#008CBA
}
ul.pagination li{
    display:block;
    float:left
}
/* 二重クリック防止 */
button.disabled, button[disabled],
.button.disabled, .button[disabled]
{
    color: #ccc;
    background-color:#808080;
    box-shadow: 0 3px 0 #ccc;
    text-shadow: 0 0 5px #808080;

}
button.disabled:hover,
button.disabled:focus,
button[disabled]:hover,
button[disabled]:focus,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled]:hover,
.button[disabled]:focus
{
    color: #ccc;
    background-color:#808080;
    box-shadow: 0 3px 0 #ccc;
    text-shadow: 0 0 5px #808080;

}

/*コメント編集時のモーダル用*/
#overlay{
    z-index: 10;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba( 0,0,0, 0.6 );
    cursor:pointer;
}
#comment_area {
    z-index:20;
    position:fixed;
    display:none;
    width:500px;
    height:400px;
    background:#FFFFFF;
    border:2px solid #3f83d9;
}
#comment_area #comment_close {
    color:#FFFFFF;
    z-index:30;
    background:#3f83d9;
    cursor:pointer;
    float:right;
    font-size:20px;
    padding:10px;
}
#comment_area #comment_title,#comment_area #comment_confirm_title {
    clear:both;
    margin:10px;
    padding:10px;
    font-size:18px;
}
#comment_area textarea {
    width:80%;
    height:200px;
    margin: 0 auto;
}
#comment_area #comment_confirm_contents {
    width:80%;
    height:200px;
    margin: 0 auto;
    text-align: left;
    overflow-y: scroll;
}
#comment_area .inner {
    text-align:center;
}
.comment_label {
    color: #00008b;
    font-size: 80%;
}
/* ファイル削除ボタン */
.delete_file_list::before{
    content: url(../images/delete.svg);
}

/*ファイル種類登録レイアウト*/
.file_kinds div div{
    display: flex;
}
.file_kinds .input.radio label:first-of-type{
    margin-bottom: 0;
}
.file_kinds .input.radio label{
    margin-right: 20px;
}

/* テーブルの１列目の固定を解除 */
.scroll_box.send_no_scroll table th:first-child,
.scroll_box.send_no_scroll table td:first-child{
    position: static;
}
/* 検索欄の仕切り */
.search_key_fileitem{
    height: 100px;
    border-right: 1px dotted #000;
    padding: 0px 10px 0px 10px;
}
.ent_exist_flex > div{
    padding-top: 10px;
    display: flex;
    align-items: flex-start;
}
.ent_exist_flex div.checkbox{
    padding-right: 10px;
}
/*ファイル送受信・宛先選択画面*/
.send_select{
    position: relative;
}
.send_select label{
    padding:10px;
    border: 1px solid #dcdcdc;
    width: 500px;
    height: 50px;
    border-radius: 10px;
    box-shadow: 2px 2px gray;
    background-color: #f5f5f5;
    color: #11225F;
    font-weight: bold;
}
.send_select .input.radio label[for='send-select-2']{
    height: 100px;
    align-items: baseline;
}
#target_school{
    position: absolute;
    left:0px;
    bottom:80px;
}
/* ファイル登録時 stepアクティブ表示 */
.step_active{
    background-image:url(../images/arrow1.svg);
    background-repeat: no-repeat;
    background-size:contain;
    width:180px;
    height: 50px;
    padding: 5px;
}
/* ファイル登録時 step非アクティブ表示 */
.step_noactive{
    background-image:url(../images/arrow2.svg);
    background-repeat: no-repeat;
    background-size:contain;
    width:180px;
    height: 50px;
    padding: 5px;
}
/* 書類種別の追加ボタン */
.file_kind_add::before{
    content:url(../images/add_circle.svg);
    position: relative;
    top: 3px;
    padding-right: 3px;
}
/* 一括ダウンロードボタン */
button.file_multi_download_btn::before{
    content: url(../images/download2.svg);
    position: relative;
    top: 5px;
    padding-right: 3px;
}
.file_multi_download_btn {
    -webkit-appearance:none;
    border-style:solid;
    border: 1px solid #dcdcdc;
    cursor:pointer;
    font-weight:normal;
    position:relative;
    text-align:center;
    text-decoration:none;
    display:inline-block;
    font-size:1.05rem;
    color:#000;
    margin: 0;
    padding: 0px;
    padding-top:3px;
    padding-bottom:10px;
    box-shadow: 0 0 4px gray;
    -webkit-border-radius: 5px;/* for Safari and Chrome */
    -moz-border-radius: 5px; /* for Firefox */
    -o-border-radius: 5px; /* for opera */
    border-radius: 5px;        /* CSS3草案 */
    background: #fff;
    line-height: inherit;
    letter-spacing: 1px;
    width:200px;
    font-weight: bold;
    text-shadow: none;
}
.file_multi_download_btn:hover,.file_multi_download_btn:focus{
    color:#000;
    transform:translate(1px,2px);
    text-decoration: none;
    background-color: #fff;
}

/*ファイル暗号化ツールマニュアルページ*/
.filetool_blue_box{
    border: 1px solid #CCCCCC;
    background-color: #F4FAFD;
    font-weight: bold;
    padding: 20px;
    width:80%;
}

.filetool_download::before{
    content: url(../images/download_icon_white.svg);
    padding-right: 10px;
    position: relative;
    top: 2px;
}

.filetool_env_box{
    border: 2px solid #333;
    font-weight: bold;
    color:#333;
    padding: 5px;
    margin:10px;
    margin-left: -20px;
    margin-bottom: 10px;
}

.filetool_closed::before{
    content: url(../images/lock_icon_navy.svg);
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
    top: 4px;
}

.filetool_open::before{
    content: url(../images/net_icon_navy.svg);
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
    top: 4px;
}

.filetool_closed_img{
    width:250px;
}

.filetool_manual_content{
    padding: 10px;
}

.filetool_header{
    color: #11225F;
    font-weight: bold;
    font-size: 1.2rem
}

/*調査書PDF出力機能*/
#pdf_modal {
    z-index:20;
    position:fixed;
    width:500px;
    height:400px;
    background:#FFFFFF;
    border:2px solid #3f83d9;
}
#pdf_modal #pdf_close {
    color:#FFFFFF;
    z-index:30;
    background:#3f83d9;
    cursor:pointer;
    float:right;
    font-size:20px;
    padding:10px;
}
#pdf_content{
    text-align:center;
    padding:40px;
}
#pdf_download_icon::before{
    content: '';
    display: inline-block;
    width: 70px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/download_pdf.svg);
}
#download_process_msg1{
    font-weight: bold;
    font-size: 1.3rem;
}
#download_process_msg2{
    font-weight: bold;
    font-size: 1.1rem;
}
#download_error{
    font-weight: bold;
    font-size: 1.1rem;
    color: red;
}
#download_process_img::before{
    content: '';
    display: inline-block;
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/loading.gif);
}
#pdf_complete_icon::before{
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/check_pdf.svg);
}
#download_complete_msg1{
    font-weight: bold;
    font-size: 1.3rem;
}
#download_complete_key{
    margin-right: 50px;
    margin-left: 50px;
    text-align: left;
}
#download_complete_inner{
    border: 1px solid #159170;
    display: flex;
    align-items: center;
}
#download_complete_key_img1{
    height:60px;
    width:20%;
    background-color: #159170;
    display: flex;
    align-items: center;
    justify-content: center;
}
#download_complete_key_img2{
    width:40px;
}
#download_complete_pass{
    width:80%;
    text-align: center;
    font-size:2rem;
}
#download_complete_notice{
    font-weight: bold;
    color: red;
}
@media screen and (min-width: 1500px){
    .filetool_closed_img{
        width:400px;
    }
    .filetool_manual_content{
        padding-right: 80px !important;
    }
}