/*
 * child style sheet
 */

/*ロゴ
-------------------------------------*/
img.logo {
    width: 250px;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 0 0 3rem 0;
}

/*入力フォーム
-------------------------------------*/
.soufusyo-form p {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 700px;
}
.soufusyo-form input {
    margin-bottom: 0.5rem;
}
.soufusyo-form .radio {
    display: flex;
    align-items: center;
    gap: 2rem;
} 
.soufusyo-form .radio input {
    margin-right: 0.5rem;
}

/*ファイルドロップ
-----------------------------------*/
.file_drop_area {
    padding: 0px 0;
}
.file_drop_area.dragover {
    background-color: #ccc;
    opacity: 0.1;
    z-index: 10;
}
.file_drop_text {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3em;
    font-weight: bold;
}
.file_drop_area.dragover + .file_drop_text {
    display: block;
}
