/*
ADMIN STYLE.css
*/

/* RESET */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

*{
	box-sizing: border-box;
}

/* COMMON */
html{
  height: 100%;
  overflow: hidden;
}
body{
    line-height: 1.4;
    letter-spacing: 1.4px;

    overflow: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* STRUCTURE */
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #353535;
}
.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}
#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 650px;
  position: relative;
  padding: 0px;
  text-align: center;
  border: 0;
}
#formContent input {
  margin: 1%;
  max-width: 450px;
  margin: 1% auto;
  display: block;
}
#formContent input.btn {
  width: 200px;
}

/* TABS */

h2.inactive {
  color: #cccccc;
}
h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}
.underlineHover:hover {
  color: #0d0d0d;
}
.underlineHover:hover:after{
  width: 100%;
}

/* OTHERS */

*:focus {
    outline: none;
}

#frame {
  margin-top: 100px;
  width: 100%;
  min-height: 100%;
  background: #f6f6f6;
}
.wrap{
    /*max-width: 1200px;*/
    padding:0 20px;
}
.container{
  margin-left: 0;
}
.ps_re{
    position: relative;
}
.ps_ab{
    position: absolute;
}
.tac{
    text-align: center;
}
.tar{
    text-align: right;
}

/* HEADER */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8em;
  height: 100px;
  background: #fff;
  z-index: 99;
  color: #fff;
}
#header h1 {
  font-size: 32px;
  font-weight: bold;
  float: left;
}
#header div.userdata{
    float: right;
}
#header div.userdata p {
  margin: 6px;
  display: inline-block;
  color: #0062AE;
}
#header div.userdata p svg{
    margin-right: 6px;
}
#sidebar_switch{
    cursor: pointer;
}
#sidebar_switch p {
  position: absolute;
  font-size: 12px;
  bottom: 15px;
  left: 40px;
}
#sidebar_switch::after {
  content: '\f191';
  font-family: 'Font Awesome 5 Free';
  font-size: 17px;
  font-weight: 900;
  position: absolute;
  bottom: 10px;
  left: 16px;
}
#sidebar_switch.closed:after{
    content: '\f152';
}

/* FOOTER */
#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  background: #353535;
  display: none;
}

/* SIDE BAR */
#sidebar {
    position: fixed;
    overflow-y: scroll;
    width: 300px;
    height: calc(100% - 100px);
    background-color: #0062AE;
    order: 1;
    font-weight: bold;
    min-height: calc( 100vh - 154px );
}
ul.sidebar_menu li{
    position: relative;
    border-top: 1px solid #3289e6;
    display: block;
}
ul.sidebar_menu li ul.sidebar_menu-inner li:last-child {
  border-bottom: 0;
}
ul.sidebar_menu li ul.sidebar_menu-inner li {
  font-size: 14px;
  font-weight: 500;
  border-top: 0;
  background: #eee;
}
ul.sidebar_menu li ul.sidebar_menu-inner li p {
  padding-left: 2em;
}
ul.sidebar_menu li:last-child{
    border-bottom: 1px solid #3289e6;
}
ul.sidebar_menu li.sidebar_toggle::after {
  content: '\f055';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block;
  position: absolute;
  right: 10px;
  top: 17px;
  color: #28a745;
}
ul.sidebar_menu li:hover > a > p {
    background-color: transparent;
}
ul.sidebar_menu li.sidebar_toggle.opened:after{
    content: '\f056';
}
ul.sidebar_menu li p {
  padding: 1.5em 2em;
  color: #fff;
  font-size: 14px;
}
#sidebar .chat-btn {
  background: #fff;
  color: #0062ae;
  font-size: 13px;
  font-weight: bold;
  top: 14px;
}
#siderbar .btn .badge {
  position: relative;
  top: 0px;
  color: #0062ae;
  font-size: 13px;
}
ul.sidebar_menu li ul.sidebar_menu-inner{
    display: none;
    background: #FFF;
}
ul.sidebar_menu li label{
    margin-bottom: 5px;
}
ul.sidebar_menu li input[type="button"] {
  margin-top: 5px;
  display: block;
  margin-left: auto;
  width: 100%;
  font-size: 13px;
  padding: 2px;
  background: #fff;
  font-weight: bold;
  color: #0062ae;
  margin-top: 10px;
}
ul.sidebar_menu a {
  color: #fff;
  text-decoration: none;
}
ul.sidebar_menu li ul li a {
  display: block;
  padding: 0.5em 3em;
  font-size: 13px;
}
ul.sidebar_menu li ul li {
  border: 0;
  border-bottom: 0 !important;
}
ul.sidebar_menu li ul li:last-child {
  padding-bottom: 1em;
}
/* CONTENT */
.list-group-item-success {
  color: #0056b3;
  background-color: #e9f3ff;
}
#content {
  margin-left: 300px;
  width: calc( 100% - 300px );
  order: 2;
  padding: 2em;
}
#search_word {
  padding: 0.4em 1em;
  font-size: 12px;
}

