@charset "utf-8";

/* layout */
.a4-wrapper {
    position: relative;
    margin: 0px auto;
    padding: 8mm 10mm;
    width: 210mm;
    min-height: 297mm;
    box-sizing: border-box;
    border: var(--border-m) solid var(--gray-light);
    background-color: var(--white-default);
}
.export-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: var(--zindex-loading);
}
.export-wrapper .background {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--black-dark);
}
.export-wrapper .export-button {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-s) var(--space-xl);
    font-family: var(--font-heavy);
    font-size: var(--font-l);
    line-height: var(--line-l);
    color: var(--white-default);
    border-radius: var(--radius-l);
    background-color: var(--point-default);
    z-index: calc(1 + var(--zindex-loading));
}

/* loading */
.loading-wrapper {
    display: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: var(--zindex-loading);
}
.loading-wrapper .background {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--white-dark);
}
.loading-wrapper .loading-icon {
    width: calc(1.2 * var(--size-xl));
    height: calc(1.2 * var(--size-xl));
    z-index: calc(1 + var(--zindex-loading));
}

/* login */
.login-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    padding-top: var(--space-5xl);
    width: var(--center-s);
}
.login-wrapper .logo {
    margin-top: calc(-1 * var(--space-m));
    height: var(--size-m);
}
.login-wrapper .logo > img {
    width: auto;
    height: 100%;
}
.login-wrapper .tab-box {
    display: flex;
    flex-flow: row nowrap;
    margin-top: var(--space-4xl);
    width: 100%;
    border-top-left-radius: var(--radius-l);
    border-top-right-radius: var(--radius-l);
    background-color: var(--gray-xlight);
}
.login-wrapper .tab-box > a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--space-l) 0px;
    width: 33.333%;
    border-top: var(--border-m) solid var(--gray-light);
}
.login-wrapper .tab-box > a:first-child {
    border-top-left-radius: var(--radius-l);
    border-left: var(--border-m) solid var(--gray-light);
}
.login-wrapper .tab-box > a:last-child {
    border-top-right-radius: var(--radius-l);
    border-right: var(--border-m) solid var(--gray-light);
}
.login-wrapper .tab-box > a.active {
    border-top-left-radius: var(--radius-l);
    border-top-right-radius: var(--radius-l);
    border-left: var(--border-m) solid var(--gray-light);
    border-right: var(--border-m) solid var(--gray-light);
    background-color: var(--white-default);
}
.login-wrapper .tab-box > a
.login-wrapper .tab-box > a .text {
    color: var(--gray-dark);
}
.login-wrapper .tab-box > a .underline {
    display: none;
    position: absolute;
    bottom: calc(-1 * var(--space-4xs));
    left: 0px;
    width: 100%;
    height: var(--border-l);
    font-size: 0px;
    background-color: var(--white-default);
    z-index: 1;
}
.login-wrapper .tab-box > a.active .underline {
    display: block;
}
.login-wrapper .login-box {
    padding: var(--space-2xl);
    width: 100%;
    border-bottom-left-radius: var(--radius-l);
    border-bottom-right-radius: var(--radius-l);
    border: var(--border-m) solid var(--gray-light);
    background-color: var(--white-default);
}
.login-wrapper .id-password-box {
    display: flex;
    flex-flow: column;
}
.login-wrapper .id-password-box > li:not(:first-child) {
    margin-top: var(--space-s);
}
.login-wrapper .id-password-box input {
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    padding-left: var(--space-l);
    padding-right: var(--space-l);
    width: 100%;
    height: var(--size-xl);
    font-size: var(--font-l);
    border-radius: var(--radius-l);
    border: var(--border-m) solid var(--gray-default);
}
.login-wrapper .option-area {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-xs);
}
.login-wrapper .find-user {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.login-wrapper .link-area {
    margin-top: var(--space-2xl);
}
.login-wrapper .link-area > a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    font-family: var(--font-bold);
    text-decoration: underline;
    text-underline-offset: var(--space-2xs);
    color: var(--point-default);
}
.login-wrapper .login-button {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding-left: var(--space-m);
    padding-right: var(--space-m);
    width: 100%;
    height: var(--size-xl);
    font-family: var(--font-heavy);
    font-size: var(--font-xl);
    color: var(--white-default);
    border-radius: var(--radius-l);
    border: var(--border-m) solid var(--point-default);
    background-color: var(--point-default);
}
.login-wrapper .login-button .text {
    position: relative;
    top: 0.04em;
}
.login-wrapper .footer-area {
    margin-top: var(--space-3xl);
}
.login-wrapper .footer-area {
    display: flex;
    flex-flow: column;
    align-items: center;
}
.login-wrapper .footer-area .menu-list {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    font-size: var(--font-xs);
    color: var(--gray-xdark);
}
.login-wrapper .footer-area .menu-list .bold {
    font-family: var(--font-bold);
}
.login-wrapper .footer-area .menu-list .separate {
    margin-left: var(--space-xs);
    margin-right: var(--space-xs);
    width: var(--border-m);
    height: var(--size-10px);
    font-size: 0px;
    background-color: var(--gray-default);
}
.login-wrapper .footer-area .copyright {
    margin-top: var(--space-2xs);
    font-size: var(--font-xs);
    color: var(--gray-dark);
}