/*
 * 7-1-2 グループ設定
 */
.group-tree {
  padding: 2rem 1rem 1rem;
}
.group-tree ul {
  padding: 0;
  line-height: 1.55;
  font-size: 1rem;
  font-weight: 500;
}
.group-tree ul a {
  color: #c83c6d;
}
.group-tree ul li {
  list-style: none;
}
.group-tree ul li ul {
  margin-top: 0.5rem;
  padding-left: 4rem;
  position: relative;
}
.group-tree ul li ul::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  height: calc(100% + .75em);
  border-left: 1px solid #666666;
}
.group-tree ul li ul:last-child::before {
  height: calc(1em + .25em);
}
.group-tree ul li ul li {
  margin-bottom: .25rem;
  position: relative;
  list-style: none;
}
.group-tree ul li ul li::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: -3rem;
  width: 1rem;
  height: calc(100% + .75em);
  border-left: 1px solid #666666;
}
.group-tree ul li ul li:last-child::before {
  height: calc(1em + .25em);
}
.group-tree ul li ul li::after {
  content: '';
  position: absolute;
  top: .75rem;
  left: -3rem;
  width: 2.6rem;
  border-bottom: 1px solid #666666;
}
.analysis-form-check {
  display: flex;
  justify-content: flex-start;
}
.analysis-form-check .analysis-subtit {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
  width: 9rem;
  font-weight: 500;
}
.analysis-form-check label {
  margin-bottom: 0;
  display: block;
  width: 4rem;
}
.analysis-form-check label:last-child {
  width: 8rem;
}
.sub-area {
  margin-bottom: 0.5rem;
}
.sub-tit {
  padding-left: 0;
  padding-right: 0;
}
.sub-tit::after {
  content: none;
}
.sub-tit label {
  margin-bottom: 0;
  line-height: 2.5;
}
.non-padding {
  padding-left: 0;
  padding-right: 0;
}
/*
 * タブメニュー
 */
.tab-menu {
  margin: 0 -2.5rem 3rem -2.5rem;
  border-bottom: 1px solid #E6E6E6;
}
.tab-block {
  display: inline-block;
}
.tab-menu .tab-box a {
  color: #C0C0C0;
  transition: .3s;
  padding: 0 2.5rem 1rem;
  text-decoration: none;
  display: block;
  font-size: 1.125rem;
  position: relative;
}
.tab-menu .tab-box.current a, .tab-menu .tab-box a:hover, .tab-menu .tab-box a.active {
  color: #333333;
  background-color: transparent !important;
}
.tab-menu .tab-box a::after {
  content: '';
  height: 3px;
  width: 100%;
  background: #C83C6D;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: .3s;
}
.tab-menu .tab-box.current a::after,
.tab-menu .tab-box a:hover::after,
.tab-menu .tab-box a.active::after {
  opacity: 1;
}
/*
 * ファイルアップロード
 */
.cutomfile_thumb {
  padding-top: 66.6667%;
  background: url("../img/thumb_default.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #E6E6E6;
  box-shadow: 0 0 0 0;
}
.custom-file-input {
  cursor: pointer;
}
.custom-file-label::after {
  color: #fff;
  background-color: #E37FA2;
  transition: .3s;
}
.custom-file-input:hover ~ .custom-file-label::after {
  background-color: #C80046;
}
button.reset {
  color: #fff;
  background: #999999;
  border-color: #E6E6E6;
}
button.reset:hover {
  background: #6c757d;
  border-color: #E6E6E6;
}
.note-editor.note-airframe, .note-editor.note-frame {
  border: 1px solid #E6E6E6;
  border-radius: 0.25rem;
}
.note-editor .note-editing-area .note-editable {
  background: #fff;
}
/*
 * カルーセル用
 */
.carousel-control-prev {
  left: 0;
  top: .5rem;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 10px 6px 0;
  border-color: transparent #c83c6d transparent transparent;
}
.carousel-control-next {
  right: 0;
  top: .5rem;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #c83c6d;
}
/*
 * 横7日表示用
 */
.input-box-7-text {
  margin-bottom: 0.5rem;
  text-align: center;
}
.input-box-7-day .col-box {
  width: 14.285714%;
  padding: 0 15px;
  margin-bottom: 1rem;
}
.input-box-7-day .col-box:nth-last-child(3), .input-box-7-day .col-box:nth-last-child(2), .input-box-7-day .col-box:last-child {
  margin-bottom: 0;
}
/*
 * 完了メール設定
 */
.compmail-nav-h li {
  margin-right: 0;
  margin-bottom: 0.5rem;
}
.compmail-nav-h li a, .compmail-nav-h li button {
  align-items: center !important;
}
.compmail-nav-h li span {
  line-height: 1em;
}
#complete_mail_box {
  width: 100%;
  border: 1px solid #E6E6E6;
  height: 20rem;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
}
/*
 * 使用反響登録
 */
