/**
 * カスタマイズCSS
 */

[v-cloak] {
  display: none;
}

/* ローディングアイコン */
.loading {
  position: fixed;
  width: 88px;
  height: 88px;
  top: 45%;
  left: 48%;
  z-index: 2;
}

.move {
  cursor: move;
}

.ws-pre-wrap {
  white-space: pre-wrap;
}

#toggle .toggle-area input[type="checkbox"] {
  display: none;
}

#toggle label {
  position: relative;
  padding-left: 60px;
  cursor: pointer;
}

#toggle label::before,
#toggle label::after {
  content: "";
  display: block;
  position: absolute;
  /* 位置調整 */
  top: 50%;
  left: 0px;
  /* 中央に揃える */
  transform: translateY(-65%);
  /* 枠線 */
  border: 1.4px solid rgba(0,0,0,.3);
  border-radius: 50%;
  /* アニメーションの変化時間 */
  transition: .2s;
}

#toggle label::before {
  /* 背景色 */
  background-color: rgba(0, 106, 182, 0.144);
  /* 枠線 */
  border: 1.4px solid rgba(0,0,0,.3);
  border-radius: 12px;
  /* サイズ調整 */
  height: 20px;
  width: 40px;
  /* 位置調整 */
  top: 50%;
  left: 5px;
}

#toggle label::after {
  /* 背景色 */
  background-color: #fff;
  /* 枠線 */
  border-radius: 50%;
  /* サイズ調整 */
  height: 23px;
  width: 23px;
  /* 位置調整 */
  top: 50%;
  left: 0px;
}

/* チェックありの場合 */
#toggle input:checked + label::before {
  /* 背景色 */
  background-color: rgb(0, 106, 182);
}

#toggle input:checked + label::after {
  /* トグルを右に移動させる */
  left: 26px;
}

#messageDetailRoot .remodal {
  padding-bottom: 70px;
}

#messageDetailRoot .remodal .remodal-title {
  background: rgb(0,143,187);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  padding: 15px 15px 20px;
  margin-bottom: 15px;
}

#messageDetailRoot .remodal .remodal-title .inner {
  margin-top: 10px;
}

#messageDetailRoot .remodal .remodal-title a {
  color: white;
  position: relative;
}

#messageDetailRoot .remodal .remodal-title a.prev {
  padding-left: 30px;
}

#messageDetailRoot .remodal .remodal-title a.next {
  padding-right: 30px;
}

#messageDetailRoot .remodal .remodal-title a::before {
  position: absolute;
  content: '';
  font-size: 1rem;
  width: 30px;
  height: 30px;
  border-top: solid 2px white;
  border-right: solid 2px white;
  position: absolute;
  top: 5px;
}

#messageDetailRoot .remodal .remodal-title a.prev::before {
  transform: rotate(-135deg);
  left: 10px;
}

#messageDetailRoot .remodal .remodal-title a.next::before {
  transform: rotate(45deg);
  right: 10px;
}

#messageDetailRoot .remodal .remodal-title .inner {
  display: flex;
  justify-content: space-between;
}

#messageDetailRoot .remodal .remodal-body {
  display: grid;
  grid-template-columns: repeat(7, calc(100% / 7));
  border: solid 1px #999;
  border-width: 0 1px 1px 0;
}

#messageDetailRoot .remodal .remodal-body .week {
  border: solid 1px #999;
  border-width: 1px 0 0 1px ;
  background: #ddd;
  padding: 5px 0 3px;
}

#messageDetailRoot .remodal .remodal-body .day {
  border: solid 1px #999;
  border-width: 1px 0 0 1px ;
  min-height: 50px;
  padding: 5px;
}

#messageDetailRoot .remodal .remodal-body .day.sat,
#messageDetailRoot .remodal .remodal-body .week.sat {
  background: #d3edfb;
}

#messageDetailRoot .remodal .remodal-body .day.sun,
#messageDetailRoot .remodal .remodal-body .week.sun {
  background: #e99fa3;
  color: white;
}

#messageDetailRoot .remodal-close {
  left: calc(50% - 17px);
  bottom: 15px;
  top: auto;
  background: rgb(0,143,187);
  background: linear-gradient(90deg, rgba(0,143,187,1) 0%, rgba(72,179,231,1) 50%, rgba(0,143,187,1) 100%);
  border-radius: 50%;
}

#messageDetailRoot .remodal-close:before {
  font-size: 33px;
  color: white;
}

#messageDetailRoot .remodal-update {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: white;
  background: rgb(0,143,187);
  background: linear-gradient(90deg, rgba(0,143,187,1) 0%, rgba(72,179,231,1) 50%, rgba(0,143,187,1) 100%);
  border-radius: 5px;
  padding: 4px 10px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

#messageDetailRoot .remodal-last-updated-at {
  position: absolute;
  bottom: 25px;
  left: 30px;
  font-size: 18px;
}

