body {
    margin: auto;
    padding: 3px;
}

.top{
    background-color:#ffffdd; 
      

}

th {
    padding: 20px;

    color: #981c66;
    /*文字色*/
    background: rgb(255, 224, 195);
    /*背景色*/
}

td {
    padding: 20px;
}

table {
    color: palevioletred;



}


table {






    border-collapse: collapse;
    border: none 3px orangered;
    /*表全体を線で囲う*/
}

table th,
table td {
    border: dashed 2px gold;
    /**/
    /*破線 1px オレンジ*/
}


table {

    border-spacing: 13;
    border-collapse: separate;
    border-radius: 18px;

    background: rgb(255, 248, 241);
    /*背景色*/
}

table td {

    border-spacing: 0;
    border-collapse: separate;
    border-radius: 18px;

}



/*すくろるばー*/

::-webkit-scrollbar {
    width: 35px;
    height: 35px;
    box-shadow: 0 0 5px #ff8a9e inset;

    background:
        linear-gradient(rgba(244, 203, 210, 5), rgba(208, 195, 208, 5));


    border-radius: 5px;
}



::-webkit-scrollbar {
    width: 35px;
    height: 35px;
    box-shadow: 0 0 5px #ff8a9e inset;

    background:
        linear-gradient(rgba(244, 203, 210, 5), rgba(208, 195, 208, 5));


    border-radius: 5px;
}



::-webkit-scrollbar-thumb {
    background-color: rgb(150, 220, 240);
    border-radius: 5px;
    box-shadow: inset 3px 3px 3px, 0.2;
}



input[type="submit"] {
    font-size: 15px;
    color: #fff;
    display: inline-block;
    padding: 15px 0px;
    text-align: center;
    background-color: #73b1e7;
    border: 1px solid #73b1e7;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 1s;
}

/*--hover--*/
input[type="submit"]:hover {
    color: #73b1e7;
    background-color: #ffffff;
    border: 1px solid #73b1e7;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 1s;
}



html {
    color: #735f7f;
    background-color: #ffffff;

    font-size: 12px;
}



/* 未訪問のリンクは青色 */
a:link {
    color: blue;
}

/* 訪問済みのリンクは紫色 */
a:visited {
    color: purple;
}

/* ホバー（マウスオーバー）時は赤色 */
a:hover {
    color: red;
}

/* クリック中は緑色 */
a:active {
    color: green;
}