
div#stnContents {
    background: #f3f3f3;
    padding-bottom:6rem;
}
div#stnContents > form > h3 {
    text-align: center;
    font-size: 2rem;
    margin:0 0 0 0;
    padding:2rem 0;
}

section#stnRegister {
    max-width:800px;
    margin:0 auto;
    padding:2rem 2rem 2rem 2rem;
    overflow: hidden;
    font-family: var(--FontFamily);
    border:1px solid #CCC;
    background: #FFF;
    height: auto;
}
section#stnRegister > article {

}
section#stnRegister > article > h3 {
    padding:0 0 1.5rem 0; margin:0 0 1rem 0; border-bottom: 1px solid #ddd; font-size:1.5rem; font-weight: 600; color:#212121;
}

.w-50 { width:50%; }
.w150 { width:150px; }

section#stnRegister > article#stnRegisterEssential {
    display: flex; flex-direction: column;
}
section#stnRegister > article#stnRegisterChoice {
    padding-top:2rem;
}
.bt1 { margin-bottom:1rem; }

.gap05 { gap: .5rem; }
.gap1 { gap: 1rem; }

div#stnRows {
    display: flex; flex-direction: row;
}

div#stnCols {
    display: flex; flex-direction: column;
}


div.stnTitle { color:#333; font-size: .875rem; margin-bottom: .5rem; }
span.titleWarning {
    color:#dd0907; font-size: .875rem; margin-top: .5rem;
}
section#stnRegister > article#stnRegisterChoice  div.stnBox {
    background: #f3f3f3; color:#666; padding:1rem 1rem; font-size: .875rem;
}
section#stnRegister > article#stnRegisterChoice  div.stnBox > div.stnCols {
    display: flex; flex-direction: column; font-size:.75rem;
}

.stnTitleRow {
    display: flex; align-items: center; justify-content: space-between;
}
.stnTitleRow > div.stnTitle {
    margin-bottom: 0;
}
.stnTitleRow > label { font-weight: 500 }
.stnChkBox {
    display: flex; gap: 1rem; align-items:center;
}

.stnChkBox strong { color:#dd0907; font-weight: 500 }
.stnChkBox2 {
    display: flex; gap: 1rem; align-items:center; justify-content: space-between;
}

.stnChkBox2 strong { color:#dd0907; font-weight: 500 }


.chk_box { display: block; position: relative; padding-left: 1.5rem; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; font-size: .875rem; }
.chk_box input[type="checkbox"] { display: none; }
.chk_box > .on { width: 1rem; height: 1rem; background: #ddd; position: absolute; top: 0; left: 0; }
.chk_box input[type="checkbox"]:checked + .on { background: #41a8c6; }
.chk_box > .on:after { content: ""; position: absolute; display: none; }
.chk_box input[type="checkbox"]:checked + .on:after { display: block; }
.chk_box > .on:after { width: .25rem; height: .5rem; border: solid #fff; border-width: 0 .125rem .125rem 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); position: absolute; left: .375rem; top: .125rem; }



.chk_box2 { display: block; position: relative; padding-left: 1.5rem; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; font-size: .875rem; }
.chk_box2 input[type="checkbox"] { display: none; }
.chk_box2 > .on { width: 1rem; height: 1rem; background: #ddd; position: absolute; top: 0; left: 0; }
.chk_box2 input[type="checkbox"]:checked + .on { background: #212121; }
.chk_box2 > .on:after { content: ""; position: absolute; display: none; }
.chk_box2 input[type="checkbox"]:checked + .on:after { display: block; }
.chk_box2 > .on:after { width: .25rem; height: .5rem; border: solid #fff; border-width: 0 .125rem .125rem 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); position: absolute; left: .375rem; top: .125rem; }




.dialog {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    font-family: var(--FontFamily);
}

.dialog>.tb {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.dialog > .tb > div.inner > div.header {
    padding:1.5rem 1rem;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
    font-size:1rem;
    color:#333;
    font-weight: 500;
}

.dialog>.tb .inner {
    max-width: 500px;
    margin:2rem 2rem;
    width:100%;
    background: #fff;
    border-radius: 20px 20px;
}

.dialog .ct {
    overflow-y: auto;
    padding:1rem 1rem;
}
input.w100 { width:100%; }
.dialog .bottom {
    width:100%;
    display: flex; justify-content: space-between; flex-direction: row; align-items: center;
}
.dialog .bottom > button {
    width:50%;
    padding:.5rem 0;
    background: #f1f1f1;
    border:1px solid #f1f1f1;
    border-radius: 0 0 0 20px;
    line-height: 1.5rem;
}
.dialog .bottom > button:last-child {
    width:50%;
    color:#FFF;
    background: #41a8c6;
    border:1px solid #41a8c6;
    border-radius: 0 0 20px 0;
}

.dialog2 {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    font-family: var(--FontFamily);
}

.dialog2>.tb {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.dialog2 > .tb > div.inner > div.header {
    padding:1.5rem 1rem;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
    font-size:1rem;
    color:#333;
    font-weight: 500;
}

.dialog2>.tb .inner {
    max-width: 500px;
    margin:2rem 2rem;
    width:100%;
    background: #fff;
    border-radius: 20px 20px;
}

.dialog2 .ct {
    overflow-y: auto;
    padding:1rem 1rem;
}

.dialog2 .bottom {
    width:100%;
    display: flex; justify-content: space-between; flex-direction: row; align-items: center;
}
.dialog2 .bottom > button {
    width:50%;
    padding:.5rem 0;
    background: #f1f1f1;
    border:1px solid #f1f1f1;
    border-radius: 0 0 0 20px;
    line-height: 1.5rem;
}
.dialog2 .bottom > button:last-child {
    width:50%;
    color:#FFF;
    background: #41a8c6;
    border:1px solid #41a8c6;
    border-radius: 0 0 20px 0;
}

a#registerService,
a#registerPerson {
    cursor: pointer; text-decoration: underline; color:#333; font-weight: 600;
}
div.stnRegisterFormBtn {
    margin-top:2rem;
    text-align: center;
}
div.stnRegisterFormBtn > button {
    width:50%;
}


@media (max-width: 479px) {
    div#stnRows { flex-direction: column }
    .w-50 { width:100%; }
    div#stnCols > div.titleWarning {
        display: flex; flex-direction: column;
    }
}