#messageDetailRoot .message-calendar-form-select {
  background-image: none;
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 0.8rem;
}

#messageDetailRoot .message-calendar-form-select-wrap select {
  position: relative;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#messageDetailRoot .message-calendar-form-select-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

#messageDetailRoot .message-calendar-form-select-wrap::after {
  position: absolute;
  right: 7px;
  content: '';
  pointer-events: none;
  border-bottom: solid 2px #666;
  border-right: solid 2px #666;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}

#messageDetailRoot .message-calendar-form-select-wrap select {
  appearance: none;
  min-width: 20px;
  height: 30px;
  padding: 3px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  cursor: pointer;
}

#messageDetailRoot .message-calendar-form-select-wrap + .message-calendar-form-select-wrap {
  margin-top: 5px;
}

#messageDetailRoot .today {
  background-color: #FFF67F;
  color: black;
  border-radius: 0;
  width: 100%;
  margin: 0;
  display: table-cell;
}

#messageDetailRoot .attachment {
  display: inline-block;
  margin-right: 0.5em;
}

#messageDetailRoot .facilityCalendarFocus {
  background-color: orange;
}

/* メッセージ詳細 添付ファイル削除アイコン(fontawesomeカスタマイズ) */
.fa-trash-alt:hover {
  opacity: .5;
}

@media screen and (max-width: 767px) {

  #messageDetailRoot .remodal-wrapper {
    padding: 0;
  }

  #messageDetailRoot .remodal {
    padding: 10px 10px 50px;
    font-size: 14px;
  }

  #messageDetailRoot .remodal .remodal-body .day {
    min-height: 40px;
  }

  #messageDetailRoot .remodal .remodal-title {
    padding: 10px 10px 15px;
    margin-bottom: 10px;
  }

  #messageDetailRoot .remodal .remodal-title a.prev {
    padding-left: 18px;
  }

  #messageDetailRoot .remodal .remodal-title a.next {
    padding-right: 20px;
  }

  #messageDetailRoot .remodal .remodal-title a::before {
    position: absolute;
    content: '';
    font-size: 1rem;
    width: 15px;
    height: 15px;
    border-top: solid 2px white;
    border-right: solid 2px white;
    position: absolute;
    top: 7px;
  }

  #messageDetailRoot .remodal .remodal-title a.prev::before {
    left: 5px;
  }

  #messageDetailRoot .remodal .remodal-title a.next::before {
    right: 5px;
  }

  #messageDetailRoot .remodal-close {
    width: 30px;
    height: 30px;
    bottom: 10px;
  }

  #messageDetailRoot .remodal-close::before {
    font-size: 26px;
    width: 30px;
    line-height: 30px;
  }

  #messageDetailRoot .calendar {
    width: 542px;
    margin-bottom: 0;
  }

  #messageDetailRoot .calendar.none {
    width: 100%;
    margin-bottom: 15px;
  }

  #messageDetailRoot .calendar .calendar-text {
    font-size: 16px;
    padding: 4px 0;
    width: 100%;
  }

  #messageDetailRoot .calendar button {
    font-size: 16px;
    padding: 4px 0;
    width: 80px;
  }

  #messageDetailRoot .attachment {
    display: inline-block;
    margin-right: 0.5em;
  }
}
/* media screen and (max-width: 767px) END */

/* ソートカーソル */
.sort {
  cursor: pointer;
}
.sort:hover{
  background-color:lightgray;
}

/****************/
/* 税込価格表示 */
/****************/
#facility .media .body .price .custom_price-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 420px;
}
/* #facility .media .body .price .custom_price-wrap p {
  width: 100%;
} */

/*--- 平日 ---*/
/* 平日 税抜き*/
#facility .media .body .custom_week {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
  padding-left: 30px;
}
#facility .media .body .custom_week span {
  color: white;
  font-size: 10px;
  width: 26px;
  height: 26px;
  background: #211715;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  font-weight: normal;
}

#facility .media .body .custom_week::after {
  content: '円';
  font-size: 14px;
}

#facility .media .body .custom_week.inquiry {
  font-size: 16px;
}
#facility .media .body .custom_week.inquiry::after {
  content: '';
}

/* 平日 税込み */
#facility .media .body .tax_week {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
}
#facility .media .body .tax_week::before {
  content: '（税込';
  font-size: 14px;
}

#facility .media .body .tax_week::after {
  content: '円）';
  font-size: 14px;
}

#facility .media .body .tax_week.inquiry::before {
  content: '';
}
#facility .media .body .tax_week.inquiry::after {
  content: '';
}

/*--- 土曜日 ---*/
/* 土曜日税抜き */
#facility .media .body .custom_saturday {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
  padding-left: 30px;
  color: #5073b7;
}
#facility .media .body .custom_saturday span {
  color: white;
  font-size: 10px;
  width: 26px;
  height: 26px;
  background: #5073b7;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  font-weight: normal;
}

