/* style.css */
@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

header {
    font-size: 48px;
    padding: 100px;
    text-align: center;
}

body {
    display: grid;
    grid-template-columns: 100vw;
    grid-template-rows: 100vh;
    font-size: 16pt;
}

.container {
    max-width: 800px;
    justify-self: center;
    margin: 0 auto;
    /* 横方向中央揃え */
    /* align-self: center;
    縦方向中央揃え */
}

button {
    padding: 0.2em;
    font-size: 20pt;
}

textarea {
    font-size: 16pt;
}

input {
    padding: 0.2em;
    font-size: 20pt;
}

table {
    padding: 0.2em;
    font-size: 14pt;
    table-layout: fixed;
    width: 800px;
}

table td {
    word-wrap: break-word;
}

.dan {
    margin-top: 30px;
    padding-top: 30px;
}
.dan2 {
    margin-top: 15px;
    padding-top: 15px;
}

.send {
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: rgb(149,202,252);
    background: linear-gradient(270deg, rgba(149,202,252,1) 0%, rgba(107,182,255,1) 100%);
}
.send:hover {
    background: rgb(117,188,255);
    background: linear-gradient(270deg, rgba(117,188,255,1) 0%, rgba(62,159,252,1) 100%);
}

.sound {
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #fd9535;/*色*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: solid 2px #d27d00;/*線色*/
}

.sound:active {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
    top: 3px;
    box-shadow: none;
}


.gps {
    position: relative;
    background-color: #1abc9c;
    border-radius: 4px;
    color: #fff;
    line-height: 52px;
    -webkit-transition: none;
    transition: none;
    box-shadow: 0 3px 0 #0e8c73;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

.gps:hover {
    background-color: #31c8aa;
    box-shadow: 0 3px 0 #23a188;
}

.gps:active {
    top: 3px;
    box-shadow: none;
}




