@charset "utf-8";

input[type="submit"], button, input[type="radio"], input[type="checkbox"], input[type="button"] {
    cursor: pointer; /* マウスを置いた時のカーソルの形 */
}

input[type="text"], input[type="password"], input[type="date"], select, textarea, input[type="number"] {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

input[type="text"]:hover, input[type="password"]:hover, input[type="date"]:hover, select:hover, textarea:hover, input[type="number"]:hover {
    background-color: #eaf4fc;
}

textarea {
    resize: vertical;
    width: calc(100% - 30px);
    min-height: 100px;
}

.text {
    width: 100%;
    max-width: 300px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}

.button {
    background-color: #223a70;
    min-width: 180px;
    line-height: 60px;
    border-radius: 32px;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    border: 1px solid;
}
.button:hover {
    background-color: #ffffff;
    color: #223a70;
    border: 1px solid #223a70;
}

.page-back .button {
    margin-top: 25px;
}

.button-square {
    font-size: 20px;
    min-width: 45px;
    height: 45px;
    line-height: normal;
    border-radius: 10px;
}

.button-aqua {
    background-color: #3bb5f2;
}
.button-aqua:hover {
    background-color: #ffffff;
    color: #3bb5f2;
    border: 1px solid #3bb5f2;
}

.button-orange {
    background-color: #e55639;
}
.button-orange:hover {
    background-color: #ffffff;
    color: #e55639;
    border: 1px solid #e55639;
}

.td-password {
    width: 300px;
    border: 1px solid #808080;
}

.td-password input[name="password"] {
    width: calc(100% - 32px);
    border: none;
}

.fa {
    font-size: 20px;
}