#facility .media .body .custom_saturday::after {
  content: '円';
  font-size: 14px;
}

#facility .media .body .custom_saturday.inquiry {
  font-size: 16px;
}
#facility .media .body .custom_saturday.inquiry::after {
  content: '';
}

/* 土曜日税込み */
#facility .media .body .tax_saturday {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
  color: #5073b7;
}
#facility .media .body .tax_saturday::before {
  content: '（税込';
  font-size: 14px;
}

#facility .media .body .tax_saturday::after {
  content: '円）';
  font-size: 14px;
}

#facility .media .body .tax_saturday.inquiry::before {
  content: '';
}
#facility .media .body .tax_saturday.inquiry::after {
  content: '';
}

/*--- 日曜日 ---*/
/* 日曜日税抜き */
#facility .media .body .custom_sunday {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
  padding-left: 30px;
  color: #ca151e;
}
#facility .media .body .custom_sunday span {
  color: white;
  font-size: 10px;
  width: 26px;
  height: 26px;
  background: #ca151e;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  font-weight: normal;
}

#facility .media .body .custom_sunday::after {
  content: '円';
  font-size: 14px;
}

#facility .media .body .custom_sunday.inquiry {
  font-size: 16px;
}
#facility .media .body .custom_sunday.inquiry::after {
  content: '';
}

/* 日曜日税込み */
#facility .media .body .tax_sunday {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
  color: #ca151e;
}
#facility .media .body .tax_sunday::before {
  content: '（税込';
  font-size: 14px;
}

#facility .media .body .tax_sunday::after {
  content: '円）';
  font-size: 14px;
}

#facility .media .body .tax_sunday.inquiry::before {
  content: '';
}
#facility .media .body .tax_sunday.inquiry::after {
  content: '';
}

/*--- 特別日 ---*/
/* 特別日税抜き */
#facility .media .body .custom_special {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
  padding-left: 30px;
  color: #9E0D82;
}
#facility .media .body .custom_special span {
  color: white;
  font-size: 10px;
  width: 26px;
  height: 26px;
  background: #9E0D82;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  font-weight: normal;
}

#facility .media .body .custom_special::after {
  content: '円';
  font-size: 14px;
}


/* 特別税込み */
#facility .media .body .tax_special {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
  color: #9E0D82;
}
#facility .media .body .tax_special::before {
  content: '（税込';
  font-size: 14px;
}

#facility .media .body .tax_special::after {
  content: '円）';
  font-size: 14px;
}


/**
 * バナー
 */
#banner .card-text {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#banner .img-link {
  cursor: pointer;
}


/************************************/
/* セレクトボックス(by common2.css) */
/************************************/

select {
  -webkit-appearance: none;
  appearance: none;
}

/* 幅指定無し(selectbox内の文字数に合わせる) */
.selectbox_no_width_specified {
  display: block;
  position: relative;
  border: solid 1px #999;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 0 4px rgba(35,24,21,.4);
  padding: 2px 12px 2px 4px;
  background: white;
}

.selectbox_no_width_specified.lg {
  width: 635px;
}

.selectbox_no_width_specified::before {
  position: absolute;
  top: 9px;
  right: 10px;
  content: "";
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-top: solid 2px #999;
  border-right: solid 2px #999;
  transform: rotate(135deg);
}

.selectbox_no_width_specified select {
  appearance: none;
  width: 100%;
  padding: 6px;
  border: none;
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
}

.selectbox_no_width_specified select.is-empty {
  color: #333;
}

.selectbox_no_width_specified select option {
  background: white;
  color: #333;
}

/* 幅指定100px指定(主に数字や文字が1～2文字の箇所に使用する) */
.selectbox_width_small {
  display: block;
  position: relative;
  border: solid 1px #999;
  border-radius: 5px;
  overflow: hidden;
  width: 100px;
  box-shadow: inset 0 0 4px rgba(35,24,21,.4);
  padding: 2px 12px 2px 4px;
  background: white;
}

.selectbox_width_small.lg {
  width: 635px;
}

.selectbox_width_small::before {
  position: absolute;
  top: 9px;
  right: 10px;
  content: "";
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-top: solid 2px #999;
  border-right: solid 2px #999;
  transform: rotate(135deg);
}

.selectbox_width_small select {
  appearance: none;
  width: 100%;
  padding: 6px;
  border: none;
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
}

.selectbox_width_small select.is-empty {
  color: #333;
}

.selectbox_width_small select option {
  background: white;
  color: #333;
}


/*****************************/
/* input-wrap(by style2.css) */
/*****************************/

.input-wrap_justify-content_start {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 635px;
}

@media screen and (max-width: 767px) {
  .input-wrap_justify-content_start {
    display: block;
    width: 100%;
    flex: 1;
  }
}
/* media screen and (max-width: 767px) END */


/********************************/
/* #contact input(by order.css) */
/********************************/

