﻿/*#region 共通*/
/*フォント*/
@font-face {
    font-family: 'BIZUDPGothic';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(/fonts/BIZUDPGothic-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'BIZUDPGothic';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url(/fonts/BIZUDPGothic-Bold.ttf) format('truetype');
}

/*メイン*/
html {
    height: 100%;
}

body {
    height: 100%;
    font-family: "BIZUDPGothic";
    background-color: #F2F2F2;
    min-width: 1360px;
    min-height: 700px;
    font-size: 16px;
    color: #7F7F7F;
}

main {
    margin-top: 0;
    height: calc(100% - 45px);
    padding: 25px 0;
}

body:has(footer) main {
    padding: 25px 0;
    height: calc(100% - 115px);
}

.mainSpace {
    padding-bottom: 0;
    height: 100%;
}

.mainTitle {
    border-bottom: none;
    color: #ffff;
    font-size: 40px;
}

#indexForm {
    height: 100%;
}

p {
    margin: 0;
}

label {
    margin-bottom: 0;
}

label:focus {
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover:not(.header_online_shonin) {
    color: inherit;
    text-decoration: none;
    color: #468CCB !important;
}

/*ラベル*/
/*承認待ち*/
label.shoninmachi {
    background-color: #F5A100;
}

/*差戻し*/
label.sashimodoshi {
    background-color: #71BB48;
}

/*保留*/
label.horyu {
    background-color: #BFBFBF;
}

/*承認済*/
label.shoninzumi {
    background-color: #00A7E3;
}

/*テキストボックス*/
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="search"] {
    border-radius: 5px;
    outline: none;
    border: 0.5px #D9D9D9 solid;
    padding: 3px 5px;
    color: #7F7F7F;
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, input[type="tel"]::placeholder, input[type="search"]::placeholder {
    color: #D9D9D9;
}

input[type="text"]:focus-visible, input[type="email"]:focus-visible, input[type="password"]:focus-visible, input[type="tel"]:focus-visible, input[type="search"]:focus-visible {
    border-color: #bbbbbb;
}

/*ボタン*/
button, .button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: none;
    font-size: 16px;
    font-family: "BIZUDPGothic";
    white-space: nowrap;
}

.button img, button img, .button svg, button svg {
    width: 25px;
    margin-right: 7px;
}

button:not(#shiborikomiDialogKaijoButton, .toast-close-button):hover, .button:not(#shiborikomiDialogKaijoButton, .toast-close-button):hover,
button:not(#shiborikomiDialogKaijoButton, .toast-close-button):focus, .button:not(#shiborikomiDialogKaijoButton, .toast-close-button):focus,
button:not(#shiborikomiDialogKaijoButton, .toast-close-button):focus-within, .button:not(#shiborikomiDialogKaijoButton, .toast-close-button):focus-within {
    border-color: #E2ECF6 !important;
    background-color: #E2ECF6 !important;
    color: #468CCB !important;
}

button:hover svg, .button:hover svg,
button:focus svg, .button:focus svg,
button:focus-within svg, .button:focus-within svg {
    fill: #468CCB !important;
}

#shiborikomiDialogKaijoButton:hover,
#shiborikomiDialogKaijoButton:focus {
    color: #468CCB !important;
}

button:focus {
    outline: none;
}

/*タブ*/
.tabArea label:hover {
    border-color: #E2ECF6 !important;
    background-color: #E2ECF6 !important;
    color: #468CCB !important;
}

/*エラー文*/
.errorText {
    font-size: 13px;
    margin-top: 5px;
    color: #FF0000;
}

.input-validation-error, .input-validation-error + input, .nyuryokuBlock:has(.input-validation-error) .uploadPdfNmDisplay {
    border-color: #FF0000 !important;
}

/*スクロールバー*/
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: #ffffff;
    border-radius: 5px;
    border: 0.5px #EAEAEA solid;
}

::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

/*セレクトボックス*/
.selectBox {
    position: relative;
    display: inline-block;
    width: min-content;
}

.selectBox::before,
.selectBox::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.selectBox::before {
    top: -5px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #7F7F7F;
    border-right: 1px solid #7F7F7F;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    pointer-events: none;
}

.selectBox, .selectBox input {
    cursor: pointer;
}

.selectBox ul {
    width: max-content;
    min-width: 100%;
    background-color: #ffffff;
    margin: 0;
    border: 1px solid #D9D9D9;
    padding-left: 0;
    position: absolute;
    top: 32px;
    z-index: 5;
    max-height: 172px;
    overflow-y: auto;
    display: none;
}

.selectBox li {
    list-style: none;
    padding: 5px;
    cursor: pointer;
    text-align: initial;
}

.selectBox li:hover {
    background-color: #DFDFDF;
}

