/* 共通 */

body {
    font-size: 1rem;
    width: 100vw;
    min-height: 100vh;
    background-image: url(../img/a005a.jpg);
    background-size: cover;
}

button, input, select, textarea {
    font-family : inherit;
    font-size : 100%;
}

.confirmtitle {
    text-align: center;
    padding-bottom: 30px;
}

.container {
    margin-top: 100px;;
    padding: 60px 80px 80px 80px;
    width: 500px;
    min-height: 300px;
    margin-right: auto;
    margin-left : auto;
    background-color: rgba(245, 245, 245, 0.8);
}

.title {
    padding-top: 15px;
}

.insert {
    margin-right: auto;
    margin-left : auto;
}

.textbox {
    width: 480px;
    height: 30px;
    margin-right: auto;
    margin-left : auto;
    padding: 5px 10px;
    border-radius: 6px;
    border-top: 1px solid #aaa;
    border-left: 1px solid #aaa;
    border-right: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    background-image: none;
    background-color: rgb(255, 255, 255);
    font-size: 16px;
}

.commentbox{
    height: 200px;
    font-size: 16px;
}

.submit {
    width: 500px;
    text-align: center;
}

.submit-btn {
    transition: 0.2s;
    margin: 30px 15px 0 15px;
    font-size: 1.2em;
    box-shadow: 3px 3px 3px gray;
}
      
.submit-btn:active {
    transform: translateY(2px);
}

#tyMessage {
    text-align: left;
    font-size: larger;
}

.backHome {
    margin-top: 30px;
    text-align: center;
}

.backHome P {
    margin-bottom: 0px;
}

.tyImg {
    margin-top: 50px;
    text-align: center;
}

.fontred {
    color: red;
}

@media screen and (max-width: 1030px) {
    body {
        margin: 0 0 0 0 ;
        font-size: 3rem;
        width: 100vw;
    }

    .container {
        width: 100vw;
        margin: 0 0 0 0 ;
        padding: 80px;
        min-width: 100vw;
        min-height: 100vh;
        background-color: rgba(245, 245, 245, 0.8);
    }

    .textbox {
        width: calc(100vw - 23px);
        height: 80px;
        font-size: 45px;
    }

    .commentbox{
        height: 500px;
        padding-top: 20px;
    }

    .submit {
        width: 100vw;
    }

    #tyMessage {
        font-size: 125%;
        text-align: left;
    }
    
    .tyImg {
        text-align: center;
        margin-top: 50px;
        zoom: 200%;
    }

    .backHome {
        margin-top: 30px;
        text-align: center;
    }
}