.Guide{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
@media screen and (max-width: 600px) {
	.Guide{
        display: block;
	}
}
.Guide__Security{
    border: 1px solid #9d7482;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}
.Guide__SecurityItem{
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 7.5px;
}
.Guide__SecurityItem:last-child{
    margin-bottom: 0;
}
.Guide__SecurityItem::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1em;
    height: 1em;
    border: 1px solid gray;
    border-radius: 2.5px;
    transform: translateY(-50%);
}
.Guide__SecurityItem::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__PostCode{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.Form__PostCode > label{
    width: 100px;
    border-left: 5px solid currentColor;
    padding-left: 5px;
    flex-grow: 0;
}
.Form__PostCode > input{
    width: min(100%, 150px);
}
.Form__Address{
    display: flex;
    align-items: center;
    gap: 5px;
}
.Form__Address > label{
    width: 100px;
    border-left: 5px solid currentColor;
    padding-left: 5px;
    flex-grow: 0;
}


.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;
}