/* チェックボックス */
.checkBox {
    position: relative;
    padding-left: 33px;
    cursor: pointer;
    user-select: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 30px;
    color: inherit;
}

.checkBox input {
    display: none;
}

.checkMark {
    position: absolute;
    top: 1px;
    left: 0;
    width: 23px;
    height: 23px;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 5px;
    border: 0.5px solid #D9D9D9;
}

.checkMark:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0px;
    width: 10px;
    height: 17px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    opacity: 0;
}

.checkBox input:checked ~ .checkMark {
    background: #468CCB;
    border-color: #468CCB;
}

.checkBox input:checked ~ .checkMark:after {
    opacity: 1;
}

/*ラジオボタン*/
.radioButton {
    font-size: inherit;
}

.radioButton input {
    opacity: 0;
    position: absolute;
}

.radioButton input:focus-visible + label::before {
    border-color: #bbbbbb;
}

.radioButton label {
    padding-left: 35px;
    position: relative;
    margin-right: 20px;
    cursor: pointer;
}

.radioButton label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 0.5px solid #D9D9D9;
}

.radioButton input:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    width: 14px;
    height: 14px;
    background: #468CCB;
    border-radius: 50%;
    transform: translateY(-50%);
}

.radioButton input:checked + label::before {
    border-color: #468CCB;
}

/*アンダーラインを入れるaタグ*/
.underLinea {
    text-decoration: underline !important;
    color: #0070C0 !important;
}

.underLinea:hover {
    text-decoration: underline !important;
}

/*#endregion*/

/*#region flatpickr */
.datePicker {
    position: relative;
    display: flex;
    align-items: center;
    width: 290px;
}

.datePicker input {
    height: 32px;
    font-size: inherit;
    cursor: pointer;
    background-color: #ffffff !important;
}

.datePicker input:focus {
    color: inherit;
    background-color: inherit;
    border-color: #bbbbbb;
    outline: inherit;
    box-shadow: none;
}

/* 年月高さ */
.flatpickr-months .flatpickr-month {
    height: 40px;
}

/* 矢印 */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    height: 40px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
    fill: #468CCB;
}

/* 年 */
.flatpickr-current-month .numInputWrapper {
    pointer-events: none;
    width: 50px;
}

/* 年月逆 */
.flatpickr-current-month {
    display: flex;
    justify-content: center;
    font-size: 14px;
    align-items: center;
    padding: 5px;
    height: 40px;
}

.cur-year {
    order: 1
}

.cur-month:before {
    content: "年 "
}

.flatpickr-current-month span.cur-month {
    order: 2;
    pointer-events: none;
    margin: 0;
    font-weight: normal;
}

/* 当日○ */
.flatpickr-day.today {
    border-color: #468CCB;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
    border-color: #468CCB;
    background-color: #468CCB;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    border-color: #468CCB;
    background-color: #468CCB;
    color: #ffffff;
}

/*#endregion*/

/* #region ダイアログ共通 */
.dialog {
    display: none;
}

/* ×ボタン */
.dialogClose svg {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 20px;
    fill: #ffffff;
}

.dialogBackground {
    width: 100%;
    height: 100%;
    z-index: 2;
}

.dialogContent {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #ffffff;
    filter: drop-shadow(1px 1px 10px #00000047);
    /* 水平 垂直 ぼかし 色 */
    border-radius: 7px;
    padding: 30px;
    z-index: 20;
}

/* ヘッダー部分 */
.dialogHeader {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 7px 7px 0 0;
    width: 100%;
    height: 50px;
    color: #ffffff;
    font-weight: bold;
}

.dialogConfirmButton {
    margin: 10px auto;
    margin-bottom: 0;
}

.dialogButtons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 30px;
}

#commonIcon {
    height: 45px;
    margin-right: 15px;
}

.dialogIconStyle {
    width: 45px;
    margin-right: 15px;
}

/* 文章 */
.commonMessage {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.commonMessage>p {
    width: 90%;
    overflow-wrap: break-word;
}


/**********セッションダイアログ**********/
#sessionTimeoutDialog svg {
    fill: #f67e8f;
}

#sessionTimeoutDialog .dialogBackground {
    background: rgba(0,0,0,.4);
}

/*はいボタン*/
#sessionTimeoutDialog #sessionTimeoutDialogOkButton {
    width: 130px;
    height: 40px;
    background-color: #468CCB;
    color: #ffffff;
    border-color: #468CCB;
}

/**********インプットエラーダイアログ**********/
#inputErrorDialogContent {
    background: #f67e8f;
    color: #ffffff;
    padding: 20px 60px 20px 20px;
}

#inputErrorDialog svg {
    fill: #ffffff;
}

/**********承認エラーダイアログ**********/
#shoninErrorDialogContent {
    background: #f67e8f;
    color: #ffffff;
    padding: 20px 60px 20px 20px;
}

