* {
    box-sizing: border-box;
    line-break: strict;
    overflow-wrap: break-word;
    word-wrap: break-word;
    /*word-break: break-all;*/
}

html,
body {
    margin: 0;
    padding: 0;
    /* height: 100%; */
    width: 100%;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

a,
button,
input,
select,
textarea {
    cursor: pointer;
    outline: none;
}

a {
    color: #f06292;
    text-decoration: none;
}

button,
input,
select,
textarea {
    border: 0;
    border-radius: 4px;
    vertical-align: bottom;
}

button,
input,
select {
    height: 32px;
}

button,
input[type="submit"] {
/*    background-color: #f06292;*/
border-color: rgba(0, 0, 0, 0.2);
border-style: solid;
border-width: 0 0 1px;
/*    color: #fff;*/
overflow: hidden;
padding: 0 12px;
}

a:hover,
button:hover,
input[type="submit"]:hover {
    animation: fadeOutMedium 0.3s linear forwards;
    -moz-animation: fadeOutMedium 0.3s linear forwards;
    -ms-animation: fadeOutMedium 0.3s linear forwards;
    -o-animation: fadeOutMedium 0.3s linear forwards;
    -webkit-animation: fadeOutMedium 0.3s linear forwards;
}

button:active,
input[type="submit"]:active {
    border-bottom-width: 0;
    height: 31px;
    margin-top: 1px;
}

input:not([type="submit"]),
select,
textarea {
    background-color: #eee;
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 1px;
}

input:not([type="submit"]):focus,
select:focus,
textarea:focus {
    background-color: #fffde7;
    border-color: #212121;
    transition: background-color 0.3s linear, border-color 0.3s linear;
    -moz-transition: background-color 0.3s linear, border-color 0.3s linear;
    -ms-transition: background-color 0.3s linear, border-color 0.3s linear;
    -o-transition: background-color 0.3s linear, border-color 0.3s linear;
    -webkit-transition: background-color 0.3s linear, border-color 0.3s linear;
}

input:not([type="submit"]),
textarea {
    padding: 8px;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0 4px 0 0;
    vertical-align: middle;
}

input[type="file"] {
    display: none;
}

input[type="file"],
input:placeholder-shown {
    color: #9e9e9e;
}

input::-moz-placeholder {
    opacity: 1;
    color: #9e9e9e;
}

input:-ms-input-placeholder {
    color: #9e9e9e;
}

input::-webkit-input-placeholder {
    color: #9e9e9e;
}

textarea {
    height: 180px;
}

ul,
li {
    margin: 0;
    padding: 0;
}

li {
    margin-left: 1em;
}

label {
    cursor: pointer;
    margin-right: 16px;
    text-align: right;
}

label:last-child {
    margin-right: 0;
}

table,
tbody,
tr,
th,
td {
    border: 0;
    border-spacing: 0;
    margin: 0;
    padding: 0;
}

@keyframes fadeOutMedium {
    0% {
        backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        opacity: 1;
    }
    100% {
        backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        opacity: 0.8;
    }
}

@-webkit-keyframes fadeOutMedium {
    0% {
        backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        opacity: 1;
    }
    100% {
        backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        opacity: 0.8;
    }
}

.header {
    background-color: #212121;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    height: 48px;
    justify-content: space-between;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
}

.header * {
    font-size:min(1vw, 1rem);
}

.header-left,
.header-center,
.header-right {
    align-items: center;
    display: flex;
    width: 100%;
}

.header-left {

}

.header-center {
    flex-shrink: 2;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    margin-right: 8px;
}

.header-logo {
    padding: 0 8px;
}

.header-logo-image {
    height: 32px;
}

.header-title {
    font-size:min(1.6vw, 2rem);
    font-weight: bold;
}

.header button {
    background-color: rgba(255, 255, 255, 0.4);
}

#loginFormHeader .header-center {
    justify-content: center;
}

.loginName {
    margin-right: 12px;
}

.mainMenu {
    background-color: #fff;
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 0 0 1px;
    height: 48px;
    left: 0;
    overflow-x: auto;
    position: fixed;
    top: 48px;
    width: 100%;
    z-index: 3;
}

.mainMenu-itemGroup {
    display: flex;
    height: 100%;
    justify-content: space-around;
}

.mainMenu-item {
    align-items: center;
    border-color: #fff;
    border-style: solid;
    border-width: 3px 0;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 0 8px;
    text-align: center;
    width: 100%;
}

