﻿@charset "UTF-8";
/*--------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
--------------------------------------------------*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #fff;
  opacity: 0.7;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 32px;
  overflow: visible;
  background: #000;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  background: #000;
  padding: 1px;
}

#cboxLoadingGraphic {
  background: url(../images/loading.gif) no-repeat center center;
}

#cboxLoadingOverlay {
  background: #000;
}

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000;
}

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
  background: url(../images/controls.png) no-repeat 0 0;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxPrevious {
  background-position: 0px 0px;
  right: 44px;
}

#cboxPrevious:hover {
  background-position: 0px -25px;
}

#cboxNext {
  background-position: -25px 0px;
  right: 22px;
}

#cboxNext:hover {
  background-position: -25px -25px;
}

#cboxClose {
  background-position: -50px 0px;
  right: 0;
}

#cboxClose:hover {
  background-position: -50px -25px;
}

.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious {
  right: 66px;
}

.cboxSlideshow_on #cboxSlideshow {
  background-position: -75px -25px;
  right: 44px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -100px -25px;
}

.cboxSlideshow_off #cboxSlideshow {
  background-position: -100px 0px;
  right: 44px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -75px -25px;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  line-height: 1.15;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: .67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b, strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  /* 2 */
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  margin: 0 2px;
  padding: .35em .625em .75em;
  border: 1px solid #c0c0c0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  display: table;
  /* 1 */
  box-sizing: border-box;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 2 */
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  font: inherit;
  /* 2 */
  -webkit-appearance: button;
  /* 1 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

body {
  min-width: 1200px;
  margin: 0;
  padding: 0;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  margin: 0;
  padding: 0;
}

dl, dd, p {
  margin: 0;
  padding: 0;
}

i {
  font-style: normal;
}

a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  opacity: .8;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

input,
button,
textarea,
select {
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

button {
  cursor: pointer;
}

.container {
  display: flex;
  flex-direction: row-reverse;
}
.container--login {
  justify-content: center;
  padding: 75px 0 110px;
  background: #f3f3f3;
  text-align: center;
}

.main {
  flex-grow: 1;
  width: calc(100% - 210px);
  padding: 0 0 180px;
  transition-duration: .3s;
  -ms-overflow-style: none;
}
.main.is-wide {
  width: calc(100% - 60px);
}

.heading01 {
  position: relative;
  padding-left: 23px;
  font-size: 22px;
  line-height: 1;
}
.heading01::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("../../images/ico_heading.png") no-repeat left bottom;
  background-size: 100%;
}

.heading02 {
  margin: 30px 0 25px;
}
.heading02--low {
  margin: 30px 0 10px;
}

.heading03 {
  margin: 25px 0;
  padding: 5px 0 5px 15px;
  border-left: 7px solid #72645d;
  font-size: 16px;
}

.text {
  padding: 10px 0;
  line-height: 1.5;
}

.text-left {
  margin-bottom: 30px;
  font-size: 14px;
  text-align: left;
}

.text-large {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
}

.text-bold {
  padding: 10px 0;
  font-size: 14px;
  font-weight: bold;
}

.text-attention {
  color: #cc504b;
}

.box-wrap {
  width: 100%;
  margin: 10px 0;
}
.box-wrap + .box-button {
  margin-top: 60px;
}
.box-wrap--login {
  width: 480px;
  margin: 0 auto;
  padding: 50px 80px 15px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #fff;
}
.box-wrap--heading {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #dcdcdc;
  color: #707070;
  font-size: 14px;
}
.box-wrap--wide {
  margin: 60px 0 30px;
}

.box-flex {
  display: flex;
}

.box-flash {
  height: 58px;
  background: #3e3835;
  color: #fff;
  line-height: 58px;
  text-align: center;
}

.box-done {
  margin: 90px auto 60px;
  text-align: center;
}
.box-done__heading {
  margin-bottom: 40px;
  font-size: 25px;
}
.box-done__text {
  margin-bottom: 20px;
  line-height: 1.5;
}

.box-table.is-hide {
  display: none;
}

.box-form {
  display: flex;
  align-items: flex-end;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
}
.box-form .button {
  min-width: 160px;
  margin-left: 40px;
}
.box-form .button:first-child {
  margin-left: 0;
}
.box-form .box-wrap {
  margin: 0;
}

.box-form__mim {
    display: flex;
    align-items: flex-end;
    margin: 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #dcdcdc;
    flex-flow: wrap;
}

    .box-form__mim .button {
        min-width: 160px;
        margin-left: 40px;
        display: inline-block;
    }

        .box-form__mim .button:first-child {
            margin-left: 0;
        }

    .box-form__mim .box-wrap {
        margin: 0;
    }

.box-file {
  display: none;
  margin: 10px 0;
  padding: 20px;
  border: 1px solid #dcdcdc;
}
.box-file .form-search {
  margin: 0;
}
.box-file .file-list__item {
  height: 300px;
}
.box-file .file-list__list {
  padding-left: 50px;
}
.box-file .form-crumbs__item {
  padding-left: 65px;
}
.box-file.is-opened {
  display: block;
}

.box-facility {
  padding: 13px 40px;
  border-bottom: 4px solid #72645d;
  background: #ddd3cd;
  color: #222;
  font-size: 18px;
}

.box-info {
  min-width: 930px;
  max-width: 1930px;
  padding: 30px 30px 0 40px;
  height:100%;
}

.box-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.box-heading .box-button {
  display: flex;
  margin: 0;
}
.box-heading .box-button .button:first-child {
  margin-right: 10px;
}

.box-heading__facility {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-select {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-top: 10px;
}
.box-select__txt {
  padding-right: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.select {
  position: relative;
  width: 250px;
}
.select--wide {
  width: 500px;
  max-width: 100%;
}
.select .select__item {
  width: 100%;
  padding: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 10px -1px #d6d6d6 inset;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.select .select__item:disabled {
    background: #f3f3f3;
}
.select ::-ms-expand {
  display: none;
}
.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("../../images/ico_arrow-down.png") no-repeat left bottom;
  background-size: 100%;
  pointer-events: none;
}

.select-floor {
  min-height: 25vh;
  opacity: 0;
  pointer-events: none;
}
.select-floor.is-show {
  opacity: 1;
  pointer-events: auto;
}
.select-floor.is-none {
  display: none;
}

.select-room {
  min-height: 25vh;
  opacity: 0;
  pointer-events: none;
}
.select-room.is-show {
  opacity: 1;
  pointer-events: auto;
}
.select-room.is-none {
  display: none;
}

.select-keyplan {
    min-height: 25vh;
    opacity: 0;
    pointer-events: none;
}
.select-keyplan.is-show {
    opacity: 1;
    pointer-events: auto;
}

.select-keyplan.is-none {
    display: none;
}

.header {
  display: flex;
  position: relative;
  z-index: 10;
  align-items: center;
  height: 40px;
  background: #72645d;
}
.header-logo {
  padding: 0 30px;
}
.header-logo img {
  display: block;
}
.header-keyword {
  margin-left: auto;
}
.header-keyword .keyword-item {
  height: 30px;
  border-radius: 4px 0 0 4px;
}
.header-submit {
  position: relative;
  border-radius: 0 4px 4px 0;
  background: #f3f3f3;
}
.header-submit .submit-item {
  width: 40px;
  height: 32px;
  overflow: hidden;
  border: 0;
  background: url("../../images/ico_search.svg") no-repeat 11px 6px;
  background-size: 20px;
  line-height: 30px;
  text-indent: -9999px;
  white-space: nowrap;
  cursor: pointer;
}
.header-button {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-size: 13px;
}
.header-button__button {
  display: block;
  width: 120px;
  height: 100%;
  padding: 13px 0;
  border-left: 1px solid #72645d;
  color: #fff;
  text-align: center;
}
.header-button__button.button--other {
  background: #f3efed;
  color: #72645d;
}

.side {
  top: 0;
  bottom: 0;
  left: 0;
  width: 210px;
  min-width: 210px;
  overflow: hidden;
  transition: .3s;
  background: #f2f2f2;
}
.side.is-min {
  width: 60px;
  min-width: 60px;
}
.side.is-min .side-nav__list,
.side.is-min .side-nav__heading,
.side.is-min .side-nav__id {
  opacity: 0;
}
.side--help {
  overflow-x: hidden;
  overflow-y: auto;
}

.side-outer {
    width: 210px;
    overflow-x: hidden;
    /*transition: .3s;*/
    max-height: calc(100vh - 80px);
}

.side-outer-fixed {
    left: 0px;
    height: 100%;
    overflow-y: auto;
    position: fixed;
    padding-top: 0;
}

.side-outer.is-fixed {
    position: fixed;
    top: 0;
    padding-top: 0;
    max-height: calc(100vh - 40px) !important;
}
.is-min .side-outer {
  width: 60px;
  overflow: hidden !important;
}

