@charset "UTF-8";
@font-face {
	font-family: "Noto Sans JP";
	src: url("../fonts/NotoSansJP/NotoSansJP-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	src: url("../fonts/NotoSansJP/NotoSansJP-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	src: url("../fonts/NotoSansJP/NotoSansJP-Black.woff2") format("woff2");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

*:not(html) {
    font-family: 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
    font-size: 16px;
    color: #21222b;
    box-sizing: border-box;
}

/* container */
.container {
    padding: 50px 1.5rem 5rem 1.5rem;
    margin: 0 auto;
}

/* header */
header {
    background-color: #f7f7f7;
    border-bottom: solid 1px #DADADD;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    z-index: 100;
}

header .menu_bar {
    display: flex;
    align-items: center;
}

header .menu_bar .icon {
    width: 100%;
    max-width: 100px;
    margin-right: 1.5rem;
}

header .menu_bar .icon img {
    display: block;
    width: 100%;
    height: auto;
}

header .menu_bar ul {
    display: flex;
    align-items: center;
}

header .menu_bar ul li a {
    font-size: 0.875rem;
    padding: 0.5rem;
    transition: 0.3s;
    border-radius: 5px;
}

header .menu_bar ul li a:hover {
    background-color: #e5e5e5;
}

header .account {
    position: relative;
}

header .account .account_name {
    font-size: 0.875rem;
    padding: 0.5rem;
    transition: 0.3s;
    border-radius: 5px;
}

header .account .account_name:hover {
    background-color: #e5e5e5;
}

header .account .account_modal {
    display: none;
    border-radius: 5px;
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background-color: #ffffff;
    padding: 1rem;
    box-shadow: 0 3px 20px rgba(26, 26, 64, .1);;
}

header .account .account_modal button {
    white-space: nowrap;
    height: auto;
    padding: 0;
    font-size: 0.875rem;
}

header .account .account_modal button:hover {
    opacity: 0.6;
}



/* h1 */
h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

/* button */
button {
    line-height: 1;
    padding: 0 1rem;
    height: 38px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

button span {
    line-height: 16px;
    padding-bottom: 1px;
}

.btn_gray {
    background-color: #DADADD;
    border: solid 2px #DADADD;
}

.btn_gray:hover {
    background-color: #f7f7f7;
}

.btn_blue {
    background-color: #23CEEE;
    border: solid 2px #23CEEE;
}

.btn_blue span {
    color: #ffffff;
}

.btn_blue:hover {
    background-color: #ffffff;
}

.btn_blue:hover span {
    color: #23CEEE;
}

.btn_red {
    background-color: #DE1D58;
    border: solid 2px #DE1D58;
}

.btn_red span {
    color: #ffffff;
}

.btn_red:hover {
    background-color: #ffffff;
}

.btn_red:hover span {
    color: #DE1D58;
}

/* select */
.select_box {
    position: relative;
}

.select_box::after {
    content: '';
    display: inline-block;
    border-top: solid 7px #AFB2B7;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
}

.select_box select {
    border: solid 1px #AFB2B7;
    border-radius: 5px;
    padding: 0.25rem 2rem 0.25rem 0.5rem;
}

/* モーダル */
.modal {
    z-index: 0;
    display: none;
}

.modal .modal_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 101;
    cursor: pointer;
}

.modal .modal_main {
    background-color: #ffffff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    z-index: 102;
    padding: 2rem;
    width: 95%;
    max-width: 800px;
    max-height: 90%;
    overflow-y: auto;
}

.modal .modal_main .modal_close {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: 0.3s;
    z-index: 3;
    cursor: pointer;
}

.modal .modal_main .modal_close:hover {
    background-color: #f7f7f7;
}

.modal .modal_main .modal_close::before,
.modal .modal_main .modal_close::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #21222b;
    position: absolute;
    z-index: 4;
}

.modal .modal_main .modal_close::before {
    top: 23px;
    left: 10px;
    transform: rotate(45deg);
}

.modal .modal_main .modal_close::after {
    top: 23px;
    left: 10px;
    transform: rotate(135deg);
}

.modal .modal_main .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
}

