/* #region entryForm ======================================== */
.entryForm {
    margin-top: 4rem;
}
.entryForm__agreement {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.entryForm__item:not(:first-child) {
    margin-top: 1rem;
}
.entryForm__text {
    line-height: 3rem;
    padding: 0 0.5rem;
    background-color: #F2F2F2;
    border: none;
    width: 100%;
    margin-top: 0.8rem;
}
.entryForm__data {
    width: 100%;
}
.entryForm__button {
    border: none;
    display: block;
    font-size: 15px;
    margin: 3rem auto 0 auto;
    padding: 1rem;
    width: 18rem;
    cursor: pointer;
}
.entryForm__button--confirm {
    background-color: #2f5597;
    color: white;
}
.entryForm__button--submit {
    background-color: #2f5597;
    color: white;
}
.entryForm__button--back {
    background-color: #F2F2F2;
    color: black;
}
.entryForm__errorText {
    color: red;
    margin-top: 1rem;
}
.entryForm__label--required::after {
    background-color: #d9534f;
    border-radius: 0.25rem;
    color: white;
    content: "必須";
    font-size: 80%;
    margin: 0 1rem;
    padding: 0 0.5rem;
    position: absolute;
}
.entryForm__section {
    margin-top: 5rem;
}
.entryForm__checkbox--required::before {
    background-color: #d9534f;
    border-radius: 0.25rem;
    color: white;
    content: "必須";
    font-size: 80%;
    margin-right: 1rem;
    padding: 0 0.5rem;
}
.entryForm__checkboxLabel {
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    margin-top: 1rem;
    width: fit-content;
}
.entryForm__radiobtnLabel {
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    margin-top: 1rem;
    width: fit-content;
}
.entryForm__scrollBox {
    width: 100%;
    height: 30rem;
    border: 1px solid #000000;
    overflow-y: scroll;
}
.entryForm__policy {
    margin-top: 1rem;
}
/* #endregion entryForm ======================================== */

textarea {
    resize: vertical;
}
#txtMailaddress2 {
    margin-top: 0;
}
#icoLoading.active::after {
    content: url(./icon_loader.gif);
    position: absolute;
}
.errMessage {
    color: red;
    font-size: 1.3rem;
}
.--hide {
    display: none;
}

/* for PC & Tablet */
@media print, screen and (min-width: 768px){

/* #region entryForm ======================================== */
.entryForm__item{
    display: flex;
}
.entryForm__label{
    flex-shrink: 0;
    width: 200px;
}
.entryForm input,
.entryForm textarea {
    margin-top: 0;
}
.entryForm__radiobtnLabel:first-child {
    margin-top: 0;
}
.entryForm__checkboxLabel:first-child {
    margin-top: 0;
}

/* #endregion entryForm ======================================== */

}
