body {
    font-size: 1.1rem;
    font-family: 'Meiryo',-apple-system,BlinkMacSystemFont,'.SFNSDisplay-Regular','Hiragino Kaku Gothic Pro','Yu Gothic','MS PGothic','Segoe UI','Verdana','Helvetica','Arial',sans-serif;
}
a{
    margin: 20px;
}
textarea { 
    width:90%;
    height:100px;
}

h2::before{
  content: "■";
}
.textbox{
    width:90%;
}

.pad_list_datatableBox{
    margin: 20px;
}
.pad_list_datatableBox h1{
    font-size: 1.4rem;
    margin-bottom: 40px;
}
.pad_list_datatableBox p{
    margin: 20px;
}
.pad_list_datatableBox h2{
    margin-top: 20px;
}
.pad_list_datatableBox h2 ~ div{
    margin: 30px 10px;
}
.pad_list_datatableBox h2 ~ div #textboxColSetting{
    padding: 8px;
}

/* ボタン */
#createButton{
    width: 150px;
    height: 40px;
    padding: 5px 0;
    background: #12c74b;
    color: #ffffff;
    border: none;
    border-bottom: 5px solid #00662d;
    border-radius: 100vh;
    font-weight: bold;
    font-size: 1.0rem;
}
#createButton:active{
    height: 37px;
    margin-top: 3px;
    border-bottom: 2px solid #00662d;
}

#textareaResultDataCopyButton{
    width: 280px;
    height: 40px;
    padding: 5px 0;
    background: #00a1f2;
    color: #ffffff;
    border: none;
    border-bottom: 5px solid #007bb9;
    border-radius: 100vh;
    font-weight: bold;
    font-size: 1.0rem;
}
#textareaResultDataCopyButton:active{
    height: 37px;
    margin-top: 3px;
    border-bottom: 2px solid #007bb9;
}
#textareaResultData{
    margin-top: 15px;
}

textarea:focus {
    border-color: #00a1f2;
    outline: none;
}

/* スマホ用 */
@media screen and (max-width: 480px) {
    textarea { 
        width:98%;
    }
    .pad_list_datatableBox h2 ~ div{
        margin: 20px 10px;
        line-height: 28px;
    }
    .pad_list_datatableBox p{
      width: 80%;
        margin: 0 auto;
    }
    #createButton {
        width: 90%;
        height: 50px;
        border-radius: 2vh;
        display: block;
        margin: 5% auto;
    }
    #createButton:active{
        height: 47px;
        margin-top: calc(5% + 3px);
        border-bottom: 2px solid #00662d;
    }
    #textareaResultDataCopyButton{
        width: 90%;
        height: 50px;
        border-radius: 2vh;
        display: block;
        margin: 5% auto;
    }
    #textareaResultDataCopyButton:active{
        height: 47px;
        margin-top: calc(5% + 3px);
        border-bottom: 2px solid #007bb9;
    }
}