/* ------------------------------------------------------------------------
    PAGE TITLE
------------------------------------------------------------------------  */
/* BG */
#PAGE_TITLE:before {
    background-image: url("./images/page_title_sp.jpg");
}
@media screen and (min-width:769px){
    #PAGE_TITLE:before {
        background-image: url("./images/page_title_pc.jpg");
    }
}

/* ------------------------------------------------------------------------
    Btn_Area
------------------------------------------------------------------------  */
.Btn_Area {
    margin-top: var(--space-20);
}

/* ------------------------------------------------------------------------
    Input
------------------------------------------------------------------------  */
.user_txt ,
.other_txt {
    pointer-events: none;
    opacity: .3;
    transition: all .6s;
}
.user_txt.active ,
.other_txt.active {
    pointer-events: auto;
    opacity: 1;
}
#FORM_AREA .Item .Contents{
    position: relative;
    padding-right: 30px;
}
#FORM_AREA .Item .Contents:after{
    position: absolute;
    right: 0;
    top: 20px;
    content: '';
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}
#FORM_AREA .Item .Contents.Clear:after{
    background-image: url("../../asset/images/icon_check.png");
}
#FORM_AREA .Item .Contents.Confirm:after{
}
@media screen and (min-width:769px){
    #FORM_AREA .Item .Contents{
        padding-right: 40px;
    }
    #FORM_AREA .Item .Contents:after{
        top: 10px;
        width: 30px;
        height: 30px;
    }
}

/* policy */
.Privacy_policy {
    text-align: center;
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
.Privacy_policy p{
    margin-bottom: 1em;
}
.Privacy_policy p a{
    text-decoration:underline;
}
@media screen and (max-width:768px){
    .Privacy_policy p{
        text-align: left;
    }
}
.Confirm {
    pointer-events: none;
    opacity: .3;
    transition: all .6s;
}
.Confirm.active {
    opacity: 1;
    pointer-events: auto;
}

/* ------------------------------------------------------------------------
    COMPLETE
------------------------------------------------------------------------  */
.complete .Title{
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 1.5em;
    display: flex;
    justify-content: center;
}
.complete .Message{
    margin-bottom: 1.5em;
}
.complete .Remarks{
    color: #CF0D0D;
}
@media screen and (min-width:769px){
    .complete .Message,
    .complete .Remarks{
        text-align: center;
    }
}