body {
    background-color: #f4f6fa;
    font-family: 'Arial', sans-serif;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    color: #333;
    line-height: 1.6;
}

ul.form-list { 
    list-style: none;
    padding: 10px;
}

ul.button-list { 
    list-style: none;
}

ul.form-list li { 
    padding-bottom: 20px;
}

label { 
    display: block; 
}

.asterisk{
    color: rgb(38, 154, 236);
    font-weight: 100;
}

input[type="text"], input[type="date"], select {
    border: 2px;
    background-color: #f4f6fa;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.title{
    background-color: white;
    padding: 24px 12px;
    border-radius:20px;
}

#user{
    margin-top: -25px;
    font-size: small;
}

.form_area{
    margin-top: 20px;
    background-color: white;
    padding: 24px 12px;
    border-radius:20px;
}

.button_area{
    text-align: center;
    padding-top: 20px;
}

.submit_button{
    border: none;
    background-color: rgb(38, 154, 236);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    width: 20%; /* ボタンを100%の幅に */
    text-align: center;
}

.hidden {
    display: none; 
}

.blind{
    display: none;
}


.image_preview {
    text-align: center;
}

.icon {
    width: 18px; /* アイコンの幅を小さく調整 */
    height: 18px;
}

.test{
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    border: 1px solid #d7d8da;
    border-radius: 5px;
    margin-top: 10px;
}

/* .remove_button{
    border: none;
    background-color: rgb(38, 154, 236);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    width: 20%;
    text-align: center;
} */



@media (max-width: 600px) {
    /* body {
        padding: 10px;
        max-width: 100%; /* 最大幅を100%に設定 */
    /* } */ 

    body {
        padding: 0; /* スマホ画面では左右の余白をなくす */ 
    } 
    
    .form_area {
         margin-top: 20px; /* スマホ画面では左右余白をなくす */ 
         border-radius: 20px ; /* スマホ画面では角を丸くしない */ 
        } 
        
    .title {
         margin top: 0; /* スマホ画面ではタイトルの左右余白をなくす */ 
         padding: 16px 10px; /* タイトルのパディングを調整 */ 
         border-radius: 20px; /* スマホ画面では角を丸くしない */ }
/* 
    .title, .form_area {
        padding: 16px;
    } */


    input[type="text"], input[type="date"] select {
        padding: 8px;
        font-size: 14px;
        width: 100%; /* 幅を100%に */
    }

    .submit_button {
        padding: 8px 16px;
        font-size: 14px;
        width: 40%;
        margin: auto;
        margin-bottom: 15px;
    }
    
}