@charset "UTF-8";

body {
    margin: 0.5%;
    padding: 0.5%;
}

p{
    margin-top: 10px;
    margin-bottom: 15px;
}

input[type="submit"]{
    transform: scale(2);
    margin: 20px;
    padding: 1% 2%; /* ボタンの内側の余白 */
    color: #06c; /* ボタンのテキスト色 */
    border-radius: 5px; /* ボタンの角を丸める */
    font-weight: bold; /* テキストを太字にする */
    cursor: pointer; /* カーソルをポインターにする */
}

.wrapper {
    background-color: #2590EB;
    width: 100%;
    height: 200px;
    max-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper .file-upload {
    height: 200px;
    width: 180px;
    max-height: 20vh;
    border-radius: 100px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #eeeeee;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #2590EB 50%,  rgba(255, 64, 255, 0.25) 50%);
    background-size: 100% 200%;
    transition: all 1s;
    color: #eeeeee;
    font-size: 100px;
}
.wrapper .file-upload input[type=file] {
    height: 200px;
    width: 200px;
    max-height: 20vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}
.wrapper .file-upload:hover {
    background-position: 0 100%;
    color: #2590EB;
}

img#refresh{
    position: fixed;
    right:5%;
    top:3%;
}
img#list{
    position: fixed;
    right:5%;
    top:11%;
}


span#inner_text_user_id{
    position: fixed;
    color:#fff;
    font-size:0.9em;
/*    line-height: 1.1em;*/
    text-align: left;
    top:1%;
    left:1.5%;

    text-shadow: 
    -1px -1px 0 #28D,  
    1px -1px 0 #28D,
    -1px 1px 0 #28D,
    1px 1px 0 #28D; /* 輪郭 */
}

span#edf_file_name{
    position: relative;
    top: 30%; /*52.5px*/
    font-family: Arial;
    color:#ffffff;
    font-size:1.25em;

    text-shadow: 
    -1px -1px 0 #28D,  
    1px -1px 0 #28D,
    -1px 1px 0 #28D,
    1px 1px 0 #28D; /* 輪郭 */
}

div#top_result{
    border:2px solid;
    border-color:#99ff99;
    font-size:1.45em;
    padding:0.5%;
    text-align: center;
}


div.inputFile{
    border:2px solid;
    color:#fff;
    background-color: #2590EB;
    border-color:#2590EB;
    font-size:1.25em;
    padding:0;
    line-height:1em;
    text-align: center;
}
/*--------------------ラジオボタン-----------------------*/

div.select-os{
    background-position: 0 100%;
    background-color: #2590EB;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    padding: 1%;
    line-height:1.5em; 
    max-width: 1024px;
}
.select-os input[type="radio"] {
    display: none;
}

.select-os input[type="radio"]:checked + label {
    color:#06c;
    font-weight: bold;
    border: 2px solid #fff;
    background-color: #eef;
}

.select-os label {
    color: #cce;
    border: 2px solid #ddd;
    text-align: center;
    display: inline-block;
    padding: 2px 0px;
    width: 30%;
    max-width: 300px;
}

.select-os label:hover {
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
}

.select-os select{
    font-size:1em;
    border: 1px solid #fff;
    background-color: #eef;
    padding-right: 0px;
}

.select-os p{
    line-height:1.25em; 
}

.select-os input[type="text"]{
    font-size:1em;
}

/*------------テーブル--------------*/

.list table{
    border-spacing: 0px;
}
.list th,td{
    border-top: 1px solid #000;
    border-right: 1px solid #ccf;
    border-collapse: collapse;
    border-spacing: 0;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-right: 3px;
    padding-left: 3px;
    text-align: center;
}
.list th:last-child,td:last-child {
    border-right: none;
}
.list table{
    border-bottom: 1px solid #000;
}
table tr:last-child td,
table tr:last-child th {
    border-bottom: 1px solid black;
}

thead th {
    position: sticky;
    top: 0;
    background-color: #fff; /* ヘッダーの背景色 */
}

tbody {
    max-height: 90%; /* スクロール領域の高さ */
    overflow-y: auto;
}

/* デフォルトスタイル（デスクトップ、印刷用） */


/* スマホ用のスタイル */
.short-text {
    display: none;
}

@media screen and (max-width: 600px) {
    .full-text {
        display: none;
    }
    .short-text {
        display: inline;
    }
    .hide-on-mobile {
        display: none;
    }
    .list th,td{
        padding-right: 1px;
        padding-left: 1px;
    }
}

@media screen and (min-width: 1024px) {
    .pc-no-wrap {
        white-space: nowrap;
    }
    .max150 {
        max-width: 250px;
    }
}