@charset "UTF-8";

.modal.openModal {
    display: block !important;
    width: fit-content !important;
    height: fit-content !important;
}

.modal::-webkit-backdrop {
    display: none;
}

.login {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}

.login__container {
    width: 580px;
    padding-block: 40px;
    padding-inline: 120px;
    background-color: #fff;
}

.login__titleMain {
    width: 100%;
}

.login__titleSub {
    margin-top: 16px;
    text-align: center;
    font-weight: 700;
}

.login__content {
    display: grid;
    gap: 24px;
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.login__inputField {
    display: flex;
    flex-direction: column;
}

.login__inputLabel {
    font-size: 14px;
}

.login__inputWrap {
    position: relative;
    display: grid;
}

.login__input {
    border: none;
    padding: 1em;
}

.login__input[type="text"],
.login__input[type="email"],
.login__input[type="password"] {
    border-bottom: 1px solid #000;
}

.login__input[type="password"] {
    -webkit-padding-end: 2.5em;
    padding-inline-end: 2.5em;

    &::-ms-reveal {
        display: none;
    }
}

.login__inputButton {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: auto;
}

input[type="text"] + .login__inputButton span::before {
    background-image: url(/images/user/icon_visibility.svg);
}

.login__inputButtonIcon::before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url(/images/user/icon_visibility--hidden.svg);
    background-size: cover;
}

.login__errorMessage {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
    font-size: 12px;
    color: var(--c-errorMessage);
}

.login__action {
    margin-top: 40px;
}

.login__actionForget {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
    text-align: center;
}

.login__actionLink {
    text-decoration: none;
    font-size: 14px;
    color: var(--c-link);
}

@media (any-hover: hover) {
    .login__actionLink:hover {
        color: var(--c-hover);
    }
}

.globalHeader__container {
    line-height: 1.7 !important;

    ul {
        margin: 0;
    }
}

.globalHeader__title {
    margin: 0;
    color: gray;
}

.globalHeader__menuPrimary {
    -webkit-margin-start: 40px;
    margin-inline-start: 40px;
}

.globalHeader__menuSecondary .globalNav__list {
    gap: 16px;
}

@media screen and (max-width: 768px) {
    .globalNav__list {
        display: none !important;
    }

    .globalNav__username {
        display: none !important;
    }
}

.mainContainer {
    -webkit-padding-before: var(--headerHeight);
    padding-block-start: var(--headerHeight);
}

.mainMenu__title {
    font-weight: bold !important;
    margin-bottom: 0 !important;
}

.mainMenu__secondary {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
}

.dashboard__content {
    position: relative;
    overflow: auto;
    z-index: 0;
}

.dashboardList {
    -webkit-padding-after: 40px;
    padding-block-end: 40px;
}

.dashboardList__table {
    margin-inline: var(--gutter);
}

.dashboardList__bottom {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
    margin-inline: var(--gutter);
}

.dashboardEdit {
    position: relative;
}

.dashboardEdit__mode {
    position: absolute;
    left: 0;
    bottom: 30px;
    color: #fff;
    padding-inline: 0.5em;
    line-height: 30px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--c-primary);
    z-index: 900;
}

.createDashboard {
    display: grid;
    gap: 40px;
}

.createDashboard__block {
    width: min(800px, 100%);
    background-color: #fff;
    margin-inline: auto;
    border-radius: 10px;
    padding: 40px;
}

.createDashboard__block--transparent {
    background-color: transparent;
}

.createDashboard__action {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding-bottom: 80px;
}

.basicSetting__title {
    font-size: 20px;
    font-weight: 500;
}

.basicSetting__content {
    display: grid;
    gap: 24px;
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.basicSetting__item {
    width: 500px;
}

.basicSetting__label {
    display: inline-block;
    -webkit-margin-after: 8px;
    margin-block-end: 8px;
    font-weight: 500 !important;
}

.basicSetting__input {
    border: none;
    padding: 1em;
    font-size: small;
    line-height: normal;
}

.basicSetting__input[type="text"],
.basicSetting__input[type="email"],
.basicSetting__input[type="password"] {
    width: 100%;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
}

.basicSetting__input[type="password"] {
    border: 1px solid #a6a6a6;

    &::-ms-reveal {
        display: none;
    }
}

.basicSetting__inputWrap {
    position: relative;
}

.basicSetting__inputButton {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: auto;
}

input[type="text"] + .basicSetting__inputButton span::before {
    background-image: url(/images/user/icon_visibility.svg);
}

.basicSetting__inputButtonIcon::before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url(/images/user/icon_visibility--hidden.svg);
    background-size: cover;
}