#contact input[type=number] {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 8px;
  margin: 0px 535px 0px 0px;
  width: 100px;
  box-shadow: inset 0 0 4px rgba(35,24,21,.4);
  color: #333;
}

#contact .calendar .calendar-body .calendar-text {
  color: #9E0D82;
  line-height: 1.2;
  font-weight: bold;
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
  #contact input[type=number] {
    width: 100%;
  }
}
/* media screen and (max-width: 767px) END */


/*********************************/
/* #contact input(by style2.css) */
/*********************************/
#message .info-item_custom {
  box-shadow: 0 0 4px 0 rgba(0,0,0,.3);
  border-radius: 15px;
  color: white;
  font-size: 12px;
  width: 130px;
  display: grid;
  place-items: center;
  padding: 4px 0;
}

#message .info-item_custom.pale-pink {
  background: #EC78AB;
}

#message .info-item_custom.pink {
  background: #e50075;
}

#message .sort {
  cursor: pointer;
}

#contact .wrap label {
  margin-right: 10px;
}

#contact .wrap input[type=radio] {
  margin-right: 5px;
}

#mypage tbody:nth-child(odd) tr.table-white {
  background-color: white;
  color: #212529;
 }

#notice .infomationList .information-hidden {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#notice .infomationList .information-detail {
  padding: 10px;
  cursor: pointer;
}

#notice .infomationList span {
  display: -webkit-box;
  border: solid;
  border-style: groove;
  border-radius: 10px;
  background-color: rgb(245, 254, 255);
  padding: 2.5px 10px;
  cursor: pointer;
}

.unfinished-message {
  color: red;
  font-weight: bold;
}

.finished-message {
  color: blue;
  font-weight: bold;
}

#messageDetail .checkbox-big {
  transform: scale(2);
  margin: 8px 12px 0 0;
  accent-color: white;
  cursor: pointer;
}

#messageDetail .insert-image {
  max-width: 418px;
  max-height: 614px;
}

#quotation .form-control.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
  padding: 0.25rem 0.5rem;
  font-size: .875rem;
  border-radius: 0.2rem;
  box-shadow: none;
}

#quotation .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#quotation .calendar .calendar-body .calendar-text {
  color: #9E0D82;
  line-height: 1.2;
  font-weight: bold;
}

/**
 * 業態管理
 */

#userIndustry .form-pane {
  margin-top: 20px;
}

#userIndustry .list-pane {

  margin-top: 20px;
}


/****************/
/* li/lo custom */
/****************/

/* footer paragraph number */
.footer_paragraph_number {
  margin-bottom: -1em; /* 行間調整 */
}

.footer_paragraph_number li {
  list-style-type: none;
  margin-bottom: -1.5em; /* 行間調整 */
  margin-left:1.0em; /* インデント調整 */
}

.footer_paragraph_number ol {
  counter-reset: paragraph_number; /* カウンターをリセット */
}

.footer_paragraph_number ol li {
  counter-increment: paragraph_number; /* カウンターをインクリメント */
  position: relative; /* 相対位置指定 */
}

.footer_paragraph_number ol li::before {
  content: "(" counter(paragraph_number) ")"; /* カウンターの値を表示 */
  position: absolute; /* 絶対位置指定 */
  left:-2.0em /* マイナスの値で「括弧数字」を左にずらす、「括弧数字」と文書始まりの距離を調整する*/
}


/* ul */
.footer_ul ul {
  margin-left:-1.0em; /* インデント調整 */
}

/* footer dot number */
.footer_dot_number {
  margin-bottom: -1em; /* 行間調整 */
}

.footer_dot_number li {
  list-style-type: none;
  margin-bottom: -1.5em; /* 行間調整 */
  margin-left:1.0em; /* インデント調整 */
}

.footer_dot_number ol {
  counter-reset: dot_number; /* カウンターをリセット */
}

.footer_dot_number ol li {
  counter-increment: dot_number; /* カウンターをインクリメント */
  position: relative; /* 相対位置指定 */
}

.footer_dot_number ol li::before {
  content: counter(dot_number) ". "; /* カウンターの値を表示 */
  position: absolute; /* 絶対位置指定 */
  left:-2.0em /* マイナスの値で「ドット数字」を左にずらす、「ドット数字」と文書始まりの距離を調整する*/
}

/* footer mod number */
.footer_dot_number.later2 ol{
  counter-reset: dot_number 1; /* 要素が0始まりなので表示する番号は+1される */
}

.footer_dot_number.later3 ol{
  counter-reset: dot_number 2; /* 要素が0始まりなので表示する番号は+1される */
}

.footer_dot_number.later6 ol{
  counter-reset: dot_number 5; /* 要素が0始まりなので表示する番号は+1される */
}


/*****************************************************************/
/* 「#mypage tbody:nth-child(odd) tr」custom (by style2-dev.css) */
/*****************************************************************/
#mypage tbody:nth-child(odd) tr.darkgray {
  background-color: rgba(0, 0, 0, 0.05);
  color: #212529;
}

