h1 {
    text-align: center;
    border-bottom: 2px solid orange;
    padding-bottom: 40px;
    padding-top: 20px;
    margin: 0;
}

/**/
.menu {
    padding: 20px;
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
    background: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    hr {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
.menus {
    * {transition: all 0.3s;}
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    height: 120px;
    .cardtype {
        display: flex;
        flex-direction: column;
        h3 {
            margin: 0;
            margin-bottom: 10px;
            padding-left: 10px;
            border-left: 5px solid orange;
        }
    }
    select {
        background: #fff;
        border-radius: 20px;
        border: 1px solid #d7d7d7;
        padding: 10px 20px;
        width: 100%;
        margin: 0;
    }
    .btnlist {
        display: flex;
        gap: 20px;
    }
    button {
        height: 60px;
        width: 60px;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: none;
        background: #fff;
        box-shadow: 0 0 0 3px orange;
        padding: 20px;
        border-radius: 20px;
    }
}
.mains {
    position: relative;
    display: flex;
    align-items: start;
    .style {
        width: calc(100% - 65vh);
    }
    .dpreview {
        width: fit-content;
        height: 80vh !important;
        aspect-ratio: 3 / 4;
        background: skyblue;
        position: absolute;
        right: 0;
        background-image: url(https://hassus.stars.ne.jp/tool/img/card.jpg);
        background-size: cover;
        height: fit-content;
        z-index: 1;
    }
}
/**/
.style {
    h3 {
        margin: 0;
        padding-left: 10px;
        border-left: 5px orange solid;
        margin-top: 20px;
        &:nth-child(1) {
            margin-top: 0;
        }
    }
}
/* LABEL */
.labeltype1 {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    input {
        width: 100%;
        margin: 10px 0;
        padding: 10px;
        height: 50px;
        border-radius: 20px;
        border: 1px solid #d7d7d7;
        background: #fff;

    }
    span {
        color: gray;
        font-size: 11px;
    }
}
.labeltype2 {
    display: flex;
    flex-direction: column;
    select {
        margin-top: 0;
    }
    p {
        margin-bottom: 8px;
    }
}

.inputtype1 {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 20px;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
}

.infos {
    color: gray;
    font-size: 11px;
    display: flex;
}
.appealalign {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    label {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 5px;
    }
}
/**/
select {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #d7d7d7;
    padding: 10px 20px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
    padding: 10px 20px;
    resize: vertical;
    height: 120px;
}
.menutop {
    position: sticky !important;
    top: 90px;
    z-index: 200;
    transition: all 0.3s;
}
.menutop.stop {
    width: calc(100% - 65vh);
    background: orange;
    h3 {
        border-left: 5px solid #fff;
    }
}
.prebtn {
    display: none;
}
@media (max-width: 768px) {
    h1 {
        font-size: 20px;
    }
    .menus {
        select {
            padding: 10px 0;
        }
        .btnlist {
            margin-right: -84px;
        }
    }
    .menutop {
        top: 70px;
    }
    .menutop.stop {
        height: 70px;
        button {
            height: 40px;
        }
        .btnlist {
            margin-right: 0;
        }
        .cardtype1 {
            transform: translateY(-200px);
        }
    }
}

@media (max-width: 1100px) {
    .mains .style {
        width: 100%;
    }
    .mains .dpreview {
        display: none;
    }
    .menutop.stop {
        width: 100%;
    }
    .prebtn {
        display: block;
    }
}

/**/
input[type=text],
input[type=color],
textarea,
select {
    font-size: 16px;
    transition: box-shadow 0.3s;
    &:focus {
        border: orange 1px solid;
        box-shadow: 0 0 0 2px orange;
    }
}


/**/
input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 1px solid #d7d7d7;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}

input[type="radio"]:checked {
    background: orange;
    opacity: 1;
    border: solid orange 1px;
    transition: all 0.3s ease-in-out;
}

input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

input[type="radio"]:focus {
    outline: none;
}

.attention {
    background: #fff;
    border: 1px solid #d7d7d7;
    padding: 20px;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    h3 {
        margin: 0;
        padding-left: 10px;
        border-left: 5px solid orange;
    }
    ul {
        margin: 0;
    }
}

.checklist {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
    label {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
}

/**/
input[type="checkbox"] {
    width: 20px !important;
    height: 20px;
    border: 1px solid #d7d7d7;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    margin: 0;
    left: 0;
    border-radius: 5px;
}

input[type="checkbox"]:hover {
    transition: all 0.3s ease-in-out;
    background: #fff;
}

input[type="checkbox"]:checked {
    background: orange;
    transition: all 0.3s ease-in-out;
    border: 1px solid orange;
}

input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 9.5px;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
}

input[type="checkbox"]:focus {
    outline: none;
}

.activity {
    display: flex;
    flex-direction: column;
    p {margin-bottom: 5px;}
    label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 400px;
        input {
            margin: 0;
        }
        span {
            background: orange;
            color: #fff;
            padding: 0 5px;
            border-radius: 100px;
            width: 70px;
            text-align: center;
            letter-spacing: -2px;
            font-size: 13px;
        }
    }
}