.side-nav {
  width: 100%;
}
.side-nav:not(:first-child) {
  margin-top: 10px;
  padding-top: 10px;
}
.side-nav__list {
  width: 210px;
  transition: .3s;
}
.side-nav__link {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  width: 210px;
  height: calc((100vh - 140px) /18);
  max-height: 50px;
  padding-left: 34px;
  transition-duration: .3s;
  color: #222;
  font-size: 14px;
  white-space: nowrap;
  min-height: 21px;
}
.side-nav__link.is-current {
  position: relative;
  background: #fff;
}
.side-nav__link.is-current::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 10px;
  background: #72645d;
}
.side-nav__link:hover {
  background: #fff;
}
.side-nav__link--button {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
  height: 50px;
  padding-left: 0;
}
.side-nav__link--badge {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #cc504b;
  color: #fff;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
}
.side-nav__heading {
  width: 192px;
  padding: 30px 0 4px 8px;
  transition: .3s;
  color: #72645d;
  font-size: 14px;
}
.side-nav__icon {
  width: 38px;
  height: 20px;
}
.side-nav__id {
  background: #3e3835;
}
.side-nav__id .side-nav__link {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.side-nav__id .side-nav__link.is-current {
  color: #72645d;
}
.side-nav__id .side-nav__link:hover {
  opacity: 1;
  color: #3e3835;
}

.box-button {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.table-info + .box-button {
  margin-top: 60px;
}
.box-button--left .button--plus {
  margin-left: 0;
}
.box-button--right {
  display: flex;
  justify-content: flex-end;
}
.box-button--right .button {
  margin-right: 10px;
}
.box-button--right .button:last-child {
  margin-right: 0;
}
.box-button--floor-edit {
  opacity: 0;
  pointer-events: none;
}
.box-button--floor-edit.is-show {
  opacity: 1;
  pointer-events: auto;
}
.box-button--floor-edit.is-none {
  display: none;
}
.box-button--room-entry {
  display: none;
  pointer-events: none;
}
.box-button--room-entry.is-show {
  display: block;
  pointer-events: auto;
}
.box-button--room-entry.is-none {
  display: none;
}

.box-button--keyplan-edit {
    opacity: 0;
    pointer-events: none;
}

.box-button--keyplan-edit.is-show {
    opacity: 1;
    pointer-events: auto;
}

.box-button--keyplan-edit.is-none {
    display: none;
}

.box-button--rows .button:first-child {
  margin-right: 20px;
}
.box-button--short {
  display: flex;
  margin-left: auto;
}
.box-button--short .button {
  margin-left: 10px;
}
.box-button--short .select {
  min-width: 250px;
}

.button, .button--sub, .button--sub--s, .button--sub--s--ng, .button--small, .button--thin, .button--large, .button--large-g, .button--blank, .button--plus, .button--close, .button--upload {
    border-style: none;
    border-color: inherit;
    border-width: 0;
    display: block;
    width: 160px;
    transition: .2s;
    border-radius: 4px;
    background: #72645d;
    color: #fff;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.button {
  min-width: 160px;
}
.button--sub {
  height: 50px;
  margin-right: 10px;
  background: #989898;
  line-height: 50px;
}
.button--sub:last-child {
  margin-right: 0;
}
.button--sub--s {
  height: 40px;
  margin-right: 10px;
  background: #72645d;
  font-size: 14px;
  line-height: 40px;
}
.button--sub--s:last-child {
  margin-right: 0;
}

.button--sub--s--ng {
    height: 40px;
    margin-right: 10px;
    background: #808080;
    color: #c0c0c0;
    font-size: 14px;
    line-height: 40px;
    cursor: inherit;
    pointer-events: none;
}

.button--sub--s--ng:last-child {
    margin-right: 0;
}

.button--edit {
  display: block;
  width: 80px;
  height: 24px;
  margin: 0 10px 0 auto;
  border: 1px solid #72645d;
  border-radius: 3px;
  background: #fff;
  color: #72645d;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
  transition: .2s;
}

.button--edit.no-active {
    background: #808080;
    color: #c0c0c0;
}

.button--edit.no-active:hover {
    background: #808080;
    color: #c0c0c0;
}

.button--edit:last-child {
  margin-right: 0;
}
.button--edit:hover {
  background: #72645d;
  color: #fff;
}
.button--small {
  margin-right: 40px;
  background: #989898;
}
.button--small:last-child {
  margin-right: 0;
}
.button--thin {
  display: inline-block;
  width: 130px;
  height: 30px;
  background: #4c4c4c;
  line-height: 30px;
}
.button--large {
  position: relative;
  width: 240px;
  margin-right: 40px;
  font-size: 16px;
    top: 2px;
    left: 0px;
}
.button--large:last-child {
  margin-right: 0;
}
.button--large-g {
  width: 240px;
  margin-right: 40px;
  background: #989898;
  font-size: 16px;
}
.button--blank {
  position: relative;
  width: 240px;
  font-size: 16px;
}
.button--blank::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../../images/ico_export.svg") no-repeat bottom left;
  background-size: 16px;
}
.button--plus {
  position: relative;
  min-width: 140px;
  margin-left: 40px;
  padding-left: 20px;
}
.button--plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../../images/ico_plus-w.png") no-repeat bottom left;
  background-size: 16px;
}
.button--close {
  margin-top: 30px;
  background: #989898;
}
.button--upload {
  position: relative;
  min-width: 140px;
  margin-left: 40px;
  padding-left: 20px;
}
.button--upload::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url("../../images/ico_drop.png") no-repeat bottom left;
  background-size: 20px;
}
.button:hover {
  opacity: .8;
}
.button__txt {
  color: #72645d;
  text-decoration: underline;
}
.button.center {
  margin: 0 auto;
}

.button-icon {
  display: inline-block;
  width: 60px;
  margin-right: 15px;
  padding: 5px 0;
  border: 1px solid #72645d;
  border-radius: 4px;
  background: #fff;
  text-align: center;
}
.button-icon--ng {
  border-color: #cc504b;
}
.button-icon--ng span {
  color: #cc504b;
}
.button-icon:last-child {
  margin-right: 0;
}
.button-icon__icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
.button-icon__icon img {
  width: 100%;
}
.button-icon__txt {
  color: #72645d;
  font-size: 12px;
}

.form {
  margin-bottom: 60px;
}

.form-table {
  width: 100%;
  background: #f3f3f3;
}
.form-table__heading {
  width: 120px;
  color: #222;
  font-size: 14px;
}
.form-table__input {
  position: relative;
  padding: 20px 40px 20px 0;
}
.form-table__input input {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: 0 0 10px -1px #d6d6d6 inset;
  font-size: 14px;
}
.form-table__input span {
  position: absolute;
  top: 50%;
  right: 55px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.form-input__heading, .form-input__heading--top, .form-input__heading--confirm {
  display: inline-flex;
  align-items: baseline;
  justify-content: space-between;
  width: 190px;
  min-width: 190px;
  padding: 13px 10px 13px 0;
  color: #707070;
  font-weight: bold;
  text-align: left;
}

.form-input {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.form-input--authority {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #dcdcdc;
}
.form-input__heading--top {
  vertical-align: top;
}
.form-input__heading--confirm {
  padding: 16px 0;
}
.form-input__heading-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}
.form-input__column {
  display: flex;
  align-items: center;
}
.form-input__column:not(:first-child) {
  margin-top: 10px;
}
.form-input__column .button {
  margin-left: 10px;
}
.form-input__input {
  width: 100%;
  padding: 5px 0;
}
.form-input__input.form-list {
  padding-bottom: 10px;
}
.form-input__input--confirm {
  color: #707070;
}
.form-input__link {
  color: #707070;
}
.form-input__file {
  position: relative;
}
.form-input__file input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
.form-input__file:not(:first-of-type) {
  margin-left: 20px;
}
.form-input__upload:not(:first-child) {
  margin-top: 10px;
}
.form-input--confirm .form-input__input {
  color: #707070;
}
.form-input--confirm .table-info__head {
  text-align: left;
}
.form-input--confirm .table-info__item {
  color: #222;
}
.form-input--confirm .table-info__item td {
  padding: 15px 0 15px 20px;
  font-size: 14px;
}
.form-input__attention {
  width: 100%;
  padding-top: 5px;
  color: #cc504b;
}

.form-upload {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  /*height: 120px;*/
  min-height: 70px;
  margin: 20px 0;
  padding: 40px 30px;
  border: 1px dashed #a7a7a7;
  border-radius: 4px;
  background: #f3f3f3;
}
.form-upload:not(:first-child) {
  margin-top: 10px;
}
.form-upload__text {
  margin: 0;
  font-size: 16px;
  text-align: center;
}

.form-input-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 758px;
  padding: 40px 30px;
  border: 1px dashed #a7a7a7;
  border-radius: 4px;
  background: #f3f3f3;
}
.form-input-upload__text {
  margin-right: 20px;
  font-size: 14px;
}

