*,
*::before,
*::after {
    box-sizing: border-box;
}

*[hidden] {
    display: none !important;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #cad3df;
    color: #202020;
    font-family: "Hiragino Kaku Gothic ProN", "�q���M�m�p�S ProN W3", Meiryo, "���C���I", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

input,
selectt {
    -webkit-appearance: none;
    appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
    cursor: default;
}

button.c-btn-r,
a.c-btn-r {
    border-radius: 50%;
    cursor: pointer;
    font-weight: normal;
    outline: none !important;
    user-select: none;
    white-space: nowrap;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    height: 2.25rem;
    width: 2.25rem;
}

button.c-btn-r_s,
a.c-btn-r_s {
    font-size: .9rem;
    height: 1.8rem;
    width: 1.8rem;
}

button.c-btn-r_l,
a.c-btn-r_l {
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
}

button.c-btn-r_action,
a.c-btn-r_action {
    background-color: #234c69 !important;
    border: 2px solid #234c69 !important;
    color: #fff !important;
}

button.c-btn-r_action:disabled,
a.c-btn-r_action:disabled {
    opacity: .5;
    cursor: no-drop;
}

button.c-btn-r_action:hover,
a.c-btn-r_action:hover {
    opacity: .8;
    text-decoration: none;
}

button.c-btn-r_unaction,
a.c-btn-r_unaction {
    background-color: #fff !important;
    border: 2px solid #234c69 !important;
    color: #202020 !important;
}

button.c-btn-r_unaction:disabled,
a.c-btn-r_unaction:disabled {
    opacity: .5;
    cursor: no-drop;
}

button.c-btn-r_unaction:hover,
a.c-btn-r_unaction:hover {
    opacity: .8;
    text-decoration: none;
}

button.c-btn,
a.c-btn {
    border-radius: 5px;
    cursor: pointer;
    font-weight: 400;
    outline: none !important;
    text-align: center;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    font-size: .9rem;
    padding: min(7px, .5rem) min(14px, 1rem);
}

button.c-btn_s,
a.c-btn_s {
    font-size: .9rem;
    padding: min(3.5px, .25rem) min(7px, .5rem);
}

button.c-btn_l,
a.c-btn_l {
    font-size: 1.125rem;
    padding: 10px 20px;
}

button.c-btn_long,
a.c-btn_long {
    width: 100%;
    max-width: 300px;
}

button.c-btn_action,
a.c-btn_action {
    background-color: #234c69;
    border: 2px solid #234c69;
    color: #fff !important;
}

button.c-btn_action:disabled,
a.c-btn_action:disabled {
    opacity: .5;
    cursor: no-drop;
}

button.c-btn_action:active,
a.c-btn_action:active,
button.c-btn_action:focus,
a.c-btn_action:focus,
button.c-btn_action:hover,
a.c-btn_action:hover {
    opacity: .8;
    text-decoration: none;
}

button.c-btn_unaction,
a.c-btn_unaction {
    background-color: #fff;
    border: 2px solid #234c69;
    color: #202020 !important;
}

button.c-btn_unaction:disabled,
a.c-btn_unaction:disabled {
    opacity: .5;
    cursor: no-drop;
}

button.c-btn_unaction:active,
a.c-btn_unaction:active,
button.c-btn_unaction:focus,
a.c-btn_unaction:focus,
button.c-btn_unaction:hover,
a.c-btn_unaction:hover {
    opacity: .8;
    text-decoration: none;
}

.c-chk {
    position: relative;
}

.c-chk input {
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 1px;
    z-index: -1;
}

.c-chk input:checked+span:before {
    border: 2px solid #202020;
}

.c-chk input:checked+span:after {
    opacity: 1;
}

.c-chk input:focus+span:before {
    box-shadow: 0 0 3px #000;
}

.c-chk input.input-validation-error+span:before {
    color: #fb3f31;
}

.c-chk span {
    display: flex;
    align-items: center;
    font-size: 1rem;
    position: relative;
    user-select: none;
}

.c-chk span:before {
    background-color: #fff;
    border: 2px solid #8c8c8c;
    border-radius: .2em;
    content: "";
    display: block;
    height: 1em;
    margin-right: 5px;
    width: 1em;
}

.c-chk span:after {
    border-bottom: 2px solid #202020;
    border-right: 2px solid #202020;
    content: "";
    height: .8em;
    left: .33em;
    opacity: 0;
    position: absolute;
    top: .25em;
    transform: rotate(45deg);
    transition: all .1s 0s ease;
    width: .4em;
}

.c-opt {
    overflow: hidden;
    position: relative;
}

.c-opt input {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    left: -1px;
    z-index: -1;
}

.c-opt input:checked+span:before {
    border: 2px solid #202020;
}

.c-opt input:checked+span:after {
    opacity: 1;
}

.c-opt input:focus+span:before {
    box-shadow: 0 0 4px #000;
}

.c-opt input.input-validation-error+span:before {
    color: #fb3f31;
}

.c-opt span {
    display: flex;
    align-items: center;
    font-size: 1rem;
    position: relative;
    user-select: none;
}

.c-opt span:before {
    background-color: #fff;
    border: 2px solid #8c8c8c;
    border-radius: 50%;
    content: "";
    height: 16px;
    margin-right: 5px;
    width: 16px;
}

.c-opt span:after {
    background-color: #202020;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 8px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: all .1s 0s ease;
    width: 8px;
    transform: translate(-50%, -50%);
}

.c-txt {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.c-txt:active,
.c-txt:focus {
    outline: 1px solid #00188b;
}

.p-btn-group {
    display: flex;
}

@media(max-width:450px) {
    .p-btn-group {
        flex-flow: column;
        align-items: center;
    }
}

.p-btn-group_center {
    justify-content: center;
}

.p-btn-group_right {
    justify-content: end;
}

.p-btn-group__item_long {
    width: 100%;
    max-width: 300px;
}

.p-btn-group__item,
.p-btn-group>.c-btn {
    margin-right: 15px;
}

@media(max-width:450px) {
    .p-btn-group__item,
    .p-btn-group>.c-btn {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.p-btn-group__item:last-child,
.p-btn-group>.c-btn:last-child {
    margin-right: 0;
}

@media(max-width:450px) {
    .p-btn-group__item:last-child,
    .p-btn-group>.c-btn:last-child {
        margin-bottom: 0;
    }
}

@media(max-width:450px) {
    .p-btn-group__item .c-btn {
        width: 100%;
    }
}

@media(max-width:450px) {
    .p-btn-group_reverse {
        flex-direction: column-reverse;
    }
}

@media(max-width:450px) {
    .p-btn-group_reverse .p-btn-group__item,
    .p-btn-group_reverse>.c-btn {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media(max-width:450px) {
    .p-btn-group_reverse .p-btn-group__item:first-child,
    .p-btn-group_reverse>.c-btn:first-child {
        margin-bottom: 0;
    }
}

.p-confirm-container {
    display: flex;
    align-items: center;
    flex-flow: column;
}

.p-confirm-container__chk-area {
    display: flex;
    align-items: center;
    flex-flow: column;
    height: 3rem;
    margin-bottom: 15px;
}

.p-confirm-container__btn-group {
    display: flex;
    width: 100%;
}

.p-confirm-container__btn-group_center {
    justify-content: center;
}

.p-input-contents {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}

@media(max-width:900px) {
    .p-input-contents {
        flex-flow: column;
    }
}

.p-input-contents__title {
    font-weight: bold;
    min-width: 10em;
}

.p-input-contents__title_l {
    min-width: 15em;
}

@media(max-width:900px) {
    .p-input-contents__title {
        width: 100%;
    }
}

.p-input-contents:last-child {
    margin-bottom: 0;
}

.p-input-contents__control {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media(max-width:900px) {
    .p-input-contents__control:not(.westerncalendar-group) {
        flex-flow: column;
    }
}

.p-input-contents__control__item {
    margin-right: 15px;
}

.p-input-contents__control__item:last-child {
    margin-right: 0;
}

.p-input-contents__control__item_name {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 7.5px);
}

.p-input-contents__control__item_name__title {
    width: 3em;
    margin-right: 5px;
    font-weight: 400;
}

.p-input-contents__control__item_name:last-child {
    margin-right: 0;
}

.p-input-contents__control__item_name .c-txt {
    width: calc(100% - 3em - 5px);
}

@media(max-width:900px) {
    .p-input-contents__control__item {
        margin-right: 0;
        margin-top: 15px;
        width: 100%;
    }
}

.p-input-contents__control aside {
    color: #8c8c8c;
    font-size: 1rem;
    width: 100%;
}

.input-validation-error+.p-input-contents__control .c-txt {
    border-color: #fb3f31;
}

.field-validation-error {
    color: #fb3f31;
}

.input-validation-error {
    border-color: #fb3f31;
}

.u-color_red {
    color: #fb3f31;
}

.u-mb_15 {
    margin-bottom: 15px;
}

.u-mb_30 {
    margin-bottom: 30px;
}

.u-ml_15 {
    margin-left: 15px;
}

.u-mt_30 {
    margin-top: 30px;
}