.basicSetting__errorMessage {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
    font-size: 12px;
    color: var(--c-errorMessage);
    margin-bottom: 0em;
}

.basicSetting__errorMessage:empty {
    display: none;
}

.displaySetting__title {
    font-size: 20px;
    font-weight: 500;
}

.displaySetting__content {
    display: grid;
    gap: 24px;
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.displaySetting__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.displaySetting__label {
    display: inline-block;
    -webkit-margin-after: 8px;
    margin-block-end: 8px;
    font-size: 18px;
    font-weight: 500 !important;
}

.displaySetting__directionLabel {
    font-weight: 400 !important;
}

.displaySetting__inputWrap label {
    font-weight: 500 !important;
}

.displaySetting__customSize {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto 1fr;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-before: 18px;
    margin-block-start: 18px;
}

.displaySetting__customSizeItem {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
}

.displaySetting__customSizeLabel {
    font-size: 16px;
    font-weight: 500 !important;
}

.displaySetting__customSizeCross {
    position: relative;
    display: grid;
    grid-row: 2 / 3;
    width: 80px;
}

.displaySetting__customSizeCross::before,
.displaySetting__customSizeCross::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 0.5px);
    margin: auto;
    width: 32px;
    height: 1px;
    background-color: var(--c-text);
}

.displaySetting__customSizeCross::before {
    rotate: 45deg;
}

.displaySetting__customSizeCross::after {
    rotate: -45deg;
}

.displaySetting__customSizeInput {
    border: none;
    padding: 1em;
    font-size: small;
    line-height: normal;
}

.displaySetting__customSizeInput[type="text"] {
    width: 8em;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
}

.displaySetting__errorMessage {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
    font-size: 12px;
    color: var(--c-errorMessage);
}

.displaySetting__errorMessage:empty {
    display: none;
}

.displaySetting__direction {
    display: grid;
    grid-template-columns: auto auto;
    place-content: start;
    gap: 40px;
}

.displaySetting__directionItem {
    text-align: center;
}

.displaySetting__directionFigure {
    width: 100px;
}

.displaySetting__directionFigure svg {
    width: 100%;
    height: auto;
}

.displaySetting__directionFigure svg * {
    transition: fill 0.3s;
}

.displaySetting__directionItem:has(#portrait:checked) .displaySetting__directionFigure--portrait * {
    fill: #2980b9;
}

.displaySetting__directionItem:has(#landscape:checked) .displaySetting__directionFigure--landscape * {
    fill: #2980b9;
}

.viewSetting__title {
    font-size: 20px;
    font-weight: 500;
}

.viewSetting__content {
    display: grid;
    grid-template-columns: repeat(2, auto);
    place-content: start;
    gap: 40px;
}

.viewSetting__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.viewSetting__label {
    display: inline-block;
    -webkit-margin-after: 8px;
    margin-block-end: 8px;
    font-size: 18px;
    font-weight: 500 !important;
}

.viewSetting__figure {
    width: 100px;
}

.viewSetting__figure svg {
    width: 100%;
    height: auto;
}

.viewSetting__figure svg * {
    transition: fill 0.3s;
}

.viewSetting__item:has(#tile:checked) .viewSetting__figure--tile * {
    fill: #2980b9;
}

.viewSetting__item:has(#slide:checked) .viewSetting__figure--slide * {
    fill: #2980b9;
}

/* .createUser {
    display: grid;
    gap: 40px;
}

.createUser__block {
    width: min(800px, 100%);
    background-color: #fff;
    margin-inline: auto;
    border-radius: 10px;
    padding: 40px;
}

.createUser__block--transparent {
    background-color: transparent;
}

.createUser__action {
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
}

.userRecordForm__title {
    font-size: 20px;
    font-weight: 500 !important;
}

.userRecordForm__content {
    display: grid;
    gap: 24px;
}

.userRecordForm__label {
    display: inline-block;
    -webkit-margin-after: 8px;
    margin-block-end: 8px;
    font-weight: 400 !important;
}

.userRecordForm__radioWrap {
    display: flex;
    gap: 24px;
}

.userRecordForm__radioWrap label {
    font-weight: 400 !important;
}

.userRecordForm__input {
    border: none;
    padding: 1em;
    font-size: small !important;
    line-height: normal;
}

.userRecordForm__input[type="text"],
.userRecordForm__input[type="email"],
.userRecordForm__input[type="password"],
select.userRecordForm__input {
    width: 100%;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
}

.userRecordForm__input[type="password"] {
    border: 1px solid #a6a6a6;
}

.userRecordForm__inputWrap {
    position: relative;
}

.userRecordForm__inputButton {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: auto;
}

.userRecordForm__inputButtonIcon::before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url(/images/user/icon_visibility.svg);
    background-size: cover;
}

.userRecordForm__errorMessage {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
    font-size: 12px;
    color: var(--c-errorMessage);
    margin-bottom: 0em;
}

.userRecordForm__errorMessage:empty {
    display: none;
} */