#mypage .info-wrap .left-area .left-list li.last {
  margin-bottom: 20px;
}

.next-response {
  font-size: large;
  font-weight: bold;
  margin-top: 7px;
}

.environment {
  margin-right: 2em;
  font-size: 40px;
  font-weight: bold;
  color: #6D747E;
}

.environment-login {
  margin-right: 6em;
  font-size: 40px;
  font-weight: bold;
  color: #6D747E;
}

.calendar-last-update {
  text-align: right;
  margin-top: 10px;
}

.remodal-all-change {
  text-align: right;
  margin: 0.8em;
}

.remodal-btn-gray {
  border: solid 1px #BBBCBC;
  color: #6D747E;
  background: #E8ECEE;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 17px;
  width: 90px;
}

.remodal-btn-gray:hover {
  border: solid 1px #dad8d8;
  color: #a0a5ac;
}

.remodal-btn-gray:active {
  border: solid 1px #8ba1b6;
  color: #a0a5ac;
}

#contact .form-order-reuse {
  margin-top: 10em;
  margin-bottom: 2em;
}

#contact .form-order-reuse input[type=number] {
  margin: auto;
  width: 130px;
}

#contact .form-order-reuse .reuse {
  display: inline;
  width: 100px;
}

.shop-guide {
  margin-left: 3em;
  font-size: 22px;
  font-weight: bold;
}

#quotationList .search-column.lg.bottom {
  align-items: flex-end;
}

#quotationList .search-column.lg.bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100px;
}

#facility .search .search-inner .checkbox-area .checkbox-list dt.ngcommodity {
  width: 60px;
  margin-right: 5px;
}

#message .current-status .info-item_custom.status-temporary-application { /* 仮申込 */
  background-color: #ffdead;
  color: gray !important;
}

#message .current-status .info-item_custom.status-temporary-application-reject { /* 申込却下 */
  background-color: #f5f5f5;
  color: gray !important;
}

#message .current-status .permitted-at { /* 申込許可日時 */
  margin-left: 70px;
  font-weight: bold;
}

.limited-icon {
  border: 2px solid rgb(82, 175, 218);
  border-radius: 5px;
  background-color: rgb(82, 175, 218);
  color: white;
  width: 15%;
  text-align: center;
  white-space: nowrap;
  margin-left: 1em;
  font-size: 1rem;
  padding: 0.1em;
}

.calendar-form-control {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 3px;
  height: 1.5rem;
}

/**********************************************************/
/* 案件終了、空き状況：確認済み の文言custom (by app.css) */
/**********************************************************/
.order_finished {
color: red;
font-weight: bold;
}

#contact .facilityFreeConfirmMessage {
color: red;
font-weight: bold;
}

.attachmentText {
  line-height: 1px;
}

/******/
/* 色 */
/******/
.color_red {
  color: #ff0000
}

.color_bule {
  color: #0000ff
}

.color_green {
  color: #008000
}

/********************/
/* 楽楽販売連携履歴 */
/********************/
#rakurakuhanbaiHistory .sticky {
  position: sticky;
  background: white;
}

#rakurakuhanbaiHistory .search-month {
  top: 0;
}

.modal-list {
  display: flex;
  margin: 10px;
  white-space: pre-line;
  word-break: break-all;
}

.modal-list .label {
  min-width: 8vw;
  text-align: right;
  white-space: nowrap;
}