.modal .modal_main .buttons button:not(:last-of-type) {
    margin-right: 0.5rem;
}

.modal .modal_main .buttons form {
    display: flex;
    flex-direction: row;
}

.modal .modal_main .buttons button.btn_delete {
    margin-right: auto;
}

.delete_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 103;
    display: none;
}

.delete_modal .delete_modal-background {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
}

.delete_modal .delete_modal-main {
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding-bottom: 2.5rem;
    width: 100%;
    max-width: 500px;
}

.delete_modal .delete_modal-main .modal_title {
    background-color: #23CEEE;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}

.delete_modal .delete_modal-main .modal_title .label {
    color: #ffffff;
}

.delete_modal .delete_modal-main .modal_title .close {
    position: relative;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.delete_modal .delete_modal-main .modal_title .close::before,
.delete_modal .delete_modal-main .modal_title .close::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    top: 10px;
}

.delete_modal .delete_modal-main .modal_title .close::before {
    right: 0;
    transform: rotate(45deg);
}

.delete_modal .delete_modal-main .modal_title .close::after {
    right: 0;
    transform: rotate(135deg);
}

.delete_modal .delete_modal-main .modal_content {
    padding: 0 1rem;
    margin-top: 2.5rem;
    text-align: center;
}

.delete_modal .delete_modal-main .modal_content p {
    font-weight: 700;
}

.delete_modal .delete_modal-main .modal_content p:not(:last-of-type) {
    margin-bottom: 0.25rem;
}

.delete_modal .delete_modal-main .buttons {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
}

.delete_modal .delete_modal-main .buttons form {
    margin-left: 0.5rem;
}


/* アラート */
.alert {
    position: fixed;
    top: calc(50px + 1.25rem);
    right: -100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
    z-index: 110;
}

.alert.show {
    right: 1.5rem;
}

.alert.success {
    background-color: #23CEEE;
}

.alert.error {
    background-color: #DE1D58;
}

.alert img {
    filter: brightness(0) invert(1);
    margin-right: 0.25rem;
    width: 28px;
}

.alert p {
    color: #ffffff;
}

.alert .close {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
}

.alert .close::before,
.alert .close::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    top: 30px;
    right: 1rem;
}

.alert .close::before {
    transform: rotate(45deg);
}

.alert .close::after {
    transform: rotate(135deg);
}


/* ページネーション */
.pagination_container {
    display: flex;
    align-items: center;
}

.pagination_detail {
    font-size: 0.875rem;
    margin-right: 1rem;
}

.pagination {
    display: flex;
    align-items: center;
}

.pagination li.disabled {
    display: none;
}

.pagination li.disabled.dots {
    display: block;
}

.pagination li.disabled.dots span {
    border: none;
}

.pagination li a,
.pagination li span {
    font-size: 0.875rem;
    border: solid 1px #AFB2B7;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.25rem 1px 0.25rem;
    transition: 0.3s;
}

.pagination li a[rel="prev"],
.pagination li a[rel="next"] {
    border-radius: 20px;
    width: auto;
    height: auto;
    padding: 0.2rem 0.5rem 0.25rem 0.5rem;
}

.pagination li.active span,
.pagination li a:hover {
    background-color: #23CEEE;
    border-color: #23CEEE;
    color: #ffffff;
}

.pagination li:not(:last-of-type) {
    margin-right: 0.5rem;
}

/* daterangepicker */
.daterangepicker button {
    display: inline-block;
    height: 30px;
    min-width: 100px;
}

.daterangepicker .cancelBtn {
    background-color: #DADADD;
}

.daterangepicker .applyBtn {
    background-color: #23CEEE;
    color: #ffffff;
}


/* エラーページ */
.container.error {
    background-color: #f7f7f7;
    height: 100vh;
}

.container.error .error_content {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 3px 20px rgba(26, 26, 64, 0.1);
    width: 90%;
    max-width: 1000px;
    padding: 5rem 2.5rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container.error .error_content p {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}


.container.error .error_content h1 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin: 1.5rem 0 0 0;
}