.config-select-list select {
  width: 100%;
  padding: .75rem;
  overflow: hidden;
  border: 1px solid #E6E6E6;
  border-radius: 1rem;
  appearance: button;
  -moz-appearance: button;
  -webkit-appearance: button;
}
select:focus {
  outline: -webkit-focus-ring-color auto 0 !important;
}
.config-select-list select option {
  padding: .75rem;
  border-bottom: 1px solid #E6E6E6;
}
.config-select-list select option:checked {
  background: #E6E6E6;
}
.icon-w {
  width: 2.2rem;
  padding: .2rem .5rem;
  display: flex;
  align-items: center;
}
.use-echo-regi-btn {
  margin: 0 auto;
}
.staff-regist-form-check {
  padding: 0 !important;
}
.staff-regist-form-check label {
  font-weight: 500;
}
/*
 * スタッフシフト設定
 */
.staff-shift-box .staff-shift-list {
  height: 145px;
  overflow-y: auto;
  padding-top: 1px;
}
.staff-shift-box .staff-shift-list dl {
  margin: 0;
}
.staff-shift-box .staff-shift-list dt {
  background: #999;
  color: #fff;
  margin: 0;
}
.staff-shift-box .staff-shift-list dd {
  margin: 0;
  background: #fff;
  border-right: 1px solid #E6E6E6;
}
.staff-shift-box .staff-shift-list dt, .staff-shift-box .staff-shift-list dd {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  margin-top: -1px;
  padding: 0.5rem 0.9375rem;
}
.staff-shift-box .staff-shift-note li {
  margin-right: 0.625rem;
  font-size: 87.5%;
}
.staff-shift-box .staff-shift-note li:last-child {
  margin-right: 0;
}
.staff-shift-box .staff-shift-note li:before {
  content: "■";
  margin-right: 0.1rem;
}
.staff-shift-box .staff-shift-note li.list01:before {
  color: #FFA500;
}
.staff-shift-box .staff-shift-note li.list02:before {
  color: #87CEFA;
}
.staff-shift-box .staff-shift-note li.list03:before {
  color: #66CDAA;
}
.bg-orange {
  background: #FFA500;
  color: #fff;
}
.bg-blue {
  background: #87CEFA;
  color: #fff;
}
.bg-orange:hover, .bg-blue:hover {
  color: #fff;
}
.staff-shift-timeline {
  overflow-x: auto;
  margin-right: -2.5rem;
}
.staff-shift-timeline th {
  font-weight: normal;
}
.staff-shift-timeline thead {
  text-align: center;
}
.staff-shift-timeline thead th {
  padding: 0.9375rem 0.625rem;
}
.staff-shift-timeline thead th:first-child {
  background: #f8f8f8;
  position: sticky;
  left: 0;
  z-index: 1;
}
.staff-shift-timeline thead .btn {
  font-size: 0.875rem;
  padding: 0.4rem 0.1rem;
}
.staff-shift-timeline thead .row {
  margin: 0 -3px;
}
.staff-shift-timeline thead .col {
  width: 49%;
  padding: 0 3px;
}
.staff-shift-timeline tbody tr {
  border: 1px solid #E6E6E6;
}
.staff-shift-timeline tbody tr:nth-child(odd) {
  background: #fff;
}
.staff-shift-timeline tbody th {
  padding: 0.9375rem 1.25rem;
  white-space: nowrap;
  position: sticky;
  left: 0;
  background: #f8f8f8;
}
.staff-shift-timeline tbody tr:nth-child(odd) th {
  background: #fff;
}
.staff-shift-timeline tbody th .icon {
  width: 3.125rem;
  height: 3.125rem;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 0.625rem;
}
.staff-shift-timeline tbody th .btn {
  margin-left: 3.75rem;
  font-size: 0.875rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.staff-shift-timeline tbody td {
  text-align: center;
  min-width: 160px;
  padding: 0.9375rem 0.625rem;
}
.staff-shift-timeline-nav .week-day {
  text-align: center;
  font-size: 2.4rem;
}
.staff-shift-timeline-nav .week-bar {
  background: #fff;
  border-radius: 0.25rem;
  overflow: hidden;
}
.staff-shift-timeline-nav .week-bar .btn {
  background: #C83C6D;
}
.modal-dialog .modal-tit .icon {
  width: 35px;
}
#modal-shiftedit .col-6 {
  padding: 0 5px;
}
#modal-shiftedit select {
  width: 2.4rem;
}
#modal-shiftedit td {
  vertical-align: middle;
}
.modal-dialog-b {
  max-width: 850px;
}
.modal-dialog-bb {
  max-width: 1100px;
}