.window {
  margin: 1em;
  padding: 7em 4em 4em;
  background: #fff;
}
.window h2 {
  width: 100%;
  color: #0062ae !important;
  padding: 1em 2em;
  top: 0;
  left: 0;
  font-weight: bold;
  background: transparent;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}
ul.pagination{
    margin: 0 1em;
	  flex-wrap: wrap;
}

/* FUNCTION */
img.form-control-file--thumbnail{
    max-width: 120px;
}
.form.container span{
    display: inline-block;
}
.form-check label{
  padding-right: 2em;
}

/* LOGIN */
div.fadeIn.first h1{
    padding: 2em 0;
}

/* common */
h2 {
  color: #0062AE;
}

.btn-primary {
  background-color: #0062AE;
  border-color: #0062AE;
}

.btn-outline-success {
  color: #0062AE;
  border-color: #0062AE;
}

.btn-outline-success:hover {
  background-color: #0062AE;
  color: #fff;
  border-color: #0062AE;
}

.task_head {
  display: flex;
  flex-wrap: wrap;
}

.task_head dt {
  width: 25%;
  color: #0062ae;
  font-size: 14px;
  text-align: center;
}

.task_content {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5em 0;
  border-bottom: 1px solid #ddd;
}

.task_content a {
  text-decoration: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.task_content dt {
  width: 25%;
  color: #3e3e3e;
  font-size: 14px;
  text-align: center;
  font-weight: normal;
}

.account-list dt {
  width: 20%;
}

.task_content.account-list dt a , .task_content.maker_list dt a, .dash_list.build03 .task_content.material_list a{
  display: inline-block;
  background: #0062ae;
  width: auto;
  color: #fff;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 12px;
}

.account_make {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
  align-items: center;
}

.account_make dt {
  width: 25%;
  color: #0062ae;
  font-size: 14px;
}

.account_make dd {
  width: 75%;
}

#account_name {
  width: 75%;
  min-width: 600px;
}

.account_make dd select {
  border: 1px solid #ddd;
  padding: 0 20px 0;
  font-size: 16px;
  color: #737373;
}

.entry_btn {
  text-align: center;
}

.entry_btn a {
  background: #0062ae;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 100px;
  display: inline-block;
  text-decoration: none;
}

.build_list dt {
  width: 12.5%;
}

.build_mark {
  font-weight: bold;
}

.build_mark.end_mark {
  color: #6e6b6b;
}

.build_mark.prog {
  color: #0062ae;
}


.task_content.build_list.end {
  background-color: #e3e3e3;
}


.name_search input {
  width: 160px;
  display: inline-block;
  font-size: 14px;
  padding: 2px 10px;
  margin-left: 10px;
}

.name_search {
  font-size: 14px;
  display: inline-block;
  margin-right: 20px;
}

.search_btn {
  display: inline-block;
}

.search_area {
  margin-bottom: 3em;
  text-align: right;
}

.search_btn a {
  font-weight: bold;
  color: #fff;
  background: #0062ae;
  padding: 4px 16px;
  font-size: 13px;
  border-radius: 2px;
}

.name_search select {
  border: 1px solid #ddd;
  border-radius: ;
  margin-left: 10px;
  color: #3e3e3e;
  padding: 0 10px;
}
.material_header {
  text-align: right;
}

.material_header {
  text-align: right;
  margin-bottom: 3em;
}

