@charset "utf-8";


/*------------ヘッダー------------*/

header {

    display: flex;
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    background-color: #f7f7f7;
    text-align: center;

}

header h1 {
    
    display: flex;
    font-size: 24px;

}

#title {

    display: flex;
    margin-top: 10px;
    margin-left: 3%;
    font-size: 40px;

}

#nav {

    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 70px;
    margin-top: 30px;
    font-size: 20px;
    

}

#nav ul {


    display: flex;
    

}

#nav a {

    display: block;
    text-decoration: none;
    margin-right: 35px;
    color: black;
    font-size: 14px;
    transition: .3s;

}

#nav a:hover{

    display: block;
    text-decoration: none;
    margin-right: 35px;
    color: black;
    font-size: 20px;
    border-bottom: 3px solid #ec9718;

}



/*------------ヘッダー------------*/

/*------------ボディー------------*/

body {

    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;

}

#tbl {

    table-layout:fixed;
    margin-top: 30px;
    margin-left: 20%;
    width: 60%;
    border-collapse: collapse;

}

#tbl th {

    text-align: center;
    padding: 10px;
    background-color: #f7f7f7;

}


input {

    width: 100%;
    padding: 1%;
    border: 1px solid #ccc;
    border-radius: 5px;

}

input:focus {

    background-color: #eee;

}

.dragging {

    background-color: #ccc; /* ドラッグ中の背景色 */

}
  

.sum_all h1,.sum_all input{

    padding: 1%;
    width: 200px;
    color: #555;
    font-size: 40px;
    text-align: center;
    border-bottom: 2px solid #ec9718;
}

.sum_all {

    display:flex;
    justify-content: flex-end;
    margin-right: 20%;

}

#exp {

    margin-top: 10%;
    margin-bottom: 30%;
    margin-left: 20%;
    font-size: 18px;

}

#exp h1{

    margin-top: 40px;
    margin-bottom: 30px;
    width: 500px;
    font-size: 32px;
    border-bottom: solid 3px #ec9718;

}

/*------------ボディー------------*/

/*------------フッター------------*/

#footer{

    display: flex;
    justify-content:space-between;
    
}

footer {

    height: 300px;
    background-color: #f7f7f7;
    padding: 20px;
    text-align: left;

}

footer h1{

    margin-bottom: 5px;
    font-size: 24px;

}

footer h4{

    font-size: 14px;
    margin-top: 30px;

}

footer pre{

    justify-content: flex-start;
    margin-top: 5px;
    text-align: left;
    font-size: 12px;

}

footer ul{

    margin-right: 3%;
    text-align: right;
    font-size: 32px;

}

footer ul a:hover{

    text-align: right;
    text-decoration: none;
    color: black;
    font-size: 42px;
    border-bottom: 3px solid #ec9718;

}

/*------------フッター------------*/

/*------------ボタン---------------*/

#button_group {

    display:flex;
    margin-top: 10%;
    margin-left: 19%;


}

#button {

    display:flex;
    margin-left: 1%;
    padding: 1%;
    width: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #555;
    font-size: large;

}

#button:hover {

    display: flex;
    background-color: #eee;

}

#help {

    display:flex;
    margin-left: 1%;
    padding: 1%;
    width: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #000000;
    background-color: #f6b40c;
    font-size: large;

}

#help:hover {

    display: flex;
    background-color: #eee;

}

#file_select {

    display:flex;
    margin-left: 1%;
    padding: 1%;
    width: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #555;
    font-size: large;

}

#file_select:hover {

    display: flex;
    background-color: #eee;

}

/*------------ボタン---------------*/

/*------------お問い合わせ---------------*/

#contact{

    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f9f8f8;
    font-size: 28px;
    background-color: #3d4549;
    width: 70%;
    height: 10%;
    border-radius: 10px 10px 10px 10px;
    text-align: center;

}

#profile img{

    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 30%;
    border: solid 5px #777777;

}

#profile{

    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ede4d7;
    width: 400px;
    height: 400px;
    border-radius: 5px 5px 5px 5px;

}
/*------------お問い合わせ---------------*/

/*------------アップデート情報---------------*/

#update{

    margin-top: 10%;
    margin-bottom: 30%;
    margin-left: 20%;
    font-size: 18px;

}

#update h1{

    margin-top: 40px;
    margin-bottom: 30px;
    width: 500px;
    font-size: 32px;
    border-bottom: solid 3px #ec9718;

}

/*------------アップデート情報---------------*/

/*------------通知---------------*/
@keyframes slideInRight {

    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }

}

#pop h5{

    width: 300px;
    height: 100px;
    padding-top: 3px;
    padding-left: 3px;
    border-radius: 10px; 
    background-color: rgb(222, 220, 224);
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

#pop {

    display: flex;
    justify-content: flex-end;
    animation: slideInRight 0.5s ease-out;
}


#close {

    position: absolute;
    justify-content: flex-end;
    width: 20px;
    height: 20px;
    border-radius: 5px; 
    background-color: rgb(222, 220, 224);
    border: none;
    text-align: center;

}

/*------------通知---------------*/