.w-50px {
  width: 50px;
}

.w-100px {
  width: 100px;
}

.w-150px {
  width: 150px;
}

.w-180px {
  width: 180px;
}

.w-20px {
  width: 200px;
}

.mw-50 {
  max-width: 50px;
}

.mw-100 {
  max-width: 100px;
}

.mw-150 {
  max-width: 150px;
}

.mw-180 {
  max-width: 180px;
}

.mw-200 {
  max-width: 200px;
}

.overflow-hidden {
  overflow: hidden;
}

#modal-scheduleh-regist .col-1 {
  max-width: 12%;
  flex: 0 0 12%;
}
#modal-help-regist .col-1 {
  max-width: 14%;
  flex: 0 0 14%;
}
.col-time .row {
  margin-left: -5px;
  margin-right: -5px;
}
.col-time .col-6 {
  padding: 0 5px;
}
#modal-collective-setting .profile .icon, #modal-collective-setting-month .profile .icon {
  width: 3.125rem;
  margin-right: 0.625rem;
}
#modal-collective-setting .nav, #modal-collective-setting-month .nav {
  padding: 0 15px;
}
.form-radio-btn label {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
#modal-collective-setting-month .calender td {
  padding: 0.625rem 0.2rem;
}
#modal-collective-setting-month .calender .day {
  font-size: 1.75rem;
}
#modal-collective-setting-month .calender select {
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
}
.modal {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
/*
 * ログイン
 */
.page-login {
  position: relative;
  padding: 2.5% 5%;
  background: #F8F8F8;
  min-height: 100vh;
}
.page-login .login-box {
  width: 100%;
}
.page-login .login-box.posi {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-login .login {
  background: #fff;
  max-width: 42rem;
  width: 100%;
  padding: 3.125rem 3.75rem;
  margin: 0 auto;
  border: 1px solid #E6E6E6;
  border-radius: 0.5rem;
}
.page-login th {
  width: 0;
  white-space: nowrap;
}
.page-login .btn {
  max-width: 12.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: inline-block !important;
  border-radius: 0.5rem;
  padding: 0.625rem;
}
.page-login .btn .icon {
  margin-right: 1rem;
  vertical-align: 0.1rem;
  line-height: 0;
}
.page-login .btn.submit .icon img {
  width: 1.25rem;
}
.page-login .table-sm th, .page-login .table-sm td {
  padding: 0.5rem;
}
.page-login .login-box .login .link-lostpassword, .page-login .login-box .login .note, .page-login .login-box .note-foot {
  font-size: 0.875rem;
}
.page-login .login-box .login .link-lostpassword a {
  text-decoration: underline;
}
.page-login .login-box .note-foot .address {
  padding: 0;
  display: inline-block;
}
.page-login .login-box .note-foot .address li {
  list-style: none;
  text-align: left;
}
.page-login .login-box .note-foot .address li a {
  text-decoration: underline;
}
/*
 * 予約
 */
.reserve-list-nav .form-control.datepicker {
  border: none;
  background-color: #f8f8f8;
  font-size: 1.4rem;
  max-width: 13.5rem;
}
.status-list dl {
  background: #fff;
  border: 1px solid #CCCCCC;
  margin-left: -1px;
}
.status-list dt {
  font-size: 0.875rem;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0;
  padding: 0.9rem 0.4rem 0.4rem;
  line-height: 1em;
}
.status-list .status01 dt, .table .status01 {
  background: #F8B568;
}
.status-list .status02 dt, .table .status02 {
  background: #F8A9C5;
}
.status-list .status03 dt, .table .status03 {
  background: #3CA449;
}
.status-list .status04 dt {
  background: #7BA0DF;
}
.status-list dd {
  padding: 0.7rem 0.4rem 0.4rem;
  background: #fff;
  line-height: 1em;
}
.status-list dd .num {
  font-size: 1.3125rem;
}
.table .status {
  display: block;
  color: #fff;
}
.txt-s {
  font-size: 0.875rem;
}
.border-r {
  border-right: 1px solid #E6E6E6;
}
#modal-menu-reserve .table-responsive {
  height: 280px;
  border-radius: 1rem;
  border: 1px solid #E6E6E6;
}
#modal-menu-reserve .table-responsive table {
  overflow: inherit;
  border: none;
  border-radius: 0 !important;
  font-weight: normal;
}
#modal-menu-reserve .table-responsive thead {
  position: sticky;
  top: 0;
}
#modal-menu-reserve .table-responsive table th, #modal-menu-reserve .table-responsive table td {
  font-weight: normal;
  padding: 0.2rem 1.25rem;
}
.input-s {
	
}
.input-s .form-control{
	padding-left: 0.3rem;
	padding-right: 0.3rem;
	font-size: 87.5%;
}
.rank-table-box {
	margin-bottom: 6rem;
}
.rank-table-box:last-child{
	margin-bottom: 0;	
}
.rank-table-box th{
	vertical-align: middle !important;
	background: #EDEDED;
	border-right:1px solid #fff !important;
	border-bottom:1px solid #fff !important;
	padding-left: 1rem;
	padding-right: 1rem;
}
.rank-table-box td{
	background: #fff;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
}
.vertical-txt{
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-orientation: upright;
}
.rank-table-box .rank-5{
	background: rgba(200,60,109,1);
	color: #fff;
	line-height: 1em;
}
.rank-table-box .rank-4{
	background: rgba(200,60,109,0.8);
	color: #fff;
	line-height: 1em;
}
.rank-table-box .rank-3{
	background: rgba(200,60,109,0.6);
	color: #fff;
	line-height: 1em;
}
.rank-table-box .rank-2{
	background: rgba(200,60,109,0.4);
	color: #fff;
	line-height: 1em;
}
.rank-table-box .rank-1{
	background: rgba(200,60,109,0.2);
	color: #fff;
	line-height: 1em;
}