.material_header .flex a {
  display: inline-block;
  color: #3e3e3e;
  margin: 0 10px;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
}

.material_header .flex a.material_selected::after {
  display: block;
  content: "";
  width: 60px;
  background: #0062ae;
  height: 2px;
  margin-top: 10px;
}

.material_subheader .flex a {
  display: inline-block;
  font-size: 14px;
  margin-right: 30px;
  text-align: center;
  color: #3e3e3e;
  font-weight: 500;
  text-decoration: none;
}

.material_subheader {
  margin-bottom: 3em;
}

.material_subheader .flex a.material_selected {
  font-weight: bold;
  color: #0062ae;
}

.material_subheader .flex a.material_selected::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #0062ae;
  margin: 10px auto 0;
}

.material_header .flex a.material_selected {
  color: #0062ae;
  font-weight: bold;
}

.material_list dt {
  width: 14%;
}

.material_list dt img {
  width: 90%;
}

.task_content.material_list a {
  align-items: center;
}

.material_col7 dt {
  width: 12.5%;
}

.account_make.material_make dd {
  font-size: 14px;
}

.account_make.material_make dd span {
  display: inline-block;
  margin: 4px 20px 4px 0;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  margin-right: 8px;
}

.account_make.material_make dd select {
  margin-bottom: 10px;
  display: block;
}

#material_name, #material_maker, #material_number, #material_price {
  padding: 0 10px;
  width: 60%;
  max-width: 600px;
  display: inline-block;
}

.account_make.material_make dd a {
  text-decoration: none;
  background: #0062ae;
  color: #fff;
  font-weight: bold;
  padding: 6px 20px;
  margin-left: 10px;
  border-radius: 4px;
}

.account_make.material_make dd textarea {
  border: 1px solid #ddd;
  width: 60%;
  max-width: 600px;
  border-radius: 5px;
  padding: 10px;
  color: #3e3e3e;
  height: 160px;
}

.message_list dt.tenpu {
  width: 10% !important;
}

.mess_mark {
  font-weight: bold;
  max-width: 100px;
  margin: 0 auto;
}

.mess_mark.none {
  color: #cfc9c9;
}

.mess_mark.ap {
  color: #0062ae;
}

.mess_mark.stay {
  color: #008000;
}