.mainMenu-item:hover {
    cursor: pointer;
    font-weight: bold;
}

.mainMenu-item-current {
    border-bottom-color: #8bc34a;
    font-weight: bold;
}

.sideMenu {
    background-color: #fff;
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 0 1px 0 0;
    bottom: 0;
    overflow-y: auto;
    padding-top: 48px;
    position: fixed;
    top: 0;
    width: 200px;
    z-index: 3;
}

.sideMenu-itemGroup {

}

.sideMenu-item {
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 0 0 1px;
    list-style: none;
    margin: 0;
    padding: 16px 16px 16px 28px;
}

.sideMenu-item-sub {
    border-color: #e0e0e0;
    border-style: dashed;
    border-width: 0 0 0;
    padding: 16px 16px 16px 44px;
}

.mainMenu-item-current,
.sideMenu-item-current {
    background: url(../img/baseline_play_arrow_black_18dp.png) 4px center no-repeat;
    background-size: 20px;
    font-weight: bold;
}

.mainMenu-item-current:not(.sideMenu-item),
.sideMenu-item-current:not(.sideMenu-item) {
    background: url(../img/baseline_play_arrow_black_18dp.png) 20px center no-repeat;
    background-size: 20px;
    font-weight: bold;
}

.sideMenu-item:hover,
.sideMenu-item-sub:hover {
    background-color: #f0f4c3;
    cursor: pointer;
}

.sideMenu .mainMenu-item-current {
    background-color: #f0f4c3;
}

.view {
    display: none;
    position: relative;
    width: 1000px;
    margin: 141px auto 0;
    padding: 40px 0;
}

/*
.view * {
    font-size:min(1vw, 1rem);
}
*/

/*
.view-header {
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    margin-left: -200px;
    padding: 40px 40px 40px 240px;
    position: fixed;
    width: 100%;
    z-index: 2;
    flex-wrap: wrap;
}
*/

.filterMenu {
    align-items: center;
    display: flex;
    gap: 0 8px;
    margin-left: 4px;
}

[name="filterMenu-keyword"] {
    width: 11em;
}

[data-click-action="filterMenuReset"] {
    background-color: #9e9e9e;
}

.view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.view-header > div:not(:nth-child(2)) {
    min-width: 172px;
}

.view-title {
    font-size: 16px;
    font-weight: bold;
}

.view-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.view-menu > div {
    margin-left: 12px;
}

.view-contents {
    margin: 40px 0;
    font-size: 14px;
}

.view-footer {
    background-color: #fff;
    justify-content: space-between;
    margin-left: -200px;
    padding: 40px 40px 40px 240px;
    text-align: center;
}

#mainView {
    display: block;
}

.popupView {
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 4;
}

.popupView-wrapper {
    align-items: center;
    bottom: 0;
    display: flex;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    justify-content: center;
    padding: 32px;
    position: fixed;
}

.popupView-main {
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    min-width: 736px;
    max-width: 736px;
}

.popupView-main-close {
    align-items: center;
    display: flex;
    height: 48px;
    justify-content: flex-end;
    padding-right: 8px;
    position: fixed;
    width: 736px;
    z-index: 3;
}

.popupView-main-close button {
    border-radius: 50%;
    font-size: 16px;
    width: 32px;
}

.popupView-main-tilte {
    align-items: center;
    background-color: #3F51B5;
    border-radius: 8px 8px 0 0;
    color: #fff;
    display: flex;
    font-weight: bold;
    height: 48px;
    justify-content: center;
    padding: 0 8px;
    position: fixed;
    width: 736px;
    z-index: 2;
}

.popupView-main-content {
    padding-top: 48px;
}

.floatView {
    background-color: #fff;
    bottom: 0;
    display: none;
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    z-index: 4;
}

#dropArea {
    align-items: center;
    background-color: rgba(0,0,0 ,0.8);
    color: #fff;
    display: flex;
    font-size: 40px;
    height: 100%;
    justify-content: center;
    line-height: 100%;
    position: fixed;
    text-align: center;
    top: 0;
    transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    -ms-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
    -webkit-transition: background-color 0.2s linear;
    width: 100%;
    z-index: 100;
}

.inputGroup {
    padding: 8px 16px;
    overflow: hidden;
}

.inputGroupFooter {
    display: flex;
    justify-content: space-around;
    padding: 32px;
}

.inputGroupFooter button {
}

.inputGroup-left,
.inputGroup-right {
    align-items: center;
    display: flex;
    float: left;
    min-height: 32px;
}