.rank-table-box .w{
	width: 18%;
}
.rank-table-box.short{
	width: 64%;
}
.rank-table-box.short .w{
	width: 30%;
}
.rank-table-box dl{
	margin-bottom: 0;
}
.rank-table-box dt{
	font-size: 81.25%;
	font-weight: normal;
	border-radius: 0.4rem;
	margin-bottom: 0.6rem;
}
.rank-table-box dd{
	margin: 0;
	font-weight: bold;
	line-height: 1.5em;
	padding-top: 1.4ewm;
}
.rank-table-box dd.people a{
	color: inherit;
	text-decoration: none;
}
.rank-table-box dd.people .num{
		font-size: 156.25%;
}
.rank-table-box .platinum dt{
	background: #226599;
	color: #fff;
}
.rank-table-box .platinum dd.people{
	color: #226599;
}
.rank-table-box .gold dt{
	background: #D2A206;
	color: #fff;
}
.rank-table-box .gold dd.people{
	color: #D2A206;
}
.rank-table-box .silver dt{
	background: #A7AEB2;
	color: #fff;
}
.rank-table-box .silver dd.people{
	color: #A7AEB2;
}
.rank-table-box .general dt{
	background: #E4E4E4;
}
.rank-table-box .newgeneral dt{
	border:1px solid #DCDCDC;
}
.rank-table-box .newgeneral dd.people{
	color: #D3D3D3;
}