.form-upload-file {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  width: 228px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form-upload-file__image {
  display: block;
  max-width: 210px;
  margin: 0 auto;
}
.form-upload-file__imagename {
  margin: 10px 0 0;
  font-size: 14px;
  text-align: center;
}
.form-upload-file__date {
  margin: 5px 0 0;
  font-size: 12px;
  text-align: center;
}
.form-upload-file__date--wide {
  margin: 5px 0 0;
  font-size: 12px;
  text-align: center;
}
.form-upload-file__text {
  position: relative;
  margin: 10px 10px 20px 30px;
  font-size: 14px;
}
.form-upload-file__text:first-child {
  margin-top: 0;
}
.form-upload-file__text::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -25px;
  width: 20px;
  height: 20px;
  background: url("../../images/ico_clip.svg") no-repeat left bottom;
  background-size: 20px;
}
.form-upload-file__text:last-child {
  margin-bottom: 10px;
}
.form-upload-file__delete {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
}
.form-upload-file__delete img {
  width: 12px;
}

.form-search {
  margin: 20px 0;
}
.form-search__heading {
  min-width: 80px;
  text-align: left;
}
.form-search__input {
  width: 100%;
}
.form-search .input-text {
  max-width: 680px;
}

.form-crumbs {
  position: relative;
}
.form-crumbs__item {
  display: flex;
  flex-wrap: wrap;
}
.form-crumbs__arrow {
  padding: 0 10px;
  color: #707070;
}
.form-crumbs__link {
  color: #707070;
}
.form-crumbs .input-check {
  position: absolute;
  top: -3px;
}

.form-column {
  margin-bottom: 40px;
}
.form-column__line {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}
.form-column__line--center {
  align-items: center;
}
.form-column__box {
  display: flex;
  align-items: center;
  width: calc(50% - 20px);
  max-width: 500px;
}
.form-column__box:last-child {
  margin-left: 100px;
}
.modal .form-column__box {
  max-width: 380px;
}
.form-column__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  min-width: 130px;
  margin-right: 10px;
  color: #707070;
  font-size: 15px;
  font-weight: bold;
  text-align: left;
}
.form-column__heading--top {
  align-self: flex-start;
  width: 130px;
  min-width: 130px;
  margin-right: 10px;
  color: #707070;
  font-size: 15px;
  font-weight: bold;
  text-align: left;
}
.form-column__item {
  flex-grow: 1;
}
.form-column__item .input-text {
  max-width: 600px;
}
.form-column__item .input-text--freshly {
  max-width: 600px;
  margin-bottom: 10px;
}
.form-column__item .select {
  width: 100%;
}
.modal .form-column__box .form-column__item {
  max-width: 250px;
}
.form-column__text {
  padding: 10px 0;
  font-size: 14px;
}
.form-column__text:first-child {
  padding-top: 0px;
}
.form-column__check {
  margin: 0 0 20px -20px;
}
.form-column__check .input-check {
  padding: 4px 50px;
}

.form-file-list__header {
  padding: 15px 20px;
  border: 1px solid #dcdcdc;
  background: #f3f3f3;
  font-weight: bold;
}
.form-file-list__scroll {
  max-height: 355px;
  overflow: auto;
  border: 1px solid #dcdcdc;
  border-top: 0;
  -webkit-overflow-scrolling: touch;
}
.form-file-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #dcdcdc;
}

[type="text"],
[type="email"],
[type="password"],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: 0 0 10px -1px #d6d6d6 inset;
}
[type="text"]:disabled,
[type="email"]:disabled,
[type="password"]:disabled,
textarea:disabled {
  background: #f3f3f3;
}
[type="text"]:focus,
[type="email"]:focus,
[type="password"]:focus,
textarea:focus {
  box-shadow: 0 0 10px -1px #f5f5f5 inset;
}

textarea {
  resize: vertical;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.input-text {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 500px;
}
.input-text__unit {
  margin-left: 5px;
}
.input-text--wide {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
}

.input-confirm {
  color: #707070;
  text-align: left;
}

.textarea {
  max-width: 500px;
}

.input-check {
  display: block;
  position: relative;
}
.input-check::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  background: #dcdcdc url("../../images/ico_check.png") no-repeat center center;
  background-size: 14px auto;
  box-shadow: 1px 1px 1px -1px #000 inset;
}
.input-check.is-checked::before {
  background: #72645d url("../../images/ico_check.png") no-repeat center center;
}
.input-check input {
  position: absolute;
  opacity: 0;
}

.input-check2 {
    display: block;
    position: relative;
}

.input-check2::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0px;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    background: #dcdcdc url("../../images/ico_check.png") no-repeat center center;
    background-size: 14px auto;
    box-shadow: 1px 1px 1px -1px #000 inset;
}

.input-check2.is-checked::before {
    background: #72645d url("../../images/ico_check.png") no-repeat center center;
}

.input-check2 input {
    position: absolute;
    opacity: 0;
}

.all-check .input-check {
  display: block;
  position: relative;
  width: 280px;
  margin: 5px 0 0 auto;
  padding: 15px 15px 15px 55px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  cursor: pointer;
}
.all-check .input-check.is-checked {
  border-color: #dcdcdc;
  background: #ddd3cd;
}
.all-check .input-check::before {
  top: 50%;
  transform: translateY(-50%);
}

.input-check-mark {
  display: block;
  position: relative;
}
.input-check-mark__comment {
    display: block;
    position: relative;
}
.input-check-mark::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border: 1px solid #ddd;
  background: #dcdcdc url("../../images/ico_check.png") no-repeat center center;
  background-size: 14px auto;
  box-shadow: 1px 1px 1px -1px #000 inset;
}
.input-check-mark__comment::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    background: #dcdcdc url("../../images/ico_check.png") no-repeat center center;
    background-size: 14px auto;
    box-shadow: 1px 1px 1px -1px #000 inset;
}
.input-check-mark__comment::after {
    content: "完了を含める";
    top: 3px;
    position: absolute;
    left: 25px;
    font-size: 14px;
}
.input-check-mark.is-checked::before {
  background: #72645d url("../../images/ico_check.png") no-repeat center center;
}
.input-check-mark__comment.is-checked::before {
    background: #72645d url("../../images/ico_check.png") no-repeat center center;
}
.input-check-mark input {
  position: absolute;
  opacity: 0;
}
.input-check-mark__comment input {
    position: absolute;
    opacity: 0;
}

.input-radio {
  display: block;
  position: relative;
  width: 100%;
  height: 20px;
}
.input-radio::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  background: #dcdcdc;
  box-shadow: 1px 1px 2px -1px #000 inset;
  cursor: pointer;
}
.input-radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #fff;
}
.input-radio input {
  position: absolute;
  opacity: 0;
}
.input-radio.is-checked::before {
  background: #72645d;
}