.inputGroup-left {
    background-color: #2196f3;
    border-radius: 4px;
    color: #fff;
    justify-content: center;
    width: 180px;
}

.inputGroup-left-nomark {
    background-color: #fff;
}

.inputGroup-right {
    margin-left: -180px;
    padding-left: 188px;
    width: 100%;
}

.inputGroup-right input[type="text"] {
    width: 100%;
}

.inputGroup-right textarea {
    height: 84px;
    width: 100%;
}

.inputGroup-right input[type="number"] {
    width: 80px;
}

.inputGroup-right-noflex {
    width: 100%;
}

.inputGroup-right-flex-start {
    align-items: flex-start;
}

.inputListNewData-inputArea {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.inputListNewData-inputArea {
    margin: 8px 0;
}

.inputListNewData-inputArea input {
    width: 100%;
}

.inputListNewData-inputArea button {
    margin-left: 8px;
    width: 80px;
}

.input-oneline {
    margin: 0 0 8px !important;
}

#loginFormView {
    display: block;
    padding-left: 0;
}

#loginFormView .view-contents {
    align-items: flex-start;
    display: flex;
    justify-content: center;
}

#loginForm {
    border: #e0e0e0 solid 1px;
    border-radius: 8px;
    text-align: center;
    width: 376px;
}

.loginForm-header,
.loginForm-contents {
    margin: 40px;
}

.loginForm-header {
    font-weight: bold;
}

.loginForm-contents {

}

.loginForm-contents-itemGroup {
    margin-bottom: 16px;
}

.loginForm-contents-errorMessage {
    color: #f44336;
    font-weight: bold;
    margin-top: 40px;
}

.loginForm-contents-footer {
    margin-top: 40px;
}

.loginForm-contents-input {
    width: 100%;
}

.loadMessage {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* 文字の色 */
    font-size: 20px; /* 文字のサイズ */
    letter-spacing: 4px; /* 文字間 */
    text-shadow:
    1px 1px 1px #333,
    -1px 1px 1px #333,
    1px -1px 1px #333,
    -1px -1px 1px #333,
    1px 0px 1px #333,
    0px 1px 1px #333,
    -1px 0px 1px #333,
    0px -1px 1px #333; /* 文字の影 */
    animation: messageAnime 1s linear infinite;
}