/**************/
/* 追加ボタン */
/**************/
.dli-plus-circle {
  display: inline-block;
  color: #0d6efd;
  line-height: 1;
  position: relative;
  width: 30px;
  height: 30px;
  border: 0.3em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  transition: opacity 1s ease-in-out;
  cursor: pointer;
}
.dli-plus-circle:hover {
  color: #33f;
}
.dli-plus-circle > span {
  width: 52%;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.3em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.dli-plus-circle > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.dli-plus-disabled {
  display: inline-block;
  color: #ccc;
  line-height: 1;
  position: relative;
  width: 30px;
  height: 30px;
  border: 0.3em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  transition: opacity 1s ease-in-out;
  cursor:not-allowed;
}
.dli-plus-disabled > span {
  width: 52%;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.3em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.dli-plus-disabled > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

/**************/
/* 削除ボタン */
/**************/
.dli-minus-circle {
  display: inline-block;
  vertical-align: middle;
  color: #aaa;
  line-height: 1;
  position: relative;
  width: 30px;
  height: 30px;
  border: 0.3em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  transition: opacity 1s ease-in-out;
  cursor: pointer;
}
.dli-minus-circle:hover {
  color: #999;
}
.dli-minus-circle > span {
  width: 52%;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.3em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.dli-minus-disabled {
  display: inline-block;
  vertical-align: middle;
  color: #ccc;
  line-height: 1;
  position: relative;
  width: 30px;
  height: 30px;
  border: 0.3em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  transition: opacity 1s ease-in-out;
  cursor:not-allowed;
}
.dli-minus-disabled > span {
  width: 52%;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.3em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/****************************************/
/* 施設詳細のオーナー問い合わせ情報表示 */
/****************************************/
.owner-inquiry-vertical-align-middle {
  vertical-align: middle;
}
.owner-inquiry-ws-pre-wrap {
  white-space: pre-line;
  word-break: break-all;
}

.tabs {
  display: flex;
  margin-bottom: 10px;
}

.tab-button {
  font-size: 14px;
  cursor: pointer;
  padding: 10px 20px;
  border: 2px solid #f1f1f1;
  color: #777;
  background-color: #f1f1f1;
  margin-right: 2px;
  transition: background-color 0.3s;
}

.tab-button.active {
  font-size: 16px;
  color: #777;
  background-color: #fff;
  border-top: 2px solid #058fbe;
  border-bottom: 1px solid #fff;
}

/****************/
/* 地図検索関連 */
/****************/

/* 施設詳細画面の地図表示 */
.facility-map-wrap {
    display: flex;
    justify-content: flex-end;
}

/* 施設詳細画面の地図高さ */
.facility-detail-map {
  height: 400px;
}

/* 地図検索画面の地図高さ */
.map-search {
  height: 750px;
}

/* サイドパネル表示非表示トグルタイトル */
.side-panel-detaile-title {
    width: 120px;
    height: 25px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(253,191,67,1) 0%, rgba(248,175,25,1) 50%, rgba(243,167,10,1) 100%);
    color: white;
    font-size: 18px;
    position: relative;
    margin-right: 10px;
}

/* 地図検索画面の右側に表示するサイドパネル */
.side-panel {
    position: fixed;
    top: 200px;
    right: -516px;
    width: 516px;
    height: 55%;
    background: white;
    box-shadow: -5px 0px 5px 3px rgba(0,0,0,0.3);
    transition: right 0.5s;
    border-radius: 0px 0px 0px 10px;
    overflow-y: auto;
}
/* 地図検索画面のリスト題名 */
.side-panel-header {
    position: fixed;
    top: 150px;
    right: -380px;
    width: 516px;
    height: 70px;
    border: none;
    color: white;
    background: linear-gradient(180deg, rgba(253,191,67,1) 0%, rgba(248,175,25,1) 50%, rgba(243,167,10,1) 100%);
    display: block;
    border-radius: 10px 0px 0px 0px;
    cursor: pointer;
    box-shadow: -5px 0px 5px 3px rgba(0,0,0,0.3);
    transition: 0.5s;
    font-size: 18px;
    z-index: 1000;
    padding: 10px;
}
.side-panel-container {
    position: fixed;
    top: 200px;
    right: 0;
    width: 20px;
    height: 5%;
    background: transparent;
}
.side-panel.open,
.side-panel-header.open {
    right: 0;
}
.side-panel ul {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
}
.side-panel ul li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.side-panel ul li:hover {
    background: #f0f0f0;
}

/* 施設詳細地図の右側に表示するサイドパネル */
.side-panel-detail {
    position: fixed;
    top: 200px;
    right: -400px;
    width: 400px;
    height: 55%;
    background: white;
    box-shadow: -5px 5px 10px -5px rgba(0,0,0,0.5);
    transition: right 0.5s;
    font-size: 12px;
    border-radius: 0px 0px 0px 10px;
    overflow-y: auto;
}
/* 施設詳細地図のリストボタン */
.side-panel-detail-btn {
    width: 20px;
    height: 20px;
    color: white;
    background-color: rgba(255, 255, 255, 0.2); /* 透過した背景色 */
    display: flex;
    border: 2px solid white; /* 白い丸 */
    border-radius: 50%; /* 丸にする */
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px; /* ボタンとテキストの間にスペースを追加 */
}
.side-panel-detail-btn:hover {
    background-color: rgba(255, 255, 255, 0.5); /* ホバー時に少し背景色を濃くする */
}
.side-panel-detail-container {
    position: fixed;
    top: 200px;
    right: 0;
    width: 20px;
    height: 5%;
    background: transparent;
}
.side-panel-detail.open {
    right: 0px;
    box-shadow: -5px 5px 10px -5px rgba(0,0,0,0.5);
}
.side-panel-detail ul {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
}
.side-panel-detail ul li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.side-panel-detail ul li:hover {
    background: #f0f0f0;
}

/* 施設詳細地図のサイドパネル題名 */
.side-panel-header-title {
    font-size: 14px;
    color: white;
}
.side-panel-detail-header-text {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
}
.side-panel-detail-header {
    position: fixed;
    top: 150px;
    right: -270px;
    width: 400px;
    height: 70px;
    border: none;
    color: white;
    background: linear-gradient(180deg, rgba(253,191,67,1) 0%, rgba(248,175,25,1) 50%, rgba(243,167,10,1) 100%);
    display: block;
    border-radius: 10px 0px 0px 0px;
    box-shadow: -5px -7px 10px -5px rgba(0,0,0,0.5);
    transition: 0.5s;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
    padding: 10px;
}
.side-panel-detail-header.open {
    right: 0px;
    box-shadow: -5px -7px 10px -5px rgba(0,0,0,0.5);
}
/* 地図周辺施設マーカー */
.custom-icon{
  max-width: 32px;
  max-height: 32px;
}

/* 地図検索画面の施設概要一覧hover時に地図マーカーをアニメーションする */
@keyframes bounce {
    0% {
        transform: translateY(0) rotateY(0deg) scale(1.0, 1.0);
    }
    40% {
        transform: translateY(-60px) rotateY(360deg) scale(1.5, 1.5);
    }
    60% {
        transform: translateY(-30px) rotateY(720deg) scale(2.0, 2.0);
    }
    80% {
        transform: translateY(0) rotateY(0deg) scale(1.0, 1.0);
    }
}
.marker-bounce {
    animation: bounce 2.0s;
}

/* 地図周辺施設マーカー付近に表示する施設名 */
.facility-label {
    background: yellow;
    padding: 2px 5px;
    border: 1px solid black;
    border-radius: 3px;
    position: absolute;
}

/* 円の半径表示 */
.circle-label {
    background: white;
    padding: 2px 5px;
    border: 1px solid black;
    border-radius: 3px;
    position: absolute;
}

/* 地図検索画面は横からリスト表示させるので横スクロールバーを無しに設定 */
#facilityMapSearch{
    overflow-x: hidden;
    position: relative;
}

/* 地図施設選択時のモーダル*/
.map-media {
  margin-top: 20px;
  display: flex;
  margin-bottom: 30px;
  gap: 35px;
}

.map-media.border-btm {
  border-bottom: solid 1px #BBBCBC;
  padding-bottom: 15px;
}

.map-media .images.md {
  width: 280px;
  margin-top: 10px;
}

.map-media .map-btn-wrap {
  width: 280px;
  max-height: 50px;
  margin-top: 10px;
  display: flex;
  gap: 50px;
}

.map-media .images .img img {
  border-radius: 10px;
  max-width: 200px;
  max-height: 180px;
}

#facility .facility-schedule {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

#facility .facility-schedule .facility-schedule-text {
  border: solid 1px #6D747E;
  border-radius: 3px;
  padding: 6px 0;
  color: #6D747E;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 440px;
}

@media screen and (max-width: 767px) {
  #facility .facility-schedule {
    width: 542px;
    margin-bottom: 0;
  }
  #facility .facility-schedule.none {
    width: 100%;
    margin-bottom: 15px;
  }

  #facility .facility-schedule .facility-schedule-text {
    font-size: 16px;
    padding: 4px 0;
    width: 100%;
  }
}