#area_select_button {
    background-color: var(--c-blue);
    color: white;
}

.area_select_container {
    overflow-x: scroll;
}

.area_select_container > div {
    min-width: 25%;
}

.m-lostPassword__content {
    -webkit-margin-before: 64px;
    margin-block-start: 64px;
}

.m-lostPassword__errorMessage {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
}

.m-lostPassword__action {
    -webkit-margin-before: 64px;
    margin-block-start: 64px;
}

.m-addDashlet__content {
    -webkit-margin-before: 64px;
    margin-block-start: 64px;
}

.m-addDashlet__icon {
    -o-object-fit: cover;
    object-fit: cover;
}

.m-addUnit__label,
.m-addDashlet__label {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
}

.m-device__content {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.m-device__logon {
    -webkit-margin-before: 12px;
    margin-block-start: 12px;
}

.m-device__input[name="hour"],
.m-device__input[name="minute"] {
    background-color: var(--c-lightGray);
    border-bottom: 1px solid #000;
    width: 60px;
}

.m-device__input[name="displayInterval"] {
    background-color: var(--c-lightGray);
    border-bottom: 1px solid #000;
}

.m-device__input[type="password"] {
    -webkit-padding-end: 2.5em;
    padding-inline-end: 2.5em;

    &::-ms-reveal {
        display: none;
    }
}

.m-device__errorMessage {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
}

.m-device__action {
    -webkit-margin-before: 64px;
    margin-block-start: 64px;
}

.m-device__select {
    -webkit-margin-before: 12px;
    margin-block-start: 12px;
}

.m-device__selectTable th {
    position: -webkit-sticky;
}

.m-setting__content {
    -webkit-margin-before: 24px;
}

.m-setting__block {
    -webkit-padding-after: 40px;
}

.m-basicModal__header--white {
    color: canvastext;
    background: #fff;
}

.m-basicModal__content {
    -webkit-margin-before: 24px;
}

.m-basicModal__logon {
    -webkit-margin-before: 12px;
}

.m-basicModal__input[type="password"] {
    -webkit-padding-end: 2.5em;
}

.m-basicModal__errorMessage {
    -webkit-margin-before: 4px;
}

.m-basicModal__action {
    -webkit-margin-before: 64px;
}

.m-basicModal__select {
    width: 424px;
    border-top: hidden;
    border-left: hidden;
    border-right: hidden;
    border-bottom-color: lightgray;
}

@layer normalize, variable, foundation, utility, module;

/*# sourceMappingURL=style.css.map */

.sendSiteMapOrList {
    border-radius: 9999px;
    width: 132px;
    border: 2px solid #1a0dab;
    text-align: center;
    margin-left: 10px;
}

.sendSiteMapOrList .textArea {
    color: #1a0dab;
    cursor: pointer;

    &::before {
        content: "";
        background-color: #1a0dab;
        width: 2px;
        height: 10px;
        top: -5px;
        display: inline-grid;
        transform: rotate(-40deg);
        position: relative;
        right: -82px;
    }

    &::after {
        content: "";
        background-color: #1a0dab;
        width: 2px;
        height: 10px;
        top: 2px;
        right: -7px;
        display: inline-grid;
        transform: rotate(40deg);
        position: relative;
    }
}

.tab-1 {
    display: flex;
    width: 500px;
    overflow-x: scroll;
}

.tab-1 > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: 0.7em 1em 0.5em;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    background-color: #e9f0f6;
    color: #535353;
    font-size: 0.9em;
    text-align: center;
    cursor: pointer;
}

.tab-1 > label:hover {
    opacity: 0.8;
}

.tab-1 input {
    display: none;
}

.tab-1 label:has(:checked) {
    background-color: #fff;
    border-color: #2589d0 #f0f0f0 #fff;
    border-style: solid;
    border-width: 4px 1px 1px;
    border-radius: 5px;
    color: #333333;
}

.mapArea {
    width: 100vw;
}

#map svg {
    width: auto !important;
}

.m-device__action #deciberyGateways {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

/* siteで使用するcssここまで */

.flex {
    display: flex;
}

.alignCenter {
    justify-content: center;
}

.border-bottom-2 {
    border-bottom: 2px solid #dee2e6 !important;
}

.basicSetting__select {
    width: 100%;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    padding: 1em;
    font-size: small;
    line-height: normal;
}
