.button {
    display: inline-block;
    border-radius: 5%;
    /* 文字サイズ */
    font-weight: bold;
    text-align: center;
    /* 文字位置   */
    cursor: pointer;
    /* カーソル   */
    padding: 12px 12px;
    /* 余白       */
    background: #fd6767;
    /* 背景色     */
    color: #fff;
    /* 文字色     */
    line-height: 1em;
    /* 1行の高さ  */
    transition: .3s;
    /* なめらか変化 */
    box-shadow: 6px 6px 3px #666666;
    /* 影の設定 */
    border: 2px solid #fd6767;
    /* 枠の指定 */
    text-decoration: none;
    margin: 5px;
}

.button:hover {
    box-shadow: none;
    /* カーソル時の影消去 */
    color: #fd6767;
    /* 背景色     */
    background: #000000;
    /* 文字色     */
}

body {
    font-size: medium;
    font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.box {
    padding: 0.2em 0.5em;
    margin: 2em 0;
    color: #565656;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
}

.box p {
    margin: 0;
    padding: 0;
}

h1 {
    border: 1px solid #f0bdc4;
    /* 内側の線の太さ・種類・色 */
    color: #e7939f;
    /* 文字色 */
    margin: 20px 10px;
    /* 外側の余白 上下・左右 */
    padding: 10px;
    /* 内側の余白 */
    position: relative;
    z-index: 0;
    font-family: 'メイリオ', Meiryo;
}

h1:before {
    border: 2px solid #f0bdc4;
    /* 外側の線の太さ・種類・色 */
    content: '';
    display: block;
    position: absolute;
    top: -8px;
    bottom: -8px;
    left: -8px;
    right: -8px;
    z-index: -1;
}

input{
    font-size: medium;
}
select{
    font-size: medium;
}

.clear {
    color: #fd6767;
}