@keyframes messageAnime {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.list {
    border-radius: 6px;
    overflow: hidden;
    -webkit-box-shadow: 0.8rem 0.8rem 1.2rem rgb(0 0 0 / 10%), -0.8rem -0.8rem 1.2rem #fff;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 15%);
}

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

.listGroupItem {
    border: rgb(0 0 0 / 10%) solid 0;
    border-right-width: 1px;
    border-bottom-width: 1px;
    width: 100%;
    padding: 12px;
    text-align: center;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}

.listGroupItem:not(.headding) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.listGroupItem:last-child {
    border-right-width: 0;
}

.listGroup:last-child .listGroupItem {
    border-bottom-width: 0;
}

.listGroupItem.headding {
    background-color: #2196F3;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.listGroupItem.title {
    min-width: 19em;
}

.listGroupItem.name {
    max-width: 10em;
    min-width: 10em;
}

.listGroupItem.state {
    max-width: 6.8em;
    min-width: 6.8em;
}

.listGroupItem.datetime {
    max-width: 12.8em;
    min-width: 12.8em;
}

.listGroupItem.date {
    max-width: 8.0em;
    min-width: 8.0em;
}

.listGroupItem.period {
    max-width: 22.3em;
    min-width: 22.3em;
}

.listGroupItem.category {
    max-width: 12.7em;
    min-width: 12.7em;
}

.listGroupItem.code {
    max-width: 14.7em;
    min-width: 14.7em;
}

.listGroupItem.image {
    max-width: 5.8em;
    min-width: 5.8em;
}

.listGroupItem.imageLarge {
    max-width: 11.6em;
    min-width: 11.6em;
}

.listGroupItem.image img {
    max-height: 43px;
}

.listGroupItem.count {
    max-width: 7.9em;
    min-width: 7.9em;
}

.listGroupItem.setting {
    max-width: 11.4em;
    min-width: 11.4em;
}

.listGroupItem.setting:not(.headding) {
    display: flex;
    justify-content: space-around;
}

/* 編集画面 */
.formView {
    z-index: 2;
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    font-size: 14px;
    animation-name: fadeUpAnime;
    animation-duration: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.formView-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.formView-contents {
    height: 100%;
    padding: 101px 0 40px;
    overflow: hidden;
    overflow-y: auto;
}

.formView-footer {
    padding: 40px;
}

/*
.formView-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border: rgb(0 0 0 / 10%) solid 0;
    border-top-width: 1px;
    padding: 40px;
    background-color: #fff;
    text-align: center;
}
*/

.formView-items {
    width: 1000px;
    margin: 0 auto;
}

.formView-items-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.formView-items-item:last-child {
    justify-content: space-around;
    margin: 40px 0 0;
}

.resetMargin {
    margin: 0 !important;
}

.formView-items-item-name {
    max-width: 13em;
    min-width: 13em;
    height: 32px;
    line-height: 32px;
    background-color: #2196F3;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 0 8px;
    border-radius: 4px;
}

.formView-items-item-input {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 8px;
    min-height: 32px;
}

.formView-items-item-input-buttonGroup {
    margin-bottom: 12px;
}

.formView-items-item-input-buttonGroup a:not(:last-child) {
    margin-right: 8px;
}

.formView-items-item-input input[type="text"] {
    width: 100%;
}

.formView-items-item-input input[type="number"] {
    width: 7em;
}

.formView-items-item-input select {
    padding: 8px;
}

.formView-items-item-input textarea {
    width: 100%;
    height: 5.8em;
}

.formView-items-item-input-portrait {
    display: flex;
    align-items: flex-start;
}

.formView-items-item-input-portrait > div:not(:last-child) {
    margin-right: 8px;
}

.formView-items-item-input-noflex {
    display: block;
    /* width: 100%; */
}

.formView-items-item-input-separator {
    display: inline-block;
    margin: 0 8px;
}

.input-size-s {
    max-width: 7em;
}

.input-size-m {
    max-width: 12em;
}

.input-size-l {
    max-width: 24em;
}

.stateColor-current {
    background-color: #fff9c4;
}

.stateColor-done {
    background-color: #eee;
}

.thumbnailImage {
    background-color: #eee;
    border: #e0e0e0 solid 1px;
    border-radius: 4px;
    height: 200px;
    margin-top: 8px;
    padding: 8px;
    width: 100%;
    max-width: 184px;
}

.thumbnailImage-content {
    background: center center no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.selectedItems {
    display: flex;
    flex-wrap: wrap;
}

.selectedItems-item {
    display: flex;
    align-items: center;
    background-color: #43a047;
    color: #fff;
    border-radius: 4px;
    margin: 8px 8px 0 0;
    padding: 0 4px 0 0;
    height: 32px;
    line-height: 32px;
}

.selectedItems-item-name {
    padding: 0 4px 0 8px;
}

.selectedItems-item-delete {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding: 0 4px;
}

.mailHistory-listGroup {
    margin-bottom: 80px;
    padding: 12px;
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
}

.uploadFile-item {
    margin-top: 8px;
}

.formView-globalHeader {
    z-index: 2;
    position: fixed;
    top: -8px;
    right: 0;
    left: 0;
    background-color: #fff;
    font-size: 14px;
    animation-name: fadeUpAnime;
    animation-duration: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.view-filter {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    margin-top: 40px;
    justify-content: center;
}

.view-filter .formView-items-item-input {
    min-height: 27px;
    margin-left: 0;
    padding-left: 8px;
}

.view-filter > div:first-child .formView-items-item-input {
    padding-left: 0;
}

.view-filter input,
.view-filter select {
    font-weight: normal;
    padding: 4px;
    height: 27px;
}

.view-filter input[type="text"] {
    max-width: 5.6em;
    width: 100%;
}

.view-filter input[type="date"] {
    min-width: 8.2em;
    margin-left: 4px;
}

.view-filter a {
    height: 27px;
    padding-top: 3px;
}

[name="hall_ids"] {
    background-color: #eee;
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    max-height: 10em;
    padding: 4px 8px;
    overflow: hidden auto;
}

[name="hall_ids"] label {
    text-align: left;
}

.formView-searchBox {
    display: flex;
    margin-left: 8px;
    width: 100%;
}

.formView-searchBox button {
    min-width: 4.5em;
    margin-left: 8px;
}

[list="sugest-account"] {
    max-width: 12em;
}

[list="sugest-corporation"] {
    max-width: 19em;
}

[list="sugest-prefecture"] {
    max-width: 12em;
}
