.common-form-input{
    margin: 0;
    padding: 0;
}
.common-form-input .notice{
    margin: 16px 0;
    padding: 16px;
    width: 100%;
    text-align: center;
    border: solid 1px #ff0000;
    color: #ff0000;
    font-weight: bold;
    box-sizing: border-box;
}
.common-form-input .required{
    margin: 0 0 0 16px;
    padding: 0;
    display: inline-block;
    font-weight: normal;
    color: #ff0000;
}
.common-form-input .error-message{
    margin: 0;
    padding: 0;
    color: #ff0000;
}
.common-form-input .two-column-input{
    display: flex;
    gap: 8px;
}
.common-form-input .two-column-input > .box{
    width: 100%;
}
.common-form-input .radio-list{
    display: flex;
    gap: 16px;
}
.common-form-input .customization-select{
    margin: 0;
    padding: 0;
    width: 50%;
    min-width: 200px;
    position: relative;
}
.common-form-input .customization-select:after{
    content: '';
    margin: auto 0;
    padding: 0;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-width: 2px;
    border-style: solid;
    border-top-color: var(--common-color-002);
    border-right-color: var(--common-color-002);
    border-left: none;
    border-bottom: none;
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
}
.common-form-input .customization-select select{
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}
.common-form-input .date-select{
    display: grid;
    grid-template-columns: repeat(3, 20%);
    gap: 8px;
}
.common-form-input .date-select .customization-select{
    width: 100%;
    min-width: 80px;
}
.common-form-input dl{
    margin: 0;
    padding: 16px 0;
    display: flex;
    align-items: center;
    border-bottom: dotted 1px #bbb;
}
.common-form-input dl dt{
    margin: 0;
    padding: 0;
    width: 300px;
    font-size: 1.4rem;
    font-weight: bold;
}
.common-form-input dl dd{
    margin: 0;
    padding: 0;
    width: 100%;
}
.common-form-input dl dd .user-name input[type="text"]{
    width: 100%;
    max-width: 320px;
}
.common-form-input dl.password{
    align-items: flex-start;
}
.common-form-input dl.password dt{
    margin-top: 14px;
}
.common-form-input dl.password dd input:nth-of-type(1){
    margin-bottom: 8px;
}
.common-form-input dl.password dd .password-input{
    position: relative;
}
.common-form-input dl.password dd .password-input input[type="password"]{
    padding-right: 49px;
}
.common-form-input dl.password dd .password-input .icon-disp-hide{
    margin: auto 0;
    width: 25px;
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 8px;
    right: 16px;
}
.common-form-input dl.password dd .error-message{
    margin-bottom: 8px;
}
.common-form-input .action-contents{
    margin: 32px 40px;
    padding: 0;
    text-align: center;
}
@media screen and (max-width: 960px) {
    .common-form-input .date-select{
        grid-template-columns: repeat(3, 1fr);
    }
    .common-form-input dl{
        padding: 8px 0 16px;
        flex-direction: column;
    }
    .common-form-input dl dt{
        margin: 0 0 8px 0;
        width: 100%;
    }
}