.ap_day {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.task_head.message_list dt, .message_list dt {
  width: 22%;
}

.dash_list.build04 .flex {
  display: flex;
  flex-wrap: wrap;
}

.dash_list.build04 .flex .col_2 {
  width: 50%;
}

.floor {
  font-weight: bold;
  color: #0062ae;
  font-size: 1.5em;
}

.build_ymd_text {
  border: 1px solid #ddd;
  width: 100px;
  margin-right: 10px;
  padding: 0 10px;
  font-size: 14px;
}

.dash_list.build01 dd input {
  border: 1px solid #ddd;
  font-size: 14px;
}

h3 {
  font-size: 18px;
  color: #3e3e3e;
}

.build_title {
    margin: 0 0 50px;
    font-weight: bold;
    font-size: 1.5em;
}

.build_title h3 span {
    border-bottom: 3px solid #3289e6;
    font-weight: bold;
}

.build_document_content.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.allow {
    padding: 10px;
    font-weight: bold;
}

.col_4.build_document_box span {
    font-weight: bold;
    font-size: 14px;
}

.account_make.build_make .flex {
  display: flex;
  flex-wrap: wrap;
}

.account_make.build_make .flex_select_area {
  justify-content: space-between;
}

.account_make.build_make .col_2 {
    width: 48%;
}

.account_make.build_make .col_2 img {
  width: 100%;
  max-width: 100%;
}

.account_make.build_make .col_1{
    width: 100%;
}

.account_make.build_make .col_1 p{
    text-align: center;
    font-weight: bold;
    color: #0062ae;
    letter-spacing: 2px;
    text-align: center;
    font-size: 0.8em;
    margin-bottom: 20px;
}



.account_make.build_make .col_1 p span {
    font-weight: inherit;
    color: #000000;
}

dl.col_4.build_document_box {
  width: 23%;
  text-align: center;
  margin-bottom: 50px;
}

dl.col_4.build_document_box dt {
  font-size: 14px;
  margin-bottom: 10px;
}

dl.col_4.build_document_box dt::after {
  content: '';
  display: block;
  width: 56px;
  border-top: 2px solid #0062ae;
  margin: 6px auto 0;
}

dl.col_4.build_document_box a {
  display: block;
  max-width: 180px;
  margin: 0 auto;
  padding: 3px 10px;
  color: #fff;
  background-color: #3289e6;
  border-radius: 5px;
  border: solid 1px #e3e3e3;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

dl.col_4.build_document_box img {
    margin-bottom: 10px
}

.build01, .build02, .build03 {
  margin-bottom: 5em;
}

.build03 .material_list dt img {
    width: 60px;
}

}
.build_narrow span {
    margin-right: 20px;
}

.build_title h3 span {
  padding-bottom: 6px;
}

.account_make.build_make dd span {
  margin-right: 20px;
}

dl.col_4.build_document_box dt {
  padding-bottom: 10px;
}

.build_narrow span {
  font-size: 14px;
  margin-right: 30px;
}

.build_narrow {
  margin-bottom: 30px;
}

.build_new dt {
  width: 14.286%;
}

.dash_list.build03 .build_new dt {
    width: 12.286%;
}
.build_new {
  align-items: center;
}

dl.col_4.build_document_box a.ad_image {
  width: 85px;
  display: inline-block;
  margin-right: 5px;
  margin-top: 5px;
  font-size: 13px;
}

dl.col_4.build_document_box a.res_image {
  width: 85px;
  background: crimson;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  font-size: 13px;
}

dl.col_4.build_document_box a.res_image.res_last {
  margin-left: 0;
}

a.admin_box {
  border: 1px solid #0062ae;
  color: #0062ae;
  padding: 4px 10px;
  font-size: 13px;
  border: ;
  border-radius: 4px;
  margin-left: 10px;
  text-decoration: none;
}

a.admin_box:hover {
  border: 1px solid #0062ae;
  background: #0062ae;
  color: #fff;
}

.progress_list dt {
  width: 12.5%;
}

.progress_list {
  align-items: center;
}

.progress_list.light_list dt {
  width: 12.5%;
}

.progress_list.conf_list dt {
  width: 14.285%;
}

.task_content.material_list.tast_conf_list {
  align-items: center;
}

.task_content.material_list.tast_conf_list dt {
  width: 33.33%;
}

.material_list.tast_conf_list dt {
   width: 33.33%;
}


.task_content.material_list.progress_list a, .task_content.material_list.tast_conf_list a {
  display: inline-block;
  width: auto;
}

.task_content.material_list.progress_list img {
  width: 80%;
}

dt.first_bold {
  font-size: ;
  font-weight: bold;
  color: #0062ae;
}

.progress_flow p.text {
  font-size: 14px;
}

.nomber_box {
    margin-bottom: 30px;
}
.nomber_box span {
    background-color: #0062ae;
    padding: 10px 16px;
    border-radius: 100%;
    color: #fff;
    font-weight: bold;
}

.progress_flow {
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
}

.flow_content {
    width: 12.5%;
    text-align: center;
}


.progress_gage {
    display: block;
    width: 100%;
    background-color: #ddd;
    margin-bottom: 100px;
    border-radius: 50px;
}

.progress_gage_child {
    width: 58%;
    background-color: #0062ae;
    border-radius: 50px;
}

.progress_gage_child span {
    display: block;
    background-color: #fff;
    height: 20px;
    border-radius: 50px;
    padding: 10px;
    width: 10px;
    margin-left: auto;
    border: 1px solid #353535;
}

.progress_list_col9 dt {
  width: 11.111%;
}



.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  padding: 30px;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.modalContents h4 {
  color: #0062ae;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}

.modaal-content-container h4 {
    color: #0062ae;
    font-weight: bold;
    margin-bottom: 2em;
    text-align: center;
}

.modaal-content-container dl dt {
  width: 14.285%;
}
.modaal-content-container dl {
    display: flex;
    flex-wrap: wrap;
    /* margin-bottom: 31px; */
    max-width: 800px;
    margin: 0 auto 31px;
}

.flex.choice {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col_2.select .img img {
    width: 100%;
}
.col_2.select {
    width: 48%;
    position: relative;
}

.col_2.select input[type="radio"] {
   position: absolute;
   width: 100%;
   height: 100%;
   opacity: 0;
}

.col_2.select input[type="radio"]:checked + label {
    background-color: #0062ae;
    color: #fff;
    border-radius: 13px;
}

.col_2.select label {
    padding: 17px;
    margin-bottom: 30px;
}

.col_2.select label p.text_title {
    font-weight: bold;
}

/*chat*/

.chat_text_editer {
    border-top: 1px solid #ddd;
    padding: 10px 0 0;
    margin-top: 30px;
}

.chat_text_editer textarea {
    width: 100%;
    border: solid #fff;
}

.chat_area::-webkit-scrollbar{
  width: 5px;
}
.chat_area::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  border-radius: 10px;
}
.chat_area::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
  box-shadow: none;
}

.chat_area {
    height: 18vw;
    overflow: scroll;
}

.massage-day {
    text-align: center;
    font-weight: bold;
    color: #ddd;
}

.message .customer .pop, .message .own .pop {
    max-width: 300px;
}
.message .customer .pop .text_line, .message .own .pop .text_line {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 10px
}

.message .customer p span, .message .own p span {
    text-align: left;
}

.message .customer .pop {
    margin-right: auto;
}

.message .own .pop {

    margin-left: auto;
}

.message .customer .pop .text_line {
    background-color: #3289e6;
    color: #fff;
}

.message .own .pop .text_line {
    background-color: #aaaaaa;
    color: #fff;
}

.message .customer, .message .own {
    padding: 10px;
    position: relative;
}

.filelabel {
   color: #3289e6;     
}

input#filesend {
    display: none;
}