#shoninErrorDialog svg {
    fill: #ffffff;
}

/* #endregion */

/*#region Toastr*/
.toast-center-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#toast-container {
    padding: 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
}

#toast-container:hover {
    cursor: pointer;
}

#toast-container, .toast-success {
    background-color: #468CCB;
}

#toast-container > .toast-success {
    background-image: url(/images/toastr_icon.svg) !important;
}

#toast-container > div {
    padding: 15px 15px 20px 45px;
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    width: 300px;
    box-shadow: none;
    background-position: left 5px top calc(50% - 3px);
    background-repeat: no-repeat;
    color: #FFF;
    border: none;
    margin: 0;
    border-radius: unset;
    background-size: auto 30px;
    opacity: 1;
}

#toast-container > div:hover {
    -moz-box-shadow: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    opacity: unset;
    -ms-filter: unset;
    filter: unset;
    cursor: unset;
}

.toast-progress {
    z-index: 1;
    border-radius: 3px;
    background-color: #D9D9D9;
    opacity: 1;
    height: 5px;
}

.toast::before {
    content: "";
    position: absolute;
    left: 0;
    width: 300px;
    background-color: #ffffff;
    height: 5px;
    bottom: 0;
    border-radius: 3px;
}

.toast-close-button {
    opacity: 1;
    right: -.6em;
    top: -.6em;
}

.toast-close-button:focus, .toast-close-button:hover {
    border-color: unset;
    background-color: unset;
    color: unset;
    opacity: unset;
}
/*#endregion*/

/* #region ローディング */
.common_loading {
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20000;
}

.common_loader {
    margin-left: 50%;
    top: 50%;
    font-size: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    text-indent: 100px;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

@-webkit-keyframes load5 {
    0%, 100% {
        box-shadow: 0em -2.6em 0em 0em #FFFFFF, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #FFFFFF, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #FFFFFF, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #FFFFFF, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #FFFFFF, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #FFFFFF, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #FFFFFF, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #FFFFFF;
    }
}

@keyframes load5 {
    0%, 100% {
        box-shadow: 0em -2.6em 0em 0em #FFFFFF, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #FFFFFF, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #FFFFFF, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #FFFFFF, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #FFFFFF, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #FFFFFF, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #FFFFFF, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #FFFFFF;
    }
}
/* #endregion */

/*#region ヘッダー*/
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #468CCB;
    color: white;
    height: 45px;
    font-family: "BIZUDPGothic";
    font-weight: 700;
    padding: 0 15px;
    font-size: 17px;
}

header p {
    margin: 0;
    white-space: nowrap;
}

.header_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header_online_shonin {
    display: flex;
    align-items: center;
}

.header_online_shonin img {
    width: 60px;
    margin-right: 5px;
}

.header_online_shonin:hover {
    color: inherit;
    text-decoration: none;
}

.header_arrow {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    margin-left: 20px;
}

.header_arrow::before,
.header_arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.header_arrow::before {
    top: -5px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.header_user {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.header_user img {
    height: 32px;
    margin-right: 5px;
}

.header_user p {
    margin: 0;
}

#header_user_menu {
    position: absolute;
    top: 45px;
    right: 10px;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #000000;
    background-color: #ffffff;
    border-radius: 7px;
    border: 0.5px #D9D9D9 solid;
    padding-left: 0;
    padding: 15px 20px;
    font-weight: 400;
    color: #7F7F7F;
    text-align: center;
    display: none;
    font-size: 16px;
    z-index: 100;
}

#header_user_menu li {
    list-style: none;
    margin: 5px;
}

#header_user_menu .header_user_menu_border {
    border-bottom: 0.5px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/*#endregion*/

/*#region フッター*/
footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

footer>div {
    display: flex;
    flex-direction: row;
    width: 400px;
}

footer>div:has(#centerButton) {
    justify-content: center;
}

footer>div:has(#rightButton) {
    justify-content: right;
}

footer #backButton {
    background-color: #ffffff;
    border: 0.5px #D9D9D9 solid;
    color: #7F7F7F;
}

footer #centerButton {
    background-color: #468CCB;
    border: 0.5px #468CCB solid;
    color: #ffffff;
}

footer #rightButton:not(:last-child) {
    background-color: #ffffff;
    border: 0.5px #D9D9D9 solid;
    color: #7F7F7F;
    margin-right: 10px;
}

footer .button, footer button, footer .button, footer button {
    width: 180px;
    height: 50px;
}

footer .shortButton {
    width: 120px;
}

footer .button img, footer button img, footer .button svg, footer button svg {
    width: 25px;
    margin-right: 7px;
    fill: #7F7F7F;
}

footer #centerButton img, footer #centerButton svg {
    fill: #ffffff;
}

/*#endregion*/