        nav ul {
            list-style: none;
            width: 100%;
        }

        a {
            margin: 0;
            padding: 0;
            vertical-align: baseline;
            background: transparent;
        }
        .right{
            float: right;
            font-size: 32px;
        }
        .pageMove{
            text-align: center;
        }
        .pageMove button{
            width: 96px;
            height: 64px;
        }
        input,
        select {
            vertical-align: middle;
        }

        /*------------------------------

Common Style

------------------------------*/
        body {
            padding-right: 50px;
            padding-left: 50px;
            font-size: 100%;
            font-family:"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
            color:black;
            overflow-wrap: anywhere;
        }
        p{
            margin: 0px;
        }
        a {
            color: #00f;
            text-decoration: none;
        }
        .click{
            color: #00f;
            cursor:pointer
        }
        a:hover {
            text-decoration: underline;
        }
        h1 {
            color: #222;
            text-align: center;
            font-size: 32px;
        }


        /*-----------------------------------
入力エリア
-----------------------------------*/
        textarea{
            margin-top: 8px;
            width: 50%;
            height: 100px;
            border: 1px solid black;
        }
        label {
            display: block;
            margin-bottom: 7px;
            font-size: 86%;
        }


        input[type="submit"],input[type="button"],button{
            appearance: none;
            -webkit-appearance: none;
            padding: 1px;
            color: #fff;
            font-size: 32px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            background-color: black;
        }

        input[type=submit]:hover,
        button:hover {
            background-color: #777;
        }

        hr {
            margin: 20px 0;
            padding: 0;
        }

        .success_message {
            margin-bottom: 20px;
            padding: 10px;
            color: #48b400;
            border-radius: 10px;
            border: 1px solid #4dc100;
        }

        .error_message {
            width: 100%;
            display: inline-block;
            margin-bottom: 20px;
            padding: 10px;
            color: #ef072d;
            list-style-type: none;
            border-radius: 10px;
            border: 1px solid #ff5f79;
        }

        .success_message,
        .error_message li {
            font-size: 86%;
            line-height: 1.6em;
        }


        /*-----------------------------------
掲示板エリア
-----------------------------------*/

        .post{
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            margin-right: auto;
            margin-left: auto;
            padding:4px;
            background: #fff;
            border: 1px solid #777;
        }
        .replyMessage{
                margin-bottom: 4px;
            }
        .replyMessage textarea{
            width: 50%;
        }
        .replyMessage .post{
            width: calc(100% - 20px);
            margin-left: 20px;
            margin-right: 0px;
        }
        .info {
            margin-bottom: 10px;
        }

        .info h2 {
            display: inline-block;
            margin-right: 10px;
            color: #222;
            line-height: 1.6em;
            font-size: 86%;
        }

        .info time {
            color: #000;
            line-height: 1.6em;
            font-size: 72%;
        }
        input[type="submit"].delBtn{
            color: red;
        }
        input[type="button"].goodBtn{
            font-size: 100%;
            width: 32px;
            height: 32px;
            padding: 0px 0px;
            margin: 0px;
            border-radius: 50%;
            border: 1px solid black;
            background-color: white;
            color: black;
        }
        input[type="button"].goodBtn.faved{
            background-color: red;
            color: white;
            vertical-align: middle;
        }
        .side{
            height: 64px;
            display: flex;
            align-items: center;
            vertical-align: middle;

        }
        .side>*{
            margin-right: 10px;
        }
        @media only screen and (max-width: 1000px) {

            body {
                /*padding: 30px 5%;*/
                font-size: 32px;
            }

            input[type="text"] {
                width: 100%;
            }

            textarea {
                width: 100%;
                max-width: 100%;
            }
            .replyMessage textarea{
                width: 100%;
                max-width: 100%;

            }


            input[type="submit"],input[type="button"],button{
            appearance: none;
            -webkit-appearance: none;
            padding: 1px;
            color: #fff;
            font-size: 100%;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            }
            input[type="button"].goodBtn{
                width: 48px;
                height: 48px;
            }
            select{
                font-size: 24px;
            }

            .replyMessage{
                font-size: 32px;
                margin-bottom: 4px;
            }
        }