.doc {
    font-size: 1.2em;
    margin-right: 12px;
}

.m_flex {
  display: flex;
  flex-wrap: wrap;
}

a.line.allowbottom {
    display: block;
    width: 150px;
    padding: 15px;
    background-color: #e51718;
    text-align: center;
    border-radius: 10px;
    margin: 6px auto;
    box-shadow: 2px 2px #a70c0d;
    color: #fff;
    font-weight: bold;
}

.kakunin {
    text-align: center;
}

.chat_option {
   margin-right: 20px;
}

.kakunin .check_area {
    margin: 20px 0 30px;
}
.modaal-content-container 

.filelabel img {
   vertical-align: bottom;    
}
.filelabel:hover {
   cursor: pointer;
}
#filesend {
   display: none; 
}

input#filesend {
  display: none;
}


/*light editer*/
.light_editer_panel {
   display: none;
   padding: 20px;
}

.light_editer_panel.active {
  display: block;
}

.floor_tab {
  padding: 10px;
  background-color: #ffffff;
}

.floor_tab.active {
  background-color: #0062AE;
  color: #ffffff;
  font-weight: bold;
}

.dash_list.build03.light_editer_box .flex {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.light_editer {
  width: 80%;
}

.light_editer_tool {
  width: 20%;
  padding: 15px;
  background-color: #d8c7ad;
}


.light_editer_tool img {
  width: 100%;
}

/*after*/
.date_form {
  width: 300px;
}

/*build_conf*/
.checkbox-input{
  display: none;
}
.checkbox-parts {
    padding-left: 47px;
    position: relative;
    margin-right: 20px;
    font-size: 1.2em;
}
.checkbox-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: -3px;
    left: 0;
    width: 25px;
    height: 25px;
    border: 1px solid #999;
    border-radius: 4px;
}
.checkbox-input:checked + .checkbox-parts{
  color: #0062ae;
  font-weight: bold;
}

.checkbox-input:checked + .checkbox-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: -13px;
    left: 5px;
    width: 16px;
    height: 29px;
    transform: rotate(40deg);
    border-bottom: 5px solid #0062ae;
    border-right: 5px solid #0062ae;
}

.col-md-3 {
  margin-bottom: 2rem;
}

/* 以下ボタンスタイル */
button {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 2px;
  cursor: pointer;
}

.delete_btm {
  color: #fff !important;
  background: crimson !important;
}

.modalContents .entry_btn a {
  color: #fff !important;
}

.dash_list.build01 dd img {
  width: 100%;
}
