﻿input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
    color: black;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
    display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
    cursor: pointer;
}

    select::-ms-expand {
        display: none;
    }


/*追加スタイル*/
* {
    box-sizing: border-box;
    transition: 0.2s;
}

html {
    font-size: 16px;
    font-family: sans-serif;
}

input,
button,
select,
textarea {
    font-size: 18px;
}

input, textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
}

input {
    /*margin: 10px;*/
    padding: 10px;
}

.radio label {
    position: relative;
    padding-left: 1.25em;
    margin-right: 1em;
}

    .radio label::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        border: 1px solid #ddd;
        border-radius: 50%;
        background: #eee;
    }

.radio input:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 11px;
    height: 11px;
    background: #A66970;
    border-radius: 50%;
}

select {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background: #eee;
}

textarea {
    margin: 10px 0 0;
    padding: 5px;
    width: 100%;
    height: 8em;
}

.button {
    text-align: center;
}

    .button input {
        background: #A66970;
        padding: 15px 30px;
        color: #fff;
        border: none;
        font-size: 16px;
    }

        .button input:hover {
            opacity: 0.7;
            cursor: pointer;
        }


/* チェックボックス01 */
input[type=checkbox] {
    display: none;
}

.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}

    .checkbox01::before {
        background: #fff;
        border: 1px solid #231815;
        content: '';
        display: block;
        height: 16px;
        left: 5px;
        margin-top: -8px;
        position: absolute;
        top: 50%;
        width: 16px;
    }

    .checkbox01::after {
        border-right: 3px solid #ed7a9c;
        border-bottom: 3px solid #ed7a9c;
        content: '';
        display: block;
        height: 9px;
        left: 10px;
        margin-top: -7px;
        opacity: 0;
        position: absolute;
        top: 50%;
        transform: rotate(45deg);
        width: 5px;
    }

input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
}

input {
    background: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    border-radius: 4px;
    border-right: 1px solid #EEEEEE;
    border-top: 1px solid #EEEEEE;
    box-shadow: none;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    justify-content: center;
    letter-spacing: 0em;
    line-height: 1.4;
    margin: 0px 0px 0px 0px;
    opacity: 1;
    padding: 10px 10px 10px 10px;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

select {
    background: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    border-radius: 4px;
    border-right: 1px solid #EEEEEE;
    border-top: 1px solid #EEEEEE;
    box-shadow: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    justify-content: center;
    align-items: center;
    letter-spacing: 0em;
    line-height: 1.4;
    margin: 0px 0px 0px 0px;
    opacity: 1;
    padding: 10px 10px 10px 10px;
    text-align: left;
    width: 100%;
    max-width: 100%;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

textarea {
    background: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    border-radius: 4px;
    border-right: 1px solid #EEEEEE;
    border-top: 1px solid #EEEEEE;
    box-shadow: none;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    height: 160px;
    justify-content: center;
    letter-spacing: 0em;
    line-height: 1.4;
    opacity: 1;
    padding: 10px 10px 10px 10px;
    text-align: left;
    text-shadow: none;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}


    input:focus,
    textarea:focus,
    select:focus {
        border-color: var(--accent-color);
        border-width: 2px;
    }

pre {
    line-height: 1.5rem;
    margin: 0;
    width: 100%;
    white-space: pre-wrap;
}