.input-date {
  display: flex;
  align-items: center;
}
.input-date__item {
  display: inherit;
  position: relative;
  z-index: 100;
  width: 250px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
}
.input-date__item::before {
  content: url("../../images/ico_date.png");
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.input-date__item input[type="text"] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 15px 15px 55px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.input-item .js-ip-disable.is-disable {
    background: #f3f3f3;
    cursor: auto;
}
.input-item .js-acc-disable.is-disable {
    background: #f3f3f3;
    cursor: auto;
}
.input-date__item .datepicker.is-disable {
  background: #f3f3f3;
  cursor: auto;
}
.input-date__check .input-check {
  padding: 4px 50px;
}
.input-date__check .input-check2 {
    padding: 4px 30px;
}
.input-date span {
  padding: 0 20px;
}

.input-require, .input-arbitrarily {
  display: inline-block;
  width: 10px;
  min-width: 10px;
  padding: 5px 5px 4px;
  background: #cc504b;
  color: #fff;
  font-size: 10px;
}

.input-arbitrarily {
  background: #72645d;
}

.box-page-control {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.box-page-control + .box-button {
  margin-top: 60px;
}

.page-control {
  display: flex;
  align-items: center;
  padding-top: 24px;
}
.page-control__info {
  min-width: 75px;
  padding-right: 15px;
  font-size: 14px;
}

.pagenation {
  display: flex;
  align-items: center;
}
.pagenation__link {
    padding: 7px 10px;
    border-left: 1px solid #dcdcdc;
    color: #707070;
    white-space: nowrap;
}
.pagenation__link.is-current {
  background: #ddd3cd 20px;
  color: #72645d;
}
.pagenation__link:last-child {
  border-right: 1px solid #dcdcdc;
}
.pagenation__leader {
  padding: 8px 10px;
  border-left: 1px solid #dcdcdc;
  color: #707070;
}

.pagenationB__link {
    padding: 7px 10px;
    border: 0px solid #ffffff;
    border-left: 1px solid #dcdcdc;
    color: #707070;
    white-space: nowrap;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
    width: 37px;
}

.pagenationB__link.is-current {
    background: #ddd3cd 20px !important;
    color: #72645d;
}

.pagenationB_head {
    padding: 7px 10px;
    border: 0px solid #ffffff;
    color: #707070;
    white-space: nowrap;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
}

.pagenationB_foot {
    padding: 7px 10px;
    border: 0px solid #ffffff;
    border-left: 1px solid #dcdcdc;
    color: #707070;
    white-space: nowrap;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
}

.switch {
  display: flex;
  height: 46px;
  margin: 0 15px 0 10px;
  color: #72645d;
  font-size: 14px;
  line-height: 46px;
}
.switch__button {
  width: 80px;
  border: 1px solid #dcdcdc;
  border-radius: 4px 0 0 4px;
  color: #72645d;
  text-align: center;
}
.switch__button:hover {
  background: #ddd3cd;
}
.switch__button:last-child {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
}
.switch__button.is-active {
  border: 1px solid #dcdcdc;
  background: #ddd3cd;
  font-weight: bold;
}
.switch__button.is-active:hover {
  opacity: 1;
}

.login__item {
  margin-bottom: 30px;
}
.login__item:last-of-type {
  margin-bottom: 15px;
}
.login__heading {
  margin-bottom: 10px;
  color: #707070;
  font-weight: bold;
  text-align: left;
}
.login__title {
  margin-bottom: 10px;
  color: #707070;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
.login__text {
  font-size: 14px;
  text-align: left;
}
.login__check {
  color: #707070;
  font-size: 14px;
  text-align: left;
}
.login__check .input-check {
  display: inline-block;
  padding: 4px 35px;
  cursor: pointer;
}
.login__check .input-check::before {
  left: 0;
}
.login__link {
  display: block;
  margin-top: 30px;
  color: #72645d;
  font-size: 14px;
}
.login .box-button {
  margin-top: 30px;
}

.login-logo {
  margin-bottom: 20px;
}

.table-head {
  margin: 40px 0 10px;
  color: #707070;
  font-size: 16px;
  font-weight: bold;
}
.table-head span {
  margin-left: 1em;
  font-size: 14px;
  font-weight: normal;
}
.table-head__status {
  padding: 5px;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  background: #f3f3f3;
  color: #707070;
  font-weight: bold;
  text-align: center;
}

.table-info {
  width: 100%;
  margin: 10px 0;
  table-layout: fixed;
  border-collapse: collapse;
}
.table-info_contract {
    width: 100%;
    margin: 10px 0;
    table-layout: initial;
    border-collapse: collapse;
}
.table-info__headname {
  padding: 13px 20px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #dcdcdc;
  background: #f3f3f3;
  font-size: 14px;
  font-weight: bold;
}
.table-info__headname--line {
  padding: 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #dcdcdc;
  background: #f3f3f3;
  font-size: 14px;
}
.table-info__headname--cont {
  padding: 7px 20px;
  border-bottom: 1px solid #dcdcdc;
}
.table-info__headname--cont:last-child {
  border-bottom: 0;
}
.table-info__dataname {
  position: relative;
  align-items: center;
  padding: 10px 20px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.js-report .table-info__dataname:not(.js-report-check), .js-approval-manager .table-info__dataname:not(.js-report-check), .js-approval .table-info__dataname:not(.js-report-check) {
  cursor: pointer;
}
.table-info__dataname .table-button {
  display: flex;
}
.table-info__dataname .table-button .button--small {
  display: block;
  width: 80px;
  height: 24px;
  margin: 0 10px 0 auto;
  border: 1px solid #72645d;
  border-radius: 3px;
  background: #fff;
  color: #72645d;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
}
.table-info__dataname .table-button .button--small:last-child {
  margin-right: 0;
}
.table-info__dataname--line {
  align-items: center;
  padding: 0;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-info__dataname--cont {
  padding: 10px 20px;
  overflow: hidden;
  border-bottom: 1px solid #dcdcdc;
  text-overflow: ellipsis;
}
.table-info__dataname--cont:last-child {
  border-bottom: 0;
}
.table-info__check {
  width: 40px;
  padding: 10px 0;
}
.table-info__check--wide {
  width: 60px;
  padding: 10px 0;
}
.table-info__title {
  width: 240px;
}
.table-info__title--min {
  width: 150px;
  padding: 20px;
}
.table-info__section {
  width: 90px;
}
.table-info__section--wide {
  width: 200px;
  text-align: left;
}
.table-info__supplier {
  width: 120px;
}
.table-info__supplier--min {
  width: 90px;
}
.table-info__date {
  width: 81px;
  text-align: center;
  white-space: nowrap;
}
.table-info__date--wide {
  width: 90px;
  text-align: center;
}
.table-info__date--broad {
    width: 320px;
}
.table-info__notice {
  max-height: 33px;
}
.table-info__notice a {
  display: block;
  display: -webkit-box;
  max-height: 35px;
  overflow: hidden;
  opacity: 1;
  color: #222;
  line-height: 20px;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.table-info__floor {
  max-width: calc(100% - 598px);
}
.table-info__size {
  width: 100px;
}
.table-info__size--wide {
  width: 170px;
}
.table-info__size--min {
  width: 126px;
}
.table-info__file {
  width: 150px;
  text-align: left;
}
.table-info__classifying {
  width: 60px;
  max-width: 60px;
  text-align: center;
}
.table-info__classifyingChange {
    width: 100px;
    max-width: 100px;
    text-align: center;
}
.table-info__hierarchy {
  width: 121px;
  max-width: 121px;
}
.table-info__hierarchy_iconlist {
    width: 240px;
    max-width: 240px;
}
.table-info__hierarchy--most {
  width: 230px;
  max-width: 230px;
}
.table-info__hierarchy--wide {
  width: 149px;
  max-width: 149px;
}
.table-info__hierarchy--min {
  width: 100px;
  max-width: 100px;
}
.table-info__hierarchy--short {
  width: 80px;
  max-width: 80px;
}
.table-info__facility {
  width: 149px;
  max-width: 149px;
}
.table-info__facility--wide {
  width: 290px;
  max-width: 290px;
}
.table-info__facility--wide span {
  display: -webkit-box;
  max-height: 35px;
  overflow: hidden;
  line-height: 20px;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.table-info__facility--min {
  width: 100px;
  max-width: 100px;
}
.table-info__facility--short {
  width: 90px;
  max-width: 90px;
  text-align: left;
}
.table-info__facility--wrap {
  width: 149px;
  max-width: 149px;
  white-space: normal;
}
.table-info__facility--wrap span {
  display: -webkit-box;
  max-height: 35px;
  overflow: hidden;
  line-height: 20px;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.table-info__user {
  width: 149px;
}
.table-info__user--harf {
    width: 165px;
    max-width: 165px;
}
.table-info__user--wide {
    width: 180px;
    max-width: 180px;
}
.table-info__user--min {
  width: 140px;
  max-width: 140px;
}
.table-info__user--min__iconlist {
    width: 240px;
    max-width: 240px;
}
.table-info__user--short {
  width: 90px;
}
.table-info__authority {
  width: 120px;
  text-align: center;
}
.table-info__authority .select {
  width: 120px;
}
.table-info__authority--min {
  width: 60px;
}
.table-info__note {
  position: relative;
  max-width: 100px;
}
.table-info__remarks {
  position: relative;
  max-width: 100px;
  overflow: visible;
}
.table-info__text {
  align-items: center;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-info__tip {
  display: none;
  position: absolute;
  top: 75px;
  left: 40px;
  width: 330px;
  max-height: 60px;
  margin: -30px 0 0;
  padding: 10px;
  overflow-y: auto;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 10px 5px rgba(153, 153, 153, 0.1);
  font-size: 13px;
  white-space: normal;
  z-index: 1;
}
.table-info__email {
  width: 145px;
  max-width: 145px;
}
.table-info__email--wide {
  width: 180px;
  max-width: 180px;
}
.table-info__email--min {
  width: 120px;
}
.table-info__email--short {
  width: 85px;
}
.table-info__label {
  position: relative;
  width: 60px;
}
.table-info__type {
  width: 79px;
  padding: 20px;
  text-align: center;
}
.table-info__type img {
  display: block;
  margin: 0 auto;
}
.table-info__overview {
  height: 140px;
  padding: 0 20px;
  text-align: left;
}
.table-info__id {
  width: 60px;
  text-align: center;
}
.table-info__id a {
  color: #222;
  opacity: 1;
}
.table-info__id--harf {
    width: 75px;
    text-align: center;
}
.table-info__id--wide {
  width: 90px;
}
.table-info__id--wide a {
  color: #222;
  opacity: 1;
}
.table-info__id--min {
  width: 49px;
  text-align: center;
}
.table-info__status {
  width: 130px;
  padding: 8px 0;
  text-align: center;
}
.table-info__status--min {
  width: 120px;
  padding: 8px 0;
  text-align: center;
}
.table-info__status-date {
  display: block;
  font-size: 12px;
  text-align: center;
}
.table-info__icon {
  width: 75px;
  padding: 0;
  text-align: center;
}
.table-info__name {
  width: calc(100% - 306px);
  text-align: left;
}
.table-info__change-title {
  width: calc(100% - 852px);
}
.table-info__change-txt {
  display: block;
  display: -webkit-box;
  max-height: 36px;
  overflow: hidden;
  color: #222;
  line-height: 20px;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.table-info__change-txt:hover {
  opacity: 1;
}
.table-info__change {
  width: 100px;
  max-width: 100px;
  text-align: left;
}
.table-info__change--min {
  width: 70px;
  max-width: 70px;
}
.table-info__input {
  width: 200px;
  text-align: left;
}
.table-info__button {
  width: 174px;
  padding: 10px 10px 10px 20px;
}
.table-info__button span {
  visibility: hidden;
}
.table-info__button--short {
  width: 80px;
  max-width: 80px;
}
.table-info__button--short span {
  visibility: hidden;
}
.table-info__button--wide {
  width: 260px;
  max-width: 260px;
}
.table-info__button--wide span {
  visibility: hidden;
}
.table-info__link {
  display: block;
  color: #222;
}
.table-info__template-name {
  padding: 8px 15px;
}
.table-info tr:not([class]) {
  border-bottom: 1px solid #dcdcdc;
}
.table-info__item {
  max-height: 20px;
  overflow: hidden;
  border-bottom: 1px solid #dcdcdc;
}
.table-info__item:hover {
  background: #ddd3cd;
  cursor: pointer;
}
.table-info--unhover .table-info__item:hover, .table-info--user .table-info__item:hover, .table-info--history .table-info__item:hover {
  background: #fff;
  cursor: auto;
}
.table-info__item.is-read {
  background: #f3f3f3;
}
.table-info__item.is-read:hover {
  background: #ddd3cd;
}
.table-info__item.is-disable {
  background: #f3f3f3;
}
.table-info__item.is-disable:hover {
  background: #ddd3cd;
}
.table-info__item.is-unread .table-info__notice {
  position: relative;
  font-weight: bold;
}
.table-info__item.is-unread .table-info__notice::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 7px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 6px;
  background: #72645d;
}
.table-info__item.is-none {
    display: none;
}
.table-info__menu {
  display: none;
  padding: 10px 20px;
  border-bottom: 1px solid #dcdcdc;
  background: #f3f3f3;
}
.table-info__menu.is-show {
  display: table-cell;
}
.table-info__menu-wrap {
  display: flex;
  align-items: center;
}
.table-info__sample-image {
  width: 55%;
}
.table-info__image {
  display: block;
  width: 300px;
  margin: 0 auto;
  border: 1px solid #dcdcdc;
}
.table-info__image-file {
  display: block;
  width: 210px;
  margin: 0;
}
.table-info__scroll-head {
  padding-right: 35px;
}
.table-info__scroll-head .table-info__headname--cont {
  width: calc(100% - 5px);
}
.table-info__scroll-data {
  width: 110px;
}
.table-info__scroll-data .table-info__dataname--cont {
  width: calc(100% - 5px);
  padding-left: 10px;
}

.table-info-wrap {
  max-height: 350px;
  margin-top: -10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.table-info-wrap .table-info {
  margin: 0;
}

.table-info-wrap_freez {
    max-height: 350px;
    margin-top: -10px;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    overflow-x: hidden;
}

.table-info-wrap_freez .table-info {
    margin: 0;
}

.table-header {
  display: none;
  position: fixed;
  z-index: 99;
  top: -2px;
  border-collapse: collapse;
  transition: .3s;
}

.table-notice {
  padding: 0 30px;
  border: 1px solid #dcdcdc;
}
.table-notice tr th, .table-notice tr td {
  padding: 22px 0;
  border-bottom: 1px solid #dcdcdc;
  font-size: 14px;
}
.table-notice tr th {
  padding-right: 40px;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
.table-notice tr td {
  width: 100%;
  max-width: 595px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-notice tr:last-child th, .table-notice tr:last-child td {
  border-bottom: 0;
}
.table-notice__tag {
  padding-left: 20px;
  color: #cc504b;
  font-weight: bold;
}
.table-notice__tag--service {
  color: #72645d;
}
.table-notice .notice-link {
  color: #222;
  text-decoration: underline;
}
.table-notice .notice-link:hover {
  text-decoration: none;
}

.table-board {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table-board__item {
  border-bottom: 1px solid #dcdcdc;
}
.table-board__dataname {
  padding: 15px 15px 15px 0;
}
.table-board .table-file {
  position: relative;
  width: 350px;
  max-width: 350px;
  padding: 5px 0 5px 30px;
  overflow: hidden;
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-board .table-file::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url("../../images/ico_clip.svg") no-repeat center center;
  background-size: 20px;
}
.table-board .table-file:hover {
  text-decoration: none;
}
.table-board .table-file a {
  color: #666;
}
.table-board__date {
  width: 138px;
  padding-left: 10px;
}
.table-board__content {
  width: 100%;
}

.table-data, .table-data--wide {
  width: 100%;
  margin-bottom: 70px;
  border-collapse: collapse;
  border-top: 1px solid #dcdcdc;
  font-size: 15px;
}

.table-data__headname, .table-data__headname--min, .table-data__headname--plane, .table-data__headname--number, .table-data__headname--user, .table-data__headname--box, .table-data__headname--price, .table-data__headname--summary {
  width: 150px;
  padding: 9px 10px;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  background: #f3f3f3;
  color: #707070;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
  vertical-align: top;
}

.table-data__headname--org {
    width: 150px;
    padding: 9px 10px;
    border-right: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    background: #2d2d2d;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    vertical-align: top;
}

.table-data--first {
  margin-bottom: 40px;
}
.table-data:last-child {
  margin-bottom: 0;
}
.table-data__headname--middle {
  vertical-align: middle;
}
.table-data__headname--min {
  width: 20px;
}
.table-data__headname--plane {
  width: 400px;
}
.table-data__headname--number {
  width: 80px;
}
.table-data__headname--user {
  width: 100px;
}
.table-data__headname--box {
  text-align: center;
}
.table-data__headname--price {
  width: 120px;
}
.table-data__headname--summary {
  width: calc(100% - 670px);
}
.table-data__dataname {
  max-width: 300px;
  padding: 10px;
  border-bottom: 1px solid #dcdcdc;
  background: #fff;
}
.table-data__dataname--half {
  width: 35%;
  padding: 10px;
  border-bottom: 1px solid #dcdcdc;
  background: #fff;
}
.table-data__dataname--half--org {
    width: 35%;
    padding: 10px;
    border-bottom: 1px solid #dcdcdc;
    background: #2d2d2d;
    color: #fff;
}
.table-data__dataname--glued {
  padding: 0;
  border: 0;
}
.table-data__dataname--glued .table-data {
  border-top: 0;
}
.table-data__dataname--upload {
  padding-bottom: 0;
}
.table-data__dataname--border {
  padding: 0;
}
.table-data__dataname--border .form-column__text {
  padding: 10px;
  border-bottom: 1px solid #dcdcdc;
}
.table-data__dataname--border .form-column__text:last-child {
  border-bottom: 0;
}
.table-data__content {
  width: 130px;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.table-data__content:first-child {
  padding: 0;
  border-left: 1px solid #dcdcdc;
}
.table-data__content--glued {
  padding: 0;
  border: 0;
}
.table-data__content--glued .table-data {
  border-top: 0;
}
.table-data__content span {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding-left: 5px;
  border-bottom: 1px solid #dcdcdc;
}
.table-data__content span:last-child {
  border-bottom: 0;
}
.table-data__list {
  display: flex;
  flex-wrap: wrap;
}
.table-data__item {
  position: relative;
  width: calc((100% - 81px)/2);
  padding: 15px 20px;
}
.table-data__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 10px;
  background: #dcdcdc;
}
.table-data__image-wrap {
  display: inline-flex;
  flex-direction: column;
  width: 228px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.table-data__image-wrap:not(:first-child) {
  margin-left: 10px;
}
.table-data__image {
  display: block;
  max-width: 220px;
  margin: 0 auto;
}
.table-data__imagename {
  margin: 10px 0 0;
  font-size: 14px;
  text-align: center;
}
.table-data__dataitem {
  padding: 5px;
}
.table-data__dataitem--nowrap {
  padding: 5px;
  white-space: nowrap;
}
.table-data__check {
  width: 10px;
  background: #f3f3f3;
  text-align: center;
}
.table-data__check.is-check {
  width: 10px;
  height: 10px;
  background: url("../../images/ico_check.svg") no-repeat center center;
  background-size: 10px;
  text-indent: -9999px;
  white-space: nowrap;
}
.table-data--wide {
  border: 1px solid #dcdcdc;
}

.table-icon {
  float: left;
}

.table-text {
  padding-left: 15px;
  line-height: 28px;
}

.board-btn {
  position: relative;
  width: 300px;
  height: 50px;
  margin: -1px auto 0;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  border-radius: 0 0 4px 4px;
  border-color: #ddd3cd #dcdcdc #dcdcdc;
  background: #ddd3cd;
  color: #72645d;
  line-height: 50px;
  text-align: center;
  text-indent: -1000px;
  white-space: nowrap;
  cursor: pointer;
}
.board-btn.is-open::before {
  content: "";
  background: url("../../images/ico_arrow-close.svg") no-repeat left bottom;
}
.board-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate3d(-50%, -50%, 0);
  background: url("../../images/ico_arrow-open.svg") no-repeat left bottom;
  background-size: 20px;
}

.tab__item, .tab__item--information, .tab__item--document, .tab__item--other, .tab__item--renovation {
  display: block;
  margin-right: 10px;
  padding: 15px;
  border-width: 2px 1px 0;
  border-style: solid;
  border-radius: 4px 4px 0 0;
  border-color: #dcdcdc #dcdcdc;
  background: #f3f3f3;
  color: #707070;
  font-size: 16px;
}

.tab__item--tips {
    height: 18.4px;
    align-items: center;
    position:relative;
}

.tab__list_mh{
    height:50px;
    position:relative;
}

.is-current.tab__item, .is-current.tab__item--information, .is-current.tab__item--document, .is-current.tab__item--other, .is-current.tab__item--renovation {
    position: relative;
    background: #ddd3cd;
    color: #72645d;
    font-weight: bold;
}

.is-current.tab__item::after, .is-current.tab__item--information::after, .is-current.tab__item--document::after, .is-current.tab__item--other::after, .is-current.tab__item--renovation::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  border-bottom: solid #ddd3cd;
}

.tab {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
}
.table-data + .tab {
  margin-top: -60px;
}
.tab__item--information {
  border-top-color: #72645d;
}
.tab__item--document {
  border-top-color: #af9e94;
}
.tab__item--other {
  border-top-color: #999;
}
.tab__item--renovation {
  border-top-color: #4c4c4c;
}
.tab__badge {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -1px 0;
  border-radius: 50%;
  background-color: #cc504b;
  color: #fff;
  font-size: 8px;
  line-height: 18px;
  text-align: center;
  vertical-align: 2px;
}

.list-facility {
  display: flex;
  flex-wrap: wrap;
}
.list-facility__item {
  position: relative;
  width: 291px;
  margin: 0 20px 20px 0;
  padding: 25px 16px 10px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}
.list-facility__item img {
  display: block;
  width: 260px;
  height: 194px;
  margin: 0 auto 20px;
  object-fit: cover;
}
.list-facility__tag {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 70px;
  padding: 6px 0 6px 7px;
  background: #72645d;
  color: #fff;
}
.list-facility__tag::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-width: 30px 10px 0 0;
  border-style: solid;
  border-color: #72645d transparent transparent;
}
.list-facility__button {
  display: flex;
}
.list-facility--col .list-facility__item {
  width: 160px;
}
.list-facility--col .list-facility__item img {
  width: 160px;
  height: 120px;
  margin-bottom: 10px;
}
.list-facility--col .button:first-child {
  margin-right: 5px;
}
.list-facility--col .button--sub--s {
  height: 30px;
  line-height: 30px;
}
.list-facility--col .button--sub--s--ng {
    height: 30px;
    line-height: 30px;
}
.list-facility__name {
  display: -webkit-box;
  height: 30px;
  margin-bottom: 10px;
  overflow: hidden;
  font-size: 14px;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.list-facility__favorite {
  position: absolute;
  top: 10px;
  left: 0;
  width: 50px;
  height: 40px;
  overflow: hidden;
  border-radius: 0 6px 6px 0;
  background: #fff;
  text-indent: -1000px;
  white-space: nowrap;
  cursor: pointer;
}
.list-facility__favorite::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 16px;
  width: 22px;
  height: 22px;
  background: url("../../images/ico_star.svg") no-repeat bottom left;
  background-size: 22px;
}
.list-facility__favorite.is-active::before {
  content: "";
  background: url("../../images/ico_star-w.svg") no-repeat bottom left;
}

.list-facility__remove {
    position: absolute;
    top: 0px;
    right: 0px;
    left: initial;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 0 6px 6px 6px;
    /*background: #fff;*/
    text-indent: -1000px;
    white-space: nowrap;
    cursor: pointer;
}

.list-facility__remove::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 16px;
    width: 22px;
    height: 22px;
    background: url("../../images/ico_remove.png") no-repeat bottom left;
    background-size: 22px;
}

.list-table {
  margin-bottom: 20px;
}
.list-table__head {
  padding: 6px;
  background: #f4f4f4;
  color: #72645d;
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
}
.list-table__desc {
  max-width: 190px;
  padding-left: 10px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-floor {
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}
.list-floor:not(:last-child) {
  margin-bottom: 30px;
}
.list-floor__floor {
  display: none;
  position: relative;
  flex-wrap: wrap;
  width: 100%;
}
.list-floor__floor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  border-top: 1px solid #dcdcdc;
}
.list-floor__floor.is-active {
  display: flex !important;
}
.list-floor > .list-floor__floor {
  display: flex;
  border-top: 1px solid #dcdcdc;
}
.list-floor > .list-floor__floor::before {
  border-top: 0;
}
.list-floor__box {
  position: relative;
  box-sizing: border-box;
  width: 50%;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}
.list-floor__floor:not(.js-floor-panel) > .list-floor__box:first-child {
  border-top: 0;
}
.list-floor__box:hover {
  background: #ddd3cd;
}
.list-floor__floor-name {
  margin-right: 95px;
  /*margin-right: 125px;*/
  padding: 15px 0 15px 45px;
  transition: .2s;
}
.list-floor__floor-name2 {
    margin-right: 95px;
    /*margin-right: 125px;*/
    padding: 15px 0 15px 45px;
    transition: .2s;
}
.list-floor__floor-name::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 15px;
  width: 13px;
  height: 13px;
  transition: .2s;
  background: url("../../images/ico_floor_arrow.svg") no-repeat center center/cover;
}
.list-floor__floor-name2::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 15px;
    width: 13px;
    height: 13px;
    transition: .2s;
    background: url("../../images/ico_floor_arrow.svg") no-repeat center center/cover;
}
.is-opened .list-floor__floor-name::before {
  transform: rotate(90deg);
}
.is-opened .list-floor__floor-name2::before {
    transform: rotate(90deg);
}
.list-floor__floor-name--01:first-child {
  border-top: 0;
}
.list-floor__floor-name2--01:first-child {
  border-top: 0;
}
.list-floor__floor-name--02 {
  padding-left: 60px;
}
.list-floor__floor-name2--02 {
    padding-left: 60px;
}
.list-floor__floor-name--02::before {
  left: 30px;
}
.list-floor__floor-name2--02::before {
    left: 30px;
}
.list-floor__floor-name--03 {
  margin-left: 30px;
  padding-left: 60px;
}
.list-floor__floor-name2--03 {
    margin-left: 30px;
    padding-left: 60px;
}
.list-floor__floor-name--03::before {
  left: 60px;
}
.list-floor__floor-name2--03::before {
    left: 60px;
}
.list-floor__floor-name--04 {
  margin-left: 60px;
  padding-left: 60px;
}
.list-floor__floor-name2--04 {
    margin-left: 60px;
    padding-left: 60px;
}
.list-floor__floor-name--04::before {
  left: 90px;
}
.list-floor__floor-name2--04::before {
    left: 90px;
}
.list-floor__floor-name--05 {
  margin-left: 90px;
  padding-left: 60px;
}
.list-floor__floor-name2--05 {
    margin-left: 90px;
    padding-left: 60px;
}
.list-floor__floor-name--05::before {
  left: 120px;
}
.list-floor__floor-name2--05::before {
    left: 120px;
}
.list-floor__floor-name--06 {
  margin-left: 120px;
  padding-left: 60px;
}
.list-floor__floor-name2--06 {
    margin-left: 120px;
    padding-left: 60px;
}
.list-floor__floor-name--06::before {
  left: 150px;
}
.list-floor__floor-name2--06::before {
    left: 150px;
}
form .list-floor__floor-name {
  padding-left: 30px;
}
form .list-floor__floor-name::before {
  display: none;
}
form .list-floor__floor-name--01 {
  padding-left: 15px;
}
.list-floor__room {
  display: none;
  box-sizing: border-box;
  width: 50%;
}

.list-floor-header {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #f3f3f3;
  font-weight: bold;
  text-align: center;
  z-index: 10;
}
.list-floor .list-floor-header {
  display: flex;
}
@media all and (-ms-high-contrast: none) {
  .list-floor-header {
    /* IE11 */
  }
  .list-floor-header *::-ms-backdrop, .list-floor .list-floor-header {
    display: none;
  }
  .list-floor-header *::-ms-backdrop, .list-floor-header {
    display: flex;
  }
}
.list-floor-header__item {
  box-sizing: border-box;
  width: 50%;
  padding: 15px;
}
.list-floor-header__item:first-child {
  border-right: 1px solid #dcdcdc;
}

.list-floor-control {
  display: flex;
  position: absolute;
  top: 15px;
  right: 15px;
  align-items: center;
  justify-content: space-between;
  width: 65px;
  /*width: 95px;*/
}
.list-floor-control__up {
  width: 15px;
  height: 15px;
}
.list-floor-control__up.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.list-floor-control__down {
  width: 15px;
  height: 15px;
}
.list-floor-control__down.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.list-floor-control__edit {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.list-floor-control img {
  width: 100%;
}

.list-room-control {
    display: flex;
    position: absolute;
    top: 15px;
    right: 15px;
    align-items: center;
    justify-content: space-between;
    width: 65px;
}
.list-room__item {
  position: relative;
  padding: 15px;
  transition: .2s;
  border-bottom: 1px solid #dcdcdc;
}
.list-room__item:last-child {
  border-bottom: 0;
}
.list-room__item:hover {
  background: #ddd3cd;
}
.list-room__edit {
 display: block;
 /*position: absolute;*/
 top: 15px;
 right: 15px;
 width: 20px;
 height: 20px;
 margin-left: 10px;
}

.list-edit-button {
  display: flex;
  justify-content: space-around;
}
.list-edit-button__item {
  width: 26%;
}
.list-edit-button__item:last-child {
  width: 15%;
}
.list-edit-button .button,
.list-edit-button .button--sub {
  width: 100%;
}

.list-floor-select {
  max-height: 300px;
  margin-bottom: 30px;
  overflow: auto;
  border-bottom: 1px solid #dcdcdc;
  position:relative;
}
.list-floor-select__floor {
  display: none;
  position: relative;
}
.list-floor-select > .list-floor-select__floor {
  display: block;
}
.list-floor-select__floor-name {
  display: block;
  position: relative;
  padding: 15px 40px 15px 45px;
  border-top: 1px solid #dcdcdc;
}
.list-floor-select__floor-name--01 {
  margin-left: 30px;
}
.list-floor-select__floor-name--02 {
  margin-left: 60px;
}
.list-floor-select__floor-name--03 {
  margin-left: 90px;
}
.list-floor-select__floor-name--04 {
  margin-left: 120px;
}
.list-floor-select__floor-name--05 {
  margin-left: 150px;
}
.list-floor-select__floor-name--06 {
  margin-left: 180px;
}
.list-floor-select__floor-name::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  background: #dcdcdc;
  box-shadow: 1px 1px 2px -1px #000 inset;
  cursor: pointer;
}
.list-floor-select__floor-name::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 21px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #fff;
}
.list-floor-select__floor-name input {
  position: absolute;
  opacity: 0;
}
.list-floor-select__floor-name.is-checked::before {
  background: #72645d;
}
.list-floor-select__icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border: 10px solid transparent;
  cursor: pointer;
}
.list-floor-select__icon::before, .list-floor-select__icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  margin-top: -1px;
  background: #707070;
}
.list-floor-select__icon::after {
  transform: rotate(90deg);
  transition: .2s;
}
.list-floor-select__icon.is-opened::after {
  transform: rotate(0);
}

.file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 400px;
  margin-left: auto;
  padding: 40px 30px;
  border: 1px dashed #a7a7a7;
  border-radius: 4px;
  background: #f3f3f3;
}
@media print, screen and (max-width: 768px) {
  .file-upload {
    display: none;
  }
}
.file-upload__text {
  margin: 0;
  font-size: 16px;
  text-align: center;
}

.file-list {
  width: 100%;
}
.file-list__link {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 10px 15px;
}
.file-list__link:hover {
  opacity: 1;
}
.file-list__list {
  position: relative;
  margin-right: 20px;
  border-bottom: 1px solid #dcdcdc;
  cursor: pointer;
}
.file-list__list:hover {
  background: #ddd3cd;
}
.file-list__list:hover .file-list__button {
  opacity: 1;
}
.file-list__list .input-check {
  position: absolute;
  top: 35%;
  left: 0;
}
.file-list__item {
  height: 460px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.file-list__icon img {
  width: 25px;
  height: 25px;
}
.file-list__title {
  width: 85%;
  padding: 5px 0 5px 10px;
  color: #222;
}
.file-list__text {
  width: 85%;
  padding-top: 5px;
  color: #707070;
}
.file-list__button {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 40px;
  height: 30px;
  transform: translateY(-50%);
  border: 1px solid #999;
  border-radius: 6px;
  opacity: 0;
  background: #fff;
  color: #999;
  font-size: 30px;
  text-align: center;
}

.file-menu {
  display: none;
  transition: .2s;
}
.file-menu.is-opened {
  display: block;
}
.file-menu__item {
  position: absolute;
  top: 117%;
  right: 15px;
  width: 110px;
  margin: -30px 0 0;
  padding: 10px;
  overflow-y: auto;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 10px 5px rgba(153, 153, 153, 0.1);
  font-size: 13px;
  white-space: normal;
  z-index: 1;
}
.file-menu__list {
  padding: 5px 0;
}
.file-menu__link {
  color: #222;
  text-decoration: underline;
}
.file-menu__link:hover {
  text-decoration: none;
}

.checkbox {
  margin: 20px 0 60px;
}
.checkbox__list {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
}
.checkbox__item {
  display: flex;
  align-items: baseline;
  width: calc(50% - 20px);
  margin-bottom: 25px;
  transition: .3s;
  opacity: 1;
}
.checkbox__item .input-check {
  width: 280px;
  padding: 0 25px 0 50px;
  cursor: pointer;
}
.checkbox__item .input-check__text {
  font-size: 14px;
}
.checkbox__item.is-hidden {
  height: 0;
  margin: 0;
  opacity: 0;
}
.checkbox__item:nth-child(odd) {
  margin-right: 40px;
}
.checkbox__button {
  margin-top: 15px;
  border-top: 1px solid #dcdcdc;
}
.checkbox__button .check-btn {
  position: relative;
  width: 260px;
  height: 50px;
  margin: -1px auto 0;
  padding-left: 40px;
  border: 1px solid #dcdcdc;
  border-radius: 0 0 4px 4px;
  border-color: #ddd3cd #dcdcdc #dcdcdc;
  background: #ddd3cd;
  color: #72645d;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.checkbox__button .check-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 80px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url("../../images/ico_plus.png") no-repeat left bottom;
  background-size: 20px;
}

.modal {
  position: relative;
  margin: 0 auto;
  padding: 30px 40px;
  border-radius: 8px;
  background: #fff;
}
.modal__heading {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: bold;
}
.modal__txt {
  margin: 0 0 30px;
  font-size: 16px;
  text-align: left;
}
.modal__message {
  margin: 0 0 30px;
  font-size: 16px;
  text-align: center;
}

.modal-box {
  font-size: 14px;
}
.modal-box__heading {
  padding-bottom: 15px;
  border-bottom: 1px dotted #dcdcdc;
  color: #707070;
}
.modal-box__tag {
  display: inline-block;
  margin-left: 15px;
  padding: 8px 15px;
  background: #cc504b;
  color: #fff;
  font-size: 12px;
}
.modal-box__tagN {
    display: inline-block;
    margin-left: 15px;
    padding: 8px 15px;
    background: #72645d;
    color: #fff;
    font-size: 12px;
}
.modal-box__txt {
  padding-top: 15px;
  line-height: 1.4;
}
.modal-box__list {
  padding: 15px 20px 0;
}
.modal-box__item {
  padding-bottom: 10px;
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
  z-index: 100;
}

#cboxContent,
#cboxLoadedContent,
#cboxLoadingOverlay {
  background: #fff;
}

#cboxContent {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

#cboxOverlay {
  background: #000;
  opacity: 0.7;
}

#cboxClose {
  top: 17px;
  right: 17px;
}
#cboxClose, #cboxClose:hover, #cboxClose:active {
  background: url("../../images/ico_close.png") no-repeat;
  background-size: 20px auto;
}
#cboxClose:hover {
  opacity: .8;
}

