.Security{
    border: 1px solid #9d7482;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}
.Security__Title{
    font-size: 2rem;
    color: #ff6473;
    padding-bottom: 15px;
}
.Security__List{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.Security__Item{
    position: relative;
    padding-left: 1.5em;
}
.Security__Item::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1em;
    height: 1em;
    border: 1px solid gray;
    border-radius: 2.5px;
    transform: translateY(-50%);
}
.Security__Item::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1em;
    height: 0.5em;
    border-style: solid;
    border-color: #ff6473;
    border-width: 0 0 2px 2px;
    position: absolute;
    top: 25%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg) ;
}


.Form{
    margin-bottom: 30px;
}
.Form__Group{
    padding-bottom: 30px;
}
.Form__Label{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.6rem;
    padding-bottom: 5px;
}
.Form__Label::after{
    content: '任意';
    color: #fff;
    padding: 2px 5px;
    border-radius: 2px;
    background-color: gray;
}
.Form__Label.--required::after{
    content: '必須';
    background-color: red;
}
.Form__Upload{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 40px;
}
.Form__Upload label{
    width: min(100%, 400px);
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #ffffd7;
    box-shadow: 0px 1px 3px #ccc;
    border-radius: 5px;
    padding: 15px;
    font-size: 1.6rem;
}
.Form__Upload label:hover{
    opacity: 0.8;
}
.Form__Upload label > img{
    width: 1em;
}
.Form__Upload input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.Form__Upload #preview{
    display: flex;
    align-items: center;
}

.Form__Upload #preview > img{
    border: 1px solid #ccc;
    width: 20%;
    min-width: 100px;
    height: 60px;
    object-fit: contain;
}
.Form__Upload #preview > p{
    margin-left: 5px;
    margin-right: 5px;
    word-break: break-all;
}
.Form__Upload #preview > button{
    margin-left: auto;
    color: red;
    font-size: 1.6rem;
    border: 1px solid currentColor;
    width: 80px;
    padding: 10px;
    white-space: nowrap;
}
.Form__Upload #preview > button:hover{
    background-color: red;
    color: white;
}





.Form__Submit{
    display: grid;
    justify-items: center;
}
.Form__Submit > button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #00997A;
    border: 2px solid currentColor;
    border-radius: 5px;
    width: 280px;
    padding: 20px;
}
.Form__Submit > button::before{
    content: '';
    display: block;
    background-image: url("/images/next.svg");
    width: 15px;
    height: 15px;
}
.Form__Submit > button:hover{
    color: #fff;
    background-color: #00997A;
}
