.main{
    width: 100%;
    min-height: 90vh;
}
.main .title{
    display: flex;
    width: 100%;
    height: 30vh;
    align-items: center;
    background-color: #c5c5c5;
}
.main .title .flex{
    width: 55%;
    margin: auto;
}
.main .title .flex h2{
    font-size: 3rem;
}
.main .title .flex h3{
    font-size: 1.4rem;
}
.main .mainBody{
    display: inline-flex;
    width: 100%;
    min-height: calc(90vh - 20vh);
    justify-content: center;
}
.main .mainBody .registerItem{
    width: 700px;
}
.main .mainBody .registerItem .titleArea{
    display: flex;
    width: 85%;
    height: 80px;
    margin: auto;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    border-bottom: 1px solid #222;
}
.main .mainBody .registerItem form{
    margin-top: 30px;
}

/*メールアドレスインプット*/
.unification.emailInput{
    width: 80%;
    margin: 0 auto;
}
.unification.emailInput p{
    font-size: 14px;
    color: #272727;
}
.unification.emailInput input{
    width: 100%;
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #cccccc;
    background-color: #fff !important;
    font-size: 1.2rem;
}
.unification.emailInput:nth-child(3),
.unification.emailInput:nth-child(4){
    margin-top: 15px;
}
/*ログインボタン*/
.unification.loginBut{
    width: 80%;
    margin: 0 auto;
}
.unification.loginBut button{
    all: unset;
    display: block;
    width: calc(100% - 2px);
    height: 53px;
    position: relative;
    border: 1px solid #000;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
}
.unification.loginBut button:hover{
    color: #000;
}
.unification.loginBut button::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: block;
    background: #000000;
    transition: 0.5s ease;
    right: 0;
    z-index: -1;
}
.unification.loginBut button:hover::before{
    width:  0;
    z-index: -1;
}

.main .mainBody .registerItem form .policyConf{
    display: flex;
    width: 80%;
    margin: 0 auto;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.policyConf input[type="checkbox"]{
    all: revert;
}
form .policyConf label,
form .policyConf label a{
    font-size: 0.9rem;
    font-weight: 300;
}
form .policyConf a{
    text-decoration: underline;
}
.warning{
    width: 80%;
    margin: auto;
    margin-top: 40px;
    padding-bottom: 40px;
}
.warning p:nth-child(2),
.warning p:nth-child(3){
    padding-top: 8px;
}
.errorlist {
    color: red;
    margin: 5px 0 0 0;
    list-style: none;
    padding: 0;
}
@media screen and (max-width:1025px){
    .main .title .flex{
        width: 85%;
    }
    .main .title .flex h2{
        font-size: 2.5rem;
    }
    .main .mainBody .registerItem{
        width: 100%;
    }
    @media screen and (max-width:480px){
        .main .title .flex,
        .main .mainBody .registerItem .titleArea,
        .unification.emailInput,
        .main .mainBody .registerItem form .policyConf,
        .unification.loginBut,
        .warning{
            width: 90%;
        }
        .main .mainBody .registerItem .titleArea h2{
            font-size: 1.6rem;
        }
        .main .title .flex h2{
            font-size: 2.2rem;
            white-space: nowrap;
        }
        .main .title .flex h3{
            font-size: 1.3rem;
        }
    }
}
/*レスポンシブ対応済み　スマホ、タブレット*/