.ui-widget {
  font-family: "Noto Sans JP","メイリオ","Meiryo",sans-serif;
}

.ui-widget-content {
  width: 245px;
  margin-left: -1px;
  border: 1px solid #dcdcdc;
  font-size: 15px;
}

.ui-datepicker-header {
  border: 1px solid #72645d;
  background: #72645d url("../images/ui-bg_gloss-wave_55_5c9ccc_500x100.png") repeat-x;
  color: #72645d;
  font-weight: normal;
}

.ui-datepicker .ui-datepicker-title {
  display: flex;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  color: #72645d;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #d3d3d3;
}

.ui-datepicker th {
  color: #222;
  font-weight: normal;
}

.ui-icon.ui-icon-circle-triangle-w,
.ui-icon.ui-icon-circle-triangle-e {
  width: 100%;
  height: 100%;
}

.ui-icon.ui-icon-circle-triangle-w {
  background: url("../../images/ico_prev.svg") no-repeat left top;
  background-size: 20px;
}

.ui-icon.ui-icon-circle-triangle-e {
  background: url("../../images/ico_next.svg") no-repeat left top;
  background-size: 20px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 1px;
  right: 4px;
  border: hidden;
  background: none;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
  left: 1px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: #f3f3f3 url("images/ui-bg_glass_85_dfeffc_1x400.png") repeat-x;
  font-weight: normal;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border: 1px solid #72645d;
  background: #72645d;
  color: #fff;
}