.facility-schedule-content {
  max-height: 750px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.facility-schedule-item {
  text-align: left;
}
.facility-schedule-memo {
  font-size: 12px;
  text-align: left;
}

.week-setting-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.week-setting-table th,
.week-setting-table td {
  padding: 8px;
  border: 1px solid #ccc;
}
.week-setting-table th {
  background-color: #f0f0f0;
}
/* 曜日ごとのスタイル */
.week-setting-table th:nth-child(1),
.week-setting-table td:nth-child(1),
.week-setting-table th:nth-child(2),
.week-setting-table td:nth-child(2),
.week-setting-table th:nth-child(3),
.week-setting-table td:nth-child(3),
.week-setting-table th:nth-child(4),
.week-setting-table td:nth-child(4),
.week-setting-table th:nth-child(5),
.week-setting-table td:nth-child(5) {
  background-color: #f0f0f0;
  color: #000;
}
.week-setting-table th:nth-child(6),
.week-setting-table td:nth-child(6) {
  background-color: #e0f7fa;
  color: #007acc;
}
.week-setting-table th:nth-child(7),
.week-setting-table td:nth-child(7) {
  background-color: #ffcccb;
  color: #fff;
}

.day-setting-table,
.month-setting-table {
  border-collapse: collapse;
  text-align: center;
}
.day-setting-table th,
.day-setting-table td,
.month-setting-table th {
  padding: 10px;
  border: 1px solid #ccc;
}
.month-setting-table td {
  width: 120px;
  padding: 10px;
  border: 1px solid #ccc;
}
.day-setting-table th,
.month-setting-table th {
  background-color: #f0f0f0;
}
.day-setting-table td input,
.month-setting-table td input {
  width: 68px;
  padding: 5px;
  text-align: right;
}
.day-setting-table th:nth-child(1),
.day-setting-table td:nth-child(1),
.day-setting-table th:nth-child(2),
.day-setting-table td:nth-child(2),
.day-setting-table th:nth-child(3),
.day-setting-table td:nth-child(3),
.day-setting-table th:nth-child(4),
.day-setting-table td:nth-child(4),
.day-setting-table th:nth-child(5),
.day-setting-table td:nth-child(5),
.day-setting-table th:nth-child(6),
.day-setting-table td:nth-child(6),
.day-setting-table th:nth-child(7),
.day-setting-table td:nth-child(7),
.month-setting-table th:nth-child(1),
.month-setting-table td:nth-child(1),
.month-setting-table th:nth-child(2),
.month-setting-table td:nth-child(2),
.month-setting-table th:nth-child(3),
.month-setting-table td:nth-child(3),
.month-setting-table th:nth-child(4),
.month-setting-table td:nth-child(4),
.month-setting-table th:nth-child(5),
.month-setting-table td:nth-child(5),
.month-setting-table th:nth-child(6),
.month-setting-table td:nth-child(6),
.month-setting-table th:nth-child(7),
.month-setting-table td:nth-child(7)
{
  background-color: #f0f0f0;
  color: #000;
}

.week-setting-table input[type="text"],
.week-setting-table input[type="number"],
.day-setting-table input[type="text"],
.day-setting-table input[type="number"],
.month-setting-table input[type="text"],
.month-setting-table input[type="number"] {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.week-setting-table input[type="number"],
.day-setting-table input[type="number"],
.month-setting-table input[type="number"] {
  width: 68px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.week-setting-table input[type="text"]::placeholder,
.week-setting-table input[type="number"]::placeholder,
.day-setting-table input[type="text"]::placeholder,
.day-setting-table input[type="number"]::placeholder,
.month-setting-table input[type="text"]::placeholder,
.month-setting-table input[type="number"]::placeholder {
  color: #888;
}

.success-msg {
  display: none;
  position: fixed;
  height: 40px;
  line-height: 40px;
  background-color: #29aba4;
  color: #fff;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
  z-index: 100000;
}

.pointer {
  cursor: pointer;
}

/******************/
/* メッセージ詳細 */
/*****************/

#messageDetail .items-table {
  width: 100%;
  color: #777;
  margin-bottom: 20px;
  min-height: 100px;
}

#messageDetail .items-table th {
  width: 265px;
  background: #f1f1f1;
  padding: 13px 0 13px 26px;
  border-bottom: solid 2px white;
}

#messageDetail .items-table td {
  border: solid 2px #f1f1f1;
  padding: 13px 26px;
}