a:not(.button):hover {
  text-decoration: none;
}

.ui-datepicker-year, .ui-datepicker-month {
  border-color: #fff;
}

.footer {
  width: 100%;
  height: 40px;
  background: #72645d;
  color: #fff;
  font-size: 13px;
  line-height: 40px;
  text-align: center;
}

.drag-and-drop-area {
    color: #ccc;
    height: 200px;
    margin: 30px 0 20px;
    border-style: dashed;
    border-width: 2px;
    line-height: 200px;
    text-align: center;
    cursor: pointer;
}

.drag-and-drop-area-over {
    border-color: #0000FF;
}

    .drag-and-drop-area-over span {
        opacity: 0.2;
    }

.drag-and-drop-area-out {
    border-color: #ccc;
}

    .drag-and-drop-area-out span {
        opacity: 1;
    }

.floor_view {
    opacity: 1;
    pointer-events: auto;
}

.floor_view.is-none {
    display: none;
}

.floor_view.is-show {
    opacity: 1;
    pointer-events: auto;
}

.keyplan_view {
    opacity: 0;
    pointer-events: none;
}

.keyplan_view.is-none {
    display: none;
}

.keyplan_view.is-show {
    opacity: 1;
    pointer-events: auto;
}

.add_view {
    opacity: 0;
    pointer-events: none;
}

.add_view.is-none {
    display: none;
}

.add_view.is-show {
    opacity: 1;
    pointer-events: auto;
}

.msg-text {
    font-size: small;
    color: orange;
    text-align: left;
}

.box-pick-file-list {
    margin:10px;
}

.box-pick-file-list-li {
    line-height:3;
}

.is-none {
    display:none;
}

.be-logo {
    display: none;
}

.box-flash {
    height: 58px;
    background: #3e3835;
    color: #fff;
    line-height: 58px;
    text-align: center;
}

label > .input_view_hide {
    display: none;
}

.table-info__sameflg {
    width: 150px;
    text-align: center;
}

.form__question {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    padding: 6px 9px;
    border-radius: 20px;
    background: #cc504b;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-sizing: border-box;
    top: 25%;
    right: 15px;
}

.form__tip {
    display: none;
    position: absolute;
    top: -57px;
    left: -72px;
    width: 150px;
    padding: 10px;
    border: 2px solid #f3f3f3;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px 5px rgba(243, 243, 243, 0.1);
    color: #222;
    font-size: 12px;
    font-weight: bold;
}

.form__tip::after {
    position: absolute;
    top: 46px;
    left: 73px;
    width: 0;
    height: 0;
    border-top: 6px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    content: "";
}

.addLink {
    background: #dcdcdc;
    margin: 5px;
}