#userFacilityDetail .form-error-message
, #facilityDetail .form-error-message
, #facilityMapSearch .form-error-message{
  color: red;
}
.items-table .facility--place--name {
  font-weight: bold;
  font-size: 1.5em;
}

/******************/
/* ナビゲーション */
/*****************/
.number-of-nuread {
  height: 20px;
  /* width: 20px; */ /** 幅は可変 */
  border-radius: 50%;
  background-color: red;
  color: white;
  font-size: .8em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  /* right: 25px; */
  left: 124px; /** left指定にすることで文字数が増えた時に右側に広がっていくようになる */
  top: 12px;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .number-of-nuread {
    top: 2px;
    left: 80px;
  }
}

.facility-search-parameters-table {
  width: 100%;
  color: #777;
  margin-bottom: 20px;
  margin-left: 40px;
  min-height: 100px;
}

.facility-search-parameters-table th {
/*  width: 265px;*/
  background: #f1f1f1;
  padding: 13px 0 13px 26px;
  border-bottom: solid 2px white;
}

.facility-search-parameters-table td {
  border: solid 2px #f1f1f1;
  padding: 13px 26px;
}

.facility-search-parameters-table input[type="number"] {
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.facility-search-parameters-table input[type="number"] {
  width: 100px;
  padding: 3px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.facility-search-form {
  display: inline-block;
  width:auto;
}

/******************/
/* ナビゲーション */
/*****************/
.number-of-nuread {
  height: 20px;
  /* width: 20px; */ /** 幅は可変 */
  border-radius: 50%;
  background-color: red;
  color: white;
  font-size: .8em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  /* right: 25px; */
  left: 124px; /** left指定にすることで文字数が増えた時に右側に広がっていくようになる */
  top: 12px;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .number-of-nuread {
    top: 2px;
    left: 80px;
  }
}

/******************/
/* 社内向けお知らせ */
/*****************/
.internal-information {
  font-size: .8em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#status_pane .created-at {
  color: #888;
  font-size: .8em;
}


/**
* 案件グループ詳細
*/

#orderHistoryGroupDetail .items-table {
  width: 100%;
  color: #777;
  margin-bottom: 20px;
  min-height: 100px;
}

#orderHistoryGroupDetail .items-table th {
  width: 265px;
  background: #f1f1f1;
  padding: 13px 0 13px 26px;
  border-bottom: solid 2px white;
}

#orderHistoryGroupDetail .items-table td {
  border: solid 2px #f1f1f1;
  padding: 13px 26px;
}