.w-200 {
    width:200px!important
}

.w-80 {
    width:80px!important
}

.w-90 {
    width: 90px !important
}

.ml-10 {
    margin-left: 10px !important
}

.room-sort-outer-wrap {
    display: inline-block;
    width: calc(100% - 520px);
    position: relative;
}
.room-sort-outer {
    width: 180px;
    margin-left: auto;
    margin-right: 10px;
}

li.extra-box{    
    max-width: calc(100% - 740px);
}
    li.extra-box select {
        max-width: 100%;
        padding: 12px 15px 13px;
    }
.box-ag-tr {
    font-size: 12px;
}

.side-menu-no_lobby_id{
    display: none;
}


.auth_cls_ddl_div {
    width: 170px;
    display: inline-block;
    height: initial;
}

.box-ag-div .select {
    width: 145px;
    height: 80px;
    margin-right: 10px;
}


#Btn_Facility_Comment_DL {
    width: 230px !important;
}

#Btn_ALL_Comment_DL {
    width: 230px !important;
}


/* UI改修 変更ボタン共通設定 */
.pd-btn {
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    background: transparent !important;
    border-radius: 10px !important;
    border: solid 1px #333 !important;
    outline: none;
    /*アニメーションの指定*/
    transition: all 0.2s ease;
    padding: 0 !important;
    font-size: 16px;
    font-weight: bold;
}

    /*hoverをした後のボタンの形状*/
    .pd-btn:hover {
        border-color: transparent !important;
    }

    /*ボタンの中のテキスト*/
    .pd-btn span {
        position: relative;
        z-index: 2; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        /*テキストの形状*/
        display: block;
        padding: 10px 20px;
        background: #fff;
        border-radius: 10px;
        color: #333;
        /*アニメーションの指定*/
        transition: all 0.3s ease;
    }

/*== 下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushdown:before {
    content: "";
    /*絶対配置で影の位置を決める*/
    position: absolute;
    z-index: -1;
    top: 4px;
    left: 0;
    /*影の形状*/
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #333;
}

/*hoverの際にY軸に4pxずらす*/
.pushdown:hover span {
    background-color: #333;
    color: #fff;
    transform: translateY(4px);
}

.dl_icon span, .impt_icon span, .expt_icon span, .trash_icon span, .qr_icon span {
    padding: 10px 20px 10px 35px !important;
}

    .dl_icon span::before, .impt_icon span::before, .expt_icon span::before,
    .trash_icon span::before, .qr_icon span::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
        width: 24px;
        height: 24px;
        transform: translateY(-50%);
    }

.dl_icon span::before {
    background: url(../../images/dl_icon_black.svg) no-repeat bottom left;
    background-size: 24px;
}

.dl_icon:hover span::before {
    background: url(../../images/dl_icon_white.svg) no-repeat bottom left;
    background-size: 24px;
}

.impt_icon span::before {
    background: url(../../images/btn_import_icon.svg) no-repeat bottom left;
    background-size: 24px;
}

.impt_icon:hover span::before {
    background: url(../../images/btn_import_icon_w.svg) no-repeat bottom left;
    background-size: 24px;
}

.expt_icon span::before {
    background: url(../../images/btn_export_icon.svg) no-repeat bottom left;
    background-size: 24px;
}

.expt_icon:hover span::before {
    background: url(../../images/btn_export_icon_w.svg) no-repeat bottom left;
    background-size: 24px;
}

.trash_icon span::before {
    background: url(../../images/btn_trash_icon.svg) no-repeat bottom left;
    background-size: 24px;
}

.trash_icon:hover span::before {
    background: url(../../images/btn_trash_icon_w.svg) no-repeat bottom left;
    background-size: 24px;
}

.qr_icon span::before {
    background: url(../../images/btn_qr_icon.svg) no-repeat bottom left;
    background-size: 24px;
}

.qr_icon:hover span::before {
    background: url(../../images/btn_qr_icon_w.svg) no-repeat bottom left;
    background-size: 24px;
}

.csv_icon span {
    padding-left: 35px !important;
}

    .csv_icon span::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0px;
        width: 32px;
        height: 40px;
        transform: translateY(-50%);
        background: url(../../images/btn_csv_icon.svg) no-repeat bottom left;
        background-size: 30px;
    }

.toast-wrap {
    position: fixed;
    bottom: 0.5rem;
    right: 0.5rem;
    z-index: calc(infinity);
}

.toast {
    background-color: #ffa8a8;
    display: block;
    padding: 5px;
    font-size: small;
    border-radius: 5px;
    margin: 0.3rem 0 0.3rem 0;
}

    .toast p {
        margin: 10px;
    }

.research-btn {
    border-style: none !important;
    border-color: inherit !important;
    border-width: 0 !important;
    display: block !important;
    background: #72645d !important;
    color: #fff !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    transition: .2s !important;
    cursor: pointer !important;
    box-shadow: initial !important;
    padding: 0 !important;
}
    .research-btn:hover {
        opacity: .8;
    }
    /*# sourceMappingURL=style.css.map */
