@font-face {
	font-family: '804Font';
	src: url('/fonts/804FONT.woff') format('truetype');
}

html {
  font-size: 10px;
  overflow-x: hidden;
  overflow: -moz-hidden-unscrollable;
}

body {
  font-family: "804Font","PingFang TC", "Noto Sans TC", "LiHei Pro", "Microsoft JhengHei", "Microsoft YaHei", sans-serif !important;
  letter-spacing: 0.5px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 1.8rem;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  color: #333;
  background-image: url("../img/body_BG.webp");
  background-size: 100%;
  background-repeat: no-repeat;

  background-position-x: center;
  background-position-y: bottom;
  min-height:87vh;
}

#loader {
	display: none;
	top: 0;
	left: 0;
	position: fixed;
	width: 100vw;
	height: 100vh;
	text-align: center;
	line-height: 100vh;
	background-color: rgba(192, 192, 192, 0.5);
	z-index: 10000;
}

.loader {
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid #3498db; /* Blue */
	/*    border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    border-left: 16px solid pink;*/
	border-radius: 50%;
	width: 120px;
	height: 120px;
	display: inline-block;
	vertical-align: middle;
	animation: spin 2s linear infinite;
	margin: 0;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

a {
  color: #0A97B0;
}

a:hover {
  text-decoration: none;
  color: #0A97B0;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

ul.list-style {
  list-style: disc;
  margin-left: 20px;
}

ul.list-style li {
  margin: 7px 0;
}

.text-danger {
	color:rgb(220,53,69);
}

.topmenu{
	border-bottom:1px 1px 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	position:fixed;
	top:0px;
	left:0px;
	width:100vw;
	background:#fff;
	z-index:500;
}

.dropdown-menu {
	font-size: 1.8rem;
	overflow-x: hidden;
}

.dropdown-header {
	font-size: 1.8rem;
	font-style: italic;
	font-weight: bolder;
	background-color: #eeeeee;
	overflow-x: hidden;
}

.form-group {
  margin: 15px 0;
}

.form-group label {
  font-size: 1.8rem;
  font-weight: bold;
}

.form-group .form-control {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.8rem;
}

.form-group select.form-control {
  background-image: url("../img/ic_angle.svg");
  background-size: 13px 9px;
  background-repeat: no-repeat;
  background-position: top 20px right 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 25px 0 10px;
}

.form-group select.form-control::-ms-expand {
  display: none;
}

.card-type {
	max-width: 250px;
	width: 100%;
	background: rgba(240, 252, 255, 0.94);
	border: 1px solid #BDDEE8;
	box-shadow: 0px 4px 8px rgb(0 0 0 / 20%);
	border-radius: 10px;
	height: 200px;
	color: #000;
	text-decoration: none;
	position: relative;
	display: inline-block;
	text-align: center;
/*	padding: 20px 10px;*/
	/*    border-radius: 4px;
    border: 1px solid;*/
	margin-top: 20px;
	-webkit-transition: all ease-in-out .3s;
	transition: all ease-in-out .3s;
}

.card-type .pic {
/*	max-width:70%;
	height: 70%;
	width: auto;
	height:auto;*/
padding-top: 10px;
height: calc(100% - 50px);
display: flex;
justify-content: center;
align-items: center;
	align-content:center;
	justify-content:center;
}

.card-type img, svg {
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}

.card-type .title {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
  letter-spacing: 2px;
}

.card-type:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.card-type:hover .title {
  color: #0A97B0;
}

.radio {
  display: inline-block;
  margin-right: 10px;
}

.radio label {
  position: relative;
}

.radio label input {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.radio label input:checked + span.icon-mark {
  border-color: #0A97B0;
}

.radio label input:checked + span.icon-mark::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0A97B0;
  position: absolute;
  top: 4px;
  left: 4px;
}

.radio label span.icon-mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #bbb;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1.8rem;
}

.btn-primary {
  background-color: #0A97B0 !important;
  border-color: #0A97B0 !important;
}

.btn-default {
  border-color: #4FA2D0;
  background: #fff;
  box-shadow: 0px 1px rgba(0, 0, 0, 0.7);
}

.btn-default.active {
  background: #ffc107;
}

.btn-filtered {
	border-color: #F17922;
	border-width: 2px;
	background: #fff;
	box-shadow: 0px 1px rgba(0, 0, 0, 0.7);
}

.btn-filtered.active {
  background: #ffc107;
}

.breadcrumb {
  background: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #888;
  content: ">";
  padding: 0 10px;
}

.breadcrumb-item.active {
  color: #333;
  font-weight: bold;
}

header {
  height: 100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  background: #fff;
  z-index: 1000;

  position: relative;
  top: 0px;
  left: 0px;
  /*
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
		  */
}

header a.menu-toggle {
  padding: 15px;
  color: #666;
  font-size: 3rem;
  display: none;
  position: absolute;
  left: 0px;
  top: 5px;
}

header a.logo img {
  width: 75px;
  margin-right: 5px;
}

header a.logo h1 {
  display: inline-block;
  color: #333;
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size:1.8rem;
}

header ul.menuTop1 {
  position:absolute;
  top:0px;
  right:0px;
  font-size:1.2rem;
  background:rgba(230, 233, 255, 0.7);
  padding:10px 5px 5px 5px;
  border-radius:5px;
}

header ul.menuTop1 button {
  font-size:1.2rem;
  padding:5px 10px;
  border: 1px solid #000;
  border-radius: 8px;
  color: #000;
  background-color:#fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}

header ul.menuTop1 button.active {
  background-color:#1282C0;
  color:#fff;
}

header ul.menuTop1 li {
  display: inline-block;
}

header ul.menu {
  position:absolute;
  bottom:15px;
  right:0px;
  font-size:1.5rem;
}

header ul.menu li {
  display: inline-block;
  font-weight: bold;
}

header ul.menu li a {
  padding: 5px 10px;
  color: #333;
  text-decoration:none;
}

header ul.menu li a:hover {
  color: #0A97B0;
}

header ul.menu li.active {
  font-weight: bold;
}

header ul.menu li.active a {
  border: 1px solid #F17922;
  border-radius: 25px;
  color: #F17922;
}

header ul.menu li .form-group {
  width: 100px;
  margin-left: 10px;
}

header ul.menu .toggleview {
  display:none;
}

.subject{
	font-size: 2rem;
	font-weight: bold;
	color:#1282C0;
	margin-bottom: 10px;
	border-bottom: 3px solid #4FA2D0;
	border-top: 3px solid #4FA2D0;
	width:100%;
	text-align:center;
}

.search-box{
	border:solid 1px rgba(189, 222, 232, 1);
	background-color:rgba(217, 244, 252, 0.7);
	box-sizing: border-box;
	border-radius: 10px;
	padding:10px 10px;
}

.search-btn{
	width:100%;
    border-color: transparent;
    border-radius: 10px;
    background-color: rgba(230, 131, 60, 1);
	margin:10px 0px;
	color:#fff;
	font-weight:bold;
}

.search-btn:hover{
	background-color: rgba(230, 131, 60, 1);
	border-color: transparent;
}

.login-box{
	border:solid 1px rgba(189, 222, 232, 1);
	background-color:rgba(240, 252, 254, 1);
	box-sizing: border-box;
	border-radius: 10px;
	padding:10px 10px;
	border-bottom:1px 1px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.login-box ul li {
	font-size: 1.8rem;
    font-weight: bold;
}

.area-btn{
	width:100%;
	height:100%;
    border-color: transparent;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 1);
	margin:10px 0px;
	color:rgba(17, 130, 192, 1);
	font-weight:bold;
	padding: 2rem 1rem;
	font-size: 1.8rem;
	border: 3px solid #4FA2D0;
	display: block;
}

.area-btn img{
	max-width:70%;
	max-height:80%;
	width:auto;
	height:auto;
}

.area-btn span{
	word-break:keep-all;
}

@keyframes areaRotate {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.area-btn.active{
    background-color: rgba(17, 130, 192, 1);
	color:rgba(255, 255, 255, 1);
	-webkit-animation: areaRotate 1s linear;
  animation: areaRotate 0.5s linear;
}

.area-btn:hover{
    background-color: rgba(230, 131, 60, 0.5);
	color:rgba(255, 255, 255, 1);
}

.regflow {
	position: relative;
	padding:0px;
}

.regflow .block {
	font-size: 2rem;
	font-weight: bold;
	border: 3px solid #4FA2D0;
	text-align: center;
	position: relative;
	padding: 1rem 2rem;
	border-radius: 8px;
	background-color: #fff;
	height: 10rem;
	width: 22rem;
	z-index: 5;
	display: flex;
  justify-content: center;
  align-items: center;
}

.regflow .numberCircle {
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    padding: 8px;
    background-color:#bbb;
    border: 3px solid #0F87C3;
    color: #fff;
    text-align: center;
	position:absolute;
	left:-3rem;
	top:2rem;
	z-index:1;
    font: 2.5rem Arial, sans-serif;
}

/*.regflow .arrow {
    width: 100%;
    height: 10vh;
    padding: 8px;
	position:absolute;
	left:-15rem;
	top:2rem;
	z-index:-1;
}*/

.regflow .arrow {
    width: 100%;
    height: 50px;
    padding: 8px;
	position:absolute;
	left:-150px;
	top:20px;
	z-index:1;
}

.regflow .arrow img{
	position:absolute;
	width:50px;
	height:30px;
}

.regflow span,.regflow a{
/*	position:absolute; */
	top:3rem; 
	left:4.5rem;
	z-index:1;
	text-decoration:none;
	color:#333;
}

.regflow:hover .block{
	background-color:#41a7c7;
	border-color:rgba(17, 130, 192, 1);
}

.regflow:hover span, .regflow:hover a{
	color:#fff;
}

.regflow:hover .block .numberCircle{
	background: #0F87C3;
}

.regflow.active .block .numberCircle{
	background: #0F87C3;
}

.regflow.active .block{
	background-color:#41A7C7;
	border-color:rgba(17, 130, 192, 1);
	
}

.regflow.active span,.regflow.active a{
	color:#fff;
}

.spline{
	border-top: 3px solid rgba(87, 168, 211, 1);	
}

.add_calendar{
	border: 1px solid #eee;
	/*
	border-bottom:1px 1px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	*/
}

.add_calendar > div{
	padding:2px;
}

.add_calendar > div.ttl {

  color:#333;
  text-align:center;
  font-weight:bold;
  border:transparent;
  border-radius: 10px;
}

.add_calendar > div a {
  color: #333;
  display: inline-block;
  background: #eee;
  border: 3px solid #0D5E8B;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  text-align:center;
  font-size:1.5rem;
  height:100%;
}

.add_calendar > div a span {
  word-break: keep-all;
}

.add_calendar > div a.active, .add_calendar > div a:hover {
  background: #1282C0;
  border: 1px solid #0D5E8B;
  color:#fff;
}

.other_operation > div a {
  color: #E7843D;
  display: inline-block;
  background: #FFFFFF;
  border: 3px solid #E7843D;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  text-align:center;
}

.other_operation > div.active a, .other_operation > div:hover a {
  color: #fff;
  background: #E7843D;
  border: 3px solid #E7843D;

}

ul.reserve_note {
  margin-top: 20px;
  margin-left: 2.5rem;
  list-style-image: url(../img/reserve_note_li_icon.svg); 
}

ul.reserve_note li {
	position: relative;
	padding:0.2rem 1rem;
	font-weight:bold;
}

@media (max-width: 1199px) {
	body {
		font-size:1.5rem;
	}
	header a.logo{
		padding-left:5vw;
		text-align:center;
	}
	header a.logo img {
		width: 60px;
	}
	header a.logo h1 {
		font-size:1.5rem;
	}
	header ul.menu {
		font-size: 1.4rem;
	}

  header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header a.menu-toggle {
    display: block;
  }
  header a.logo {
    display: block;
  }
  header a.logo h1 {
    font-size: 1.8rem;
  }

	header ul.menuTop1{
	  display: none;
	}

  header ul.menuTop {
    position: fixed;
    left: -210px;
    width: 220px;
    background: #fff;
    -webkit-box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    height: 100%;
    -webkit-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
  }
  header ul.menuTop li {
    display: block;
    border-bottom: 1px solid #ddd;
  }
  header ul.menuTop li a {
    padding: 15px;
    display: block;
  }

  header ul.menu {
    position: fixed;
	top:101px;
    left: -210px;
    width: 200px;
	padding-top:15px;
    background: #fff;
    -webkit-box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 90%;
    -webkit-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
	
  }
  header ul.menu li {
    display: block;
    border-bottom: 1px solid #ddd;
  }
  header ul.menu li a {
    padding: 15px;
    display: block;
  }
  header ul.menu li .form-group {
    width: 100%;
    margin: 0px;
    padding: 15px;
  }
  header ul.menu.active {
    left: 0px;
	padding-top:0px;
	overflow:scroll;
  }
  
  header ul.menu li.active a {
  border: 0px solid #F17922;
  border-radius: 0px;
  background-color:#eee;
  color: #F17922;
  }
  
  header ul.menu .toggleview {
  display:block;
  padding: 15px;
/*  font-size:1.8rem;*/
  }
  
  header ul.menu .toggleview button{
	  font-size:1.2rem;
	  padding:5px 10px;
	  border: 1px solid #000;
	  border-radius: 8px;
	  color: #000;
	  background-color:#fff;
	  display: inline-block;
	  text-align: center;
	  text-decoration: none;
	  vertical-align: middle;
  }

  header ul.menu .toggleview button.active{
	  color: #fff;
	  background-color:#1282C0;
	  display: inline-block;
	  text-align: center;
	  text-decoration: none;
	  vertical-align: middle;
  }
  
  .regflow .block{
	  height:8rem;
	  width:15rem;
	  font-size:1.8rem;
	  padding:0px;
  }
  .regflow span{
	position:absolute; 
	top:2.5rem; 
	left:2rem;
	}
}

@media (max-width: 576px) {
	.regflow .block {
		height: 7rem;
		width: 15rem;
		font-size: 1.5rem;
		padding: 0px;
	}

	.regflow .numberCircle {
		width: 4rem;
		height: 4rem;
		padding: 4px;
		left: -2rem;
		top: 1.5rem;
		z-index: 1;
	}

	.btn {
		font-size: 1.5rem;
		white-space: nowrap;
	}
}

main {
  /*height:100vh;
  top:120px;*/
  margin-top:100px;
  /* position:fixed; */
  width:100vw;
  
  /*overflow:scroll; */
/*  z-index:5;*/
/*  padding-bottom:15vh;*/
  background-image: url(../img/main_BG.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
}

main h3 {
/*  font-size: 2.4rem;*/
  font-weight: bold;
  letter-spacing: 2px;
  margin: 40px 0 15px 0;
}

/*main h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: #6F9CD6;
  margin-top: 10px;
  border-radius: 20px;
  clear: both;
}*/

main h1 {
 font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 20px 0 15px 0;
}

main h1 .tool {
  float: right;
  /*font-size: 1.8rem;*/
}

main h1 .tool i {
  margin-right: 5px;
}

main h1 a.tool {
  text-decoration:none;
}

main h1 a.tool:hover {
  color: #0A97B0;
  text-decoration: underline;
}

main h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

main .mainview {
  background-image: linear-gradient(45deg, #6F9CD6, #1F6FB2 60%);
  padding: 60px 0 160px 0;
  color: #fff;
  position: relative;
  margin-bottom: -70px;
  text-align: center;
}

main .mainview::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
  height: 300px;
  background-image: url("../img/bg_mainview.png");
  background-size: cover;
  background-position: center bottom;
}

main .mainview h2, main .mainview .title {
  font-size: 3.2rem;
}

main .mainview .status {
  text-align: center;
}

main .mainview .status .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  color: #1F6FB2;
  text-align: center;
  line-height: 100px;
  margin: 0 auto 20px auto;
  font-size: 5rem;
}

@media (max-width: 767px) {
  main .mainview .status .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  main .mainview {
    padding: 40px 0 130px 0;
  }
  main .mainview h2 {
    font-size: 2.6rem;
  }
}

main ul.main-tab {
  margin-bottom: 20px;
}

main ul.main-tab li {
  float: left;
  width: 25%;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 4px solid #eee;
  text-align: center;
}

main ul.main-tab li a {
  display: block;
  padding: 20px;
  color: #555;
}

main ul.main-tab li a:hover {
  color: #1F6FB2;
}

main ul.main-tab li.active {
  border-bottom-color: #1F6FB2;
}

main ul.main-tab li.active a {
  color: #1F6FB2;
}

main ul.main-tab::after {
  content: '';
  display: block;
  clear: both;
}

@media (max-width: 767px) {
  main ul.main-tab li a {
    padding: 10px;
  }
	.regflow .arrow {
		width: 130px;
		height: 50px;
		padding: 8px;
		position: absolute;
		left: -160px;
		top: 20px;
		z-index: 1;
	}

		.regflow .arrow img {
			position: absolute;
			width: 70px;
			height: 30px;
		}
}

@media (max-width: 580px) {
  main ul.main-tab li {
    width: calc(50% - 14px);
    border: 4px solid #ccc;
    margin: 7px;
    border-radius: 8px;
  }
  main ul.main-tab li a {
    padding: 20px 10px;
  }
  main ul.main-tab li.active {
    border-color: #1F6FB2;
  }
  
  main .lside{
	margin-left:1.5rem;
	margin-right: 5rem;
	width: calc(100% - 5rem);
   }
  .search-btn{
	width:70%;
    border-color: transparent;
    border-radius: 10px;
    background-color: rgba(230, 131, 60, 1);
	margin:10px 0px;
	color:#fff;
	font-weight:bold;
	position:relative;
	left:15%;
	}
}

.board {
  padding: 10px 10px;
  background: #ffffff;
  border-radius: 10px;
  /*
  border-bottom: 1px solid #4FA2D0;
  border-top: 1px solid #4FA2D0;
  */
}

.board-item {
  background: transparent;
}

.board-item .btn {
  padding: 10px;
  margin: 5px 0px;
  font-weight: bold;
}

.board-item .btn-default:hover,.board-item .btn-filtered:hover {
  background:#4FA2D0;
  color:#fff;
}

footer {
/*
  background-image: linear-gradient(45deg, #4D89C8 10%, #1F6FB2 50%);
  padding: 40px 15px;
    margin-top: 240px;
  */
  text-align: center;
  position: relative;
  margin-bottom:20px;
}

footer ul li {
  display: inline-block;
  margin: 5px 5px;
}

footer ul li a {
  color: #fff;
}

footer .copyright {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.6rem;
  font-weight: bold;
  padding: 20px;
}

/*
footer::before {
  content: '';
  display: block;
  position: absolute;
  top: -230px;
  left: 0px;
  width: 100%;
  height: 250px;
  background-image: url("../img/bg_footer.png");
  background-size: cover;
  background-position: center top;
}
*/
ul.item-tags {
  margin-bottom: 20px;
}

ul.item-tags li {
  display: inline-block;
  margin: 5px;
}

ul.item-tags li a {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #1282C0;
  color: #1282C0;
  font-weight: bold;
  text-decoration:none;
}

ul.item-tags li a:hover {
  background: #0A97B0;
  color: #fff;
}

a.totop {
  width: 60px;
  height: 60px;
  background-image: url("../img/totop.svg");
  position: fixed;
  bottom: 50px;
  right: 15px;
  background-size: cover;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index:10;
}

a.totop:hover {
  
}

a.totop img {
  width: 20px;
  vertical-align: middle;
}

.shftview ul.tab {
  overflow: hidden;
}

.shftview ul.tab li {
  float: left;
  font-size: 1.8rem;
  text-align: center;
  background: #eee;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border:3px solid #62a5c4;
  margin-left:1px;
  overflow: hidden;
}

.shftview ul.tab li:first-child {
  margin-left:0px;
}

.shftview ul.tab li a {
  display: block;
  color: #000;
  padding: 18px 0px;
  text-decoration:none;
  font-weight:bold;
}

.shftview ul.tab li.active,.shftview ul.tab li:hover {
  background: #41A7C7;
  font-weight:bolder;
}

.shftview ul.tab li.active a,.shftview ul.tab li:hover a {
  color: #fff;
}

.shftview ul.tab li:hover {
  font-weight: bold;
}

.shftview ul.tab::after {
  content: '';
  display: block;
  clear: both;
}

.shftview .table {
  border-top: none;
  margin-top: -1px;
  border:3px solid #62a5c4;
  border-top:0px;
}

.shftview .table th, .shftview .table td {
  padding: 10px 10px;
  font-weight:bolder;
}

.shftview .table th {
  background: #41a7c7 !important;
  color: #fff !important;
  border:2px solid #fff !important;
}

.shftview .table th span {
  font-size: 1.2rem;
  margin-left: 5px;
}

.shftview .table>tbody{
	border:0px;	
}

.shftview .table>tbody>tr:nth-of-type(even)>* {
	background:  #E6F9FD !important;
}

.shftview .table>tbody>tr:nth-of-type(odd)>* {
	background:  #fff !important;
}

/*
.shftview .table td dt {
  background: #5e5e5e;
  color: #fff;
}
*/

.shftview .table td a{
	text-decoration:none;
	position:relative;
	display:block;
	color:#2b2b2b;
}

.shftview .table td div{
	position:relative;
}

.shftview .table>tbody>tr>td>.book>*,.shftview .table>tbody>tr>td>.info>* {
	border:2px solid #2b2b2b;
	border-radius:10px;
	padding:2px 2px 2px 10px;
}

/*.shftview .table>tbody>tr>td>.book:hover>* {
    background:#0F87C3;
	color:#fff;
	border-radius:10px;
}*/

.shftview .table>tbody>tr>td>.full>* {
	/*background:#363636;
	color:#d6d6d6;*/
	border:2px solid #2b2b2b;
	border-radius:10px;
	padding:2px 2px 2px 10px;
}

.shftview .table>tbody>tr>td>.full>span {
	position:absolute;
	left:2rem;
	top:1rem;
	z-index:100;
	color:#fff;
	width:1rem;
	background:#ff0000;
	border:transparent;
	transform: rotate(-10deg);
	font-size:3rem;
	display: block;
	word-break: keep-all;
	text-shadow: black 0.1rem 0.1rem 0.2rem;
}

.shftview .table>tbody>tr>td>.close>* {
/*	background:#363636;
	color:#d6d6d6;*/
	border:2px solid #2b2b2b;
	border-radius:10px;
	padding:2px 2px 2px 10px;
}

.shftview .table>tbody>tr>td>.close>span {
	position:absolute;
	left:2rem;
	top:1rem;
	z-index:100;
	color:#fff;
	width:1rem;
	background:#0000ff;
	border:transparent;
	transform: rotate(-10deg);
	font-size:3rem;
	display: block;
	word-break: keep-all;
	text-shadow: black 0.1rem 0.1rem 0.2rem;
}

.shftview .table>tbody>tr>td>.freg>* {
/*	background:#eeeeee;
	color:#0a97b0;*/
	border:2px solid #2b2b2b;
	border-radius:10px;
	padding:2px 2px 2px 10px;
}

.shftview .table>tbody>tr>td>.freg>span {
	position:absolute;
	left:2rem;
	top:1rem;
	z-index:100;
	color:#fff;
	width:1rem;
	background:#ba7e08;
	border:transparent;
	transform: rotate(-10deg);
	font-size:3rem;
	display: block;
	word-break: keep-all;
	text-shadow: black 0.1rem 0.1rem 0.2rem;
}

.shftview .table td img{
	max-width:40%;
	width:auto;
	max-height:70%;
	height:auto;
}

.shftview .table a:hover {
  color: #0A97B0;
}

.shftview .table span.text-danger {
  font-size: 1.4rem;
}

.shftview .table a:hover span.text-danger {
	color: #ffe0e0 !important;
}

.shftview .table td {
  border: 1px solid rgba(236, 248, 253, 0.1);
}

.shftview .table th {
  width: 26%;
  text-align:center;
}

.shftview .table th:first-child {
  width: 22%;  
}

.shftview .table th.weekend {
  width: 20%;
}

.shftview .table th.weekend:first-child {
  width: 20%;
}

.weekview {
	width: 100%;
	height: 70vh;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	scrollbar-color: transparent transparent;
	scrollbar-width: thin;
	display:flex;
	justify-content:space-between;
}

.weekview::-webkit-scrollbar {
  display: none;
}

.weekview ul.tab {
  overflow: hidden;
}

.weekview ul.tab li {
  float: left;
  font-size: 1.8rem;
  text-align: left;
  background: #eee;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border:3px solid #62a5c4;
  margin-left:1px;
  overflow: hidden;
}

.weekview ul.tab li:first-child {
  margin-left:0px;
}

.weekview ul.tab li a {
  display: block;
  color: #000;
  padding: 18px 0px;
  text-decoration:none;
  font-weight:bold;
}

.weekview ul.tab li.active,.weekview ul.tab li:hover {
  background: #41A7C7;
  font-weight:bolder;
}

.weekview ul.tab li.active a,.weekview ul.tab li:hover a {
  color: #fff;
}

.weekview ul.tab li:hover {
  font-weight: bold;
}

.weekview ul.tab::after {
  content: '';
  display: block;
  clear: both;
}

.weekview .table {
  border-top: none;
  margin-top: 0px;
  border:3px solid #62a5c4;
  table-layout:fixed;
}

.weekview .table th, .weekview .table td {
  padding: 10px 10px;
  font-weight:bolder;
  text-align:center;
}

.weekview .table th {
  background: #8b8b8b !important;
  color: #fff !important;
  border:2px solid #fff !important;  
}

.weekview .table th span {
  font-size: 1.2rem;
  margin-left: 5px;
}

.weekview .table>tbody{
	border:0px;	
}

.weekview .table>tbody>tr:first-child>* {
	background: #41a7c7 !important;
	color: #fff !important;
}

.weekview .table>tbody>tr:nth-of-type(even)>* {
	background:  #fff !important;
}

.weekview .table>tbody>tr:nth-of-type(odd):not(:first-child)>* {
	background:  #E6F9FD !important;
}

/*
.weekview .table td dt {
  background: #5e5e5e;
  color: #fff;
}
*/

.weekview .table td a{
	text-decoration:none;
	position:relative;
	display:block;
	color:#2b2b2b;
}

.weekview .table td div{
	position:relative;
}

.weekview .table>tbody>tr>td>.book>* {
	border:2px solid #2b2b2b;
	border-radius:10px;
	text-align:left;
	padding:2px 2px 2px 10px;
	color: #2b2b2b;
}

/*.weekview .table>tbody>tr>td>.book:hover>* {
    background:#0F87C3;
	color:#fff;
	border-radius:10px;
}*/

.weekview .table>tbody>tr>td>.book a {
	color: #2b2b2b;
}

.weekview .table > tbody > tr > td > .book a:hover {
	color: #fff;
}

.weekview .table>tbody>tr>td>.info>* {
	border:2px solid #2b2b2b;
	border-radius:10px;
	text-align:left;
	padding:2px 2px 2px 10px;
	color: #2b2b2b;
}

.weekview .table>tbody>tr>td>.info:hover>* {
    background:#0F87C3;
	color:#fff;
	border-radius:10px;
}

.weekview .table>tbody>tr>td>.full>* {
	/*background:#363636;
	color:#d6d6d6;*/
	border:2px solid #2b2b2b;
	border-radius:10px;
	text-align:left;
	padding:2px 2px 2px 10px;
}

.weekview .table>tbody>tr>td>.full>span {
	position:absolute;
	left:2rem;
	top:1rem;
	z-index:100;
	color:#fff;
	width:1rem;
	background:#ff0000;
	border:transparent;
	transform: rotate(-10deg);
	font-size:3rem;
	display: block;
	word-break: keep-all;
	text-shadow: black 0.1rem 0.1rem 0.2rem;
}

.weekview .table>tbody>tr>td {
	width: 13%;
	min-width: 13%;
	max-width: 13%;
	word-break: break-all;
}

.weekview .table>tbody>tr>td:first-child {
	width: 9%;
	min-width: 9%;
	max-width: 9%;
	word-break: break-all;
	text-align:center;
}

.weekview .table>tbody>tr>td>.close>* {
	/*background:#363636;
	color:#d6d6d6;*/
	border:2px solid #2b2b2b;
	border-radius:10px;
	text-align:left;
	padding:2px 2px 2px 10px;
}

.weekview .table>tbody>tr>td>.close>span {
	position:absolute;
	left:2rem;
	top:1rem;
	z-index:100;
	color:#fff;
	width:1rem;
	background:#0000ff;
	border:transparent;
	transform: rotate(-10deg);
	font-size:3rem;
	display: block;
	word-break: keep-all;
	text-shadow: black 0.1rem 0.1rem 0.2rem;
}

.weekview .table>tbody>tr>td>.freg>* {
	/*background:#eeeeee;*/
	color:#2b2b2b;
	border-radius:10px;
}

.weekview .table>tbody>tr>td>.freg>span {
	position:absolute;
	left:2rem;
	top:1rem;
	z-index:100;
	color:#2b2b2b;
	width:1rem;
	background:transparent;
	border:transparent;
	transform: rotate(-10deg);
	font-size:3rem;
	display: block;
	word-break: keep-all;
	text-shadow: black 0.1rem 0.1rem 0.2rem;
}

.weekview .table>tbody>tr>td>img{
	max-width:40%;
	width:auto;
	max-height:70%;
	height:auto;
}

.weekview .table a:hover {
  color: #0A97B0;
}

.weekview .table span.text-danger {
  font-size: 1.4rem;
}

.weekview .table a:hover span.text-danger {
	color: #ffe0e0 !important;
}

.weekview .table td {
  border: 1px solid rgba(236, 248, 253, 0.1);
}

.weekview .table th {
  width: 26%;
}

/*.weekview .table th:first-child {
  width: 22%;
}*/

.weekview .table th.weekend {
  width: 20%;
}

.weekview .table th.weekend:first-child {
  width: 20%;
}

.noreg .table th {
	background-color: #41A7C7 !important;
	color: #fff !important;
	border: 1px solid #ddd !important;
	padding: 10px 20px !important;
}
.noreg thead > tr > th:first-child {
	border-radius: 10px 0px 0px 0px !important;
	border: 0px solid #ddd !important;
}
.noreg thead > tr > th:last-child {
	border-radius: 0px 10px 0px 0px !important;
	border: 0px solid #ddd !important;
}
.noreg .table td {
	font-weight: bold !important;
	border: 1px solid #ddd !important;
	padding: 10px 20px !important;
}
.noreg .table-striped > tbody > tr:nth-of-type(odd) > * {
	--bs-table-accent-bg: #E9FAFF !important;
}
.noreg .table td a {
	text-decoration: none !important;
}

.noreg .table td a:hover{
	color:#F17922 !important;
}

#myInput {
	background: rgba(255, 255, 255, 0.9);
	background-position-x: 0%;
	background-position-y: 0%;
	background-repeat: repeat;
	background-image: none;
	border: 1px solid #99C4D1;
	border-radius: 10px;
	padding: 8px 60px 8px 20px;
	color: #1282C0;
	background-image: url(../img/search_icon.svg);
	background-repeat: no-repeat;
	background-position: right 10px center;
}

.weekview-type {
	width: calc(100% - 120px);
	overflow: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.weekview-type::-webkit-scrollbar {
	display: none;
}

.weekview-type ul.tab li {
  width: calc(20% - 1px);
}

.calendar-type {
	width: calc(100% - 10px);
	overflow: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.calendar-type::-webkit-scrollbar {
	display: none;
}

.calendar-type ul.tab li {
  width: calc(20% - 1px);
}

.calendar-dr ul.tab li {
  width: calc(100% / 5);
}

.calendar-dr .table span.text-danger {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  a.totop {
    right: 20px;
    bottom: 40px;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  a.totop img {
    width: 15px;
  }
}


@media (max-width: 580px) {
  .shftview .table th span {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    margin-left: -10px;
  }
}

.shftview .table a:hover {
  color: #0A97B0;
}

.shftview .table span.text-danger {
  font-size: 1.4rem;
}

.shftview .table a:hover span.text-danger {
	color: #ffe0e0 !important;
}

@media (max-width: 580px) {
	.weekview .table th span {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		margin-left: -10px;
	}
}

.weekview .table a:hover {
	color: #0A97B0;
}

.weekview .table span.text-danger {
	font-size: 1.4rem;
}

.weekview .table a:hover span.text-danger {
	color: #ffe0e0 !important;
}

.ltype2 {
  display: none;
	-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	padding:0.5rem!important;
	margin:0.5rem!important;
	font-weight:bold;
	border-radius:10px;
}

.ltype2.reg .card-header {
  background-color: #41A7C7;
  color: #ffffff;
  border:transparent;
  padding:1rem!important;
}

.ltype2.fail .card-header {
  background-color: #c741a7;
  color: #ffffff;
  border:transparent;
  padding:1rem!important;
}

table.reglist{
	border-collapse: separate;
	border-spacing: 0;
	text-align:center;
	font-weight:bold;
}

table.reglist tr th,table.reglist tr td{
	border:1px solid #ddd;
}

table.reglist>tbody>tr:nth-of-type(even)>* {
	
	background:  #E6F9FD;
}

table.reglist>tbody>tr:nth-of-type(odd)>* {
	background:  #fff;
}

table.reglist tr th{
	color:#fff;
	background:#41A7C7;
}
table.reglist tr:first-child th:first-child{
  border-top-left:1px solid #41A7C7;
  border-top-left-radius: 10px;
}

table.reglist tr:first-child th:last-child{
  border-top-right:1px solid #41A7C7;
  border-top-right-radius: 10px;
}

table.reglist tr:last-child td:first-child{
  border-bottom-left:1px solid #41A7C7;
  border-bottom-left-radius: 10px;
}

table.reglist tr:last-child td:last-child{
  border-bottom-right:1px solid #41A7C7;
  border-bottom-right-radius: 10px;
}

table.reglistP{
	border-collapse: separate;
	border-spacing: 0;
	text-align:center;
	font-weight:bold;
}

table.reglistP tr th,table.reglistP tr td{
	border:1px solid #ddd;
}

table.reglistP tr th{
	color:#fff;
	background:#41A7C7;
}
table.reglistP tr:first-child th:first-child{
  border-top-left:1px solid #41A7C7;
  border-top-left-radius: 10px;
}

table.reglistP tr:first-child td:last-child{
  border-top-right:1px solid #41A7C7;
  border-top-right-radius: 10px;
}

table.reglistP tr:last-child th:first-child{
  border-bottom-left:1px solid #41A7C7;
  border-bottom-left-radius: 10px;
}

table.reglistP tr:last-child td:last-child{
  border-bottom-right:1px solid #41A7C7;
  border-bottom-right-radius: 10px;
}

table.faillist {
	border-collapse: separate;
	border-spacing: 0;
	text-align: center;
	font-weight: bold;
}

	table.faillist tr th, table.faillist tr td {
		border: 1px solid #ddd;
	}

	table.faillist > tbody > tr:nth-of-type(even) > * {
		background: #fccef4;
	}

	table.faillist > tbody > tr:nth-of-type(odd) > * {
		background: #fff;
	}

	table.faillist tr th {
		color: #fff;
		background: #c741a7;
	}

	table.faillist tr:first-child th:first-child {
		border-top-left: 1px solid #c741a7;
		border-top-left-radius: 10px;
	}

	table.faillist tr:first-child th:last-child {
		border-top-right: 1px solid #c741a7;
		border-top-right-radius: 10px;
	}

	table.faillist tr:last-child td:first-child {
		border-bottom-left: 1px solid #c741a7;
		border-bottom-left-radius: 10px;
	}

	table.faillist tr:last-child td:last-child {
		border-bottom-right: 1px solid #c741a7;
		border-bottom-right-radius: 10px;
	}

table.faillistP {
	border-collapse: separate;
	border-spacing: 0;
	text-align: center;
	font-weight: bold;
}

	table.faillistP tr th, table.faillistP tr td {
		border: 1px solid #ddd;
	}

	table.faillistP tr th {
		color: #fff;
		background: #c741a7;
	}

	table.faillistP tr:first-child th:first-child {
		border-top-left: 1px solid #c741a7;
		border-top-left-radius: 10px;
	}

	table.faillistP tr:first-child td:last-child {
		border-top-right: 1px solid #c741a7;
		border-top-right-radius: 10px;
	}

	table.faillistP tr:last-child th:first-child {
		border-bottom-left: 1px solid #c741a7;
		border-bottom-left-radius: 10px;
	}

	table.faillistP tr:last-child td:last-child {
		border-bottom-right: 1px solid #c741a7;
		border-bottom-right-radius: 10px;
	}

#sidemenu a {
  position: fixed;
  right: -16.4rem;
  transition: 0.3s;
  padding: 0.5rem 1rem!important;
  width: 20rem;
  text-decoration: none;
  font-size: 2rem;
  color: white;
  border-radius: 5px 0px 0px 0px;
  z-index:500;
}

#sidemenu a:hover {
  right: 0;
}

#sidemenu a.sidebtn1 {
  top:12rem;
  background-color: #000;
}

#sidemenu a.sidebtn2 {
  top:16rem;
  background-color: #9A7D0A;
}

#sidemenu a.sidebtn3 {
  top:20rem;
  background-color: #1A5276;
}

#sidemenu a.sidebtn4 {
  top:24rem;
  background-color: #1A5276;
}

#sidemenu a.sidebtn5 {
  top:28rem;
  background-color: #1A5276;
}

#sidemenu a.sidebtn6 {
  top:32rem;
  background-color: #1A5276;
}

#sidemenu a.sidebtn7 {
  top:36rem;
  background-color: #1A5276;
}

#sidemenu a.sidebtn8 {
  top:40rem;
  background-color: #1A5276;
}

#sidemenu a.sidebtn9 {
  top:44rem;
  background-color: #1A5276;
}

#sidemenu a.sidebtn10 {
  top:48rem;
  background-color: #1A5276;
}

@media (max-width: 1024px) {
/*  .shftview .table {
    table-layout: fixed;
  }*/
	.shftview ul.tab li {
		font-size: 1.5rem;
	}

  .shftview .table th, .shftview .table td {
    width: auto !important;
    word-break: break-all;
    padding: 10px;
  }
  .shftview .table th:nth-child(2), .shftview .table td:nth-child(2) {
    width: 100px;
  }
  .shftview .table th span {
    display: block;
  }

	.weekview {
		overflow-x: scroll;
	}
    .weekview .table {
    table-layout: fixed;
  }
	.weekview ul.tab li {
		font-size: 1.5rem;
	}

  .weekview .table th, .weekview .table td {
    /*width: auto !important;*/
    word-break: break-all;
    padding: 10px;
	width: 120px;
  }

   .weekview .table>tbody>tr>th:first-child {
    word-break: break-all;
    padding: 10px;
	width: 60px;
  }
  .weekview .table th span {
    display: block;
  }
}

@media (max-width: 767px) {
  .shftview .table td:first-child {
    font-size: 1.4rem;
  }
  .shftview .table>tbody>tr>td>.full>span {
	left:0rem;
	top:1rem;
	font-size:2.5rem;
	transform: rotate(0deg);
	text-align:left;
	width:100%;
	background:rgba(200,200,200, 0.7);
	color:#ff6d92;
	text-shadow: black 0.1rem 0.1rem 0.2rem;
	}

	.shftview .table > tbody > tr > td > .close > span {
		left: 0rem;
		top: 1rem;
		font-size: 2.5rem;
		transform: rotate(0deg);
		text-align: left;
		width: 100%;
		background: rgba(200,200,200, 0.7);
		color: #ff6d92;
		text-shadow: black 0.1rem 0.1rem 0.2rem;
	}

	.shftview .table > tbody > tr > td > .freg > span {
		left: 0rem;
		top: 1rem;
		font-size: 2.5rem;
		transform: rotate(0deg);
		text-align: left;
		width: 100%;
		background: rgba(200,200,200, 0.7);
		color: #ff6d92;
		text-shadow: black 0.1rem 0.1rem 0.2rem;
	}

	.weekview .table td:first-child {
		font-size: 1.4rem;
	}

	.weekview .table > tbody > tr > td > .full > span {
		left: 0rem;
		top: 1rem;
		font-size: 2.5rem;
		transform: rotate(0deg);
		text-align: left;
		width: 100%;
		background: rgba(200,200,200, 0.7);
		color: #ff6d92;
		text-shadow: black 0.1rem 0.1rem 0.2rem;
	}

	.weekview .table > tbody > tr > td > .close > span {
		left: 0rem;
		top: 1rem;
		font-size: 2.5rem;
		transform: rotate(0deg);
		text-align: left;
		width: 100%;
		background: rgba(200,200,200, 0.7);
		color: #ff6d92;
		text-shadow: black 0.1rem 0.1rem 0.2rem;
	}

	.weekview .table > tbody > tr > td > .freg > span {
		left: 0rem;
		top: 1rem;
		font-size: 2.5rem;
		transform: rotate(0deg);
		text-align: left;
		width: 100%;
		background: rgba(200,200,200, 0.7);
		color: #ff6d92;
		text-shadow: black 0.1rem 0.1rem 0.2rem;
	}
	
	.ltype1 {
		display: none;
	}
	.ltype2 {
		display: block;
	}
}

ul.list-item li {
  margin: 10px 0px;
}


ul li.list-group-item{
	border:transparent;
	background:transparent;
	font-weight:bold;
}

.hint{
	color: #F17922;
}

.hintbtn{
	color: #F17922;
	border:1px solid #F17922;
	border-radius:5px;
	padding: 0.5rem!important;
	display: inline-block;
}

.hintbtn:hover{
	color: #fff;
	background: #F17922;
}


.printbtn{
	padding: 0.5rem!important;
	border-radius: 5px;
	background:#41A7C7;
	color:#fff;
	border:transparent;
	width:100%;
	display: inline-block;
}

.func-tool {
  margin-top: 30px;
}

.datepicker th, .datepicker td {
  font-size: 1.6rem;
  padding: 10px;
}

.datepicker td.day.active {
  background: #0A97B0 !important;
}

.select2-container .select2-selection--single {
  height: 50px;
  border-color: #ddd;
  background-image: url("../img/ic_angle.svg");
  background-size: 13px 9px;
  background-repeat: no-repeat;
  background-position: top 20px right 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 25px 0 0px;
}

.select2-container .select2-selection--single::-ms-expand {
  display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 10px;
  font-size: 1.8rem;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.modal .modal-header .modal-title {
  font-size: 2rem;
}

.modal .modal-body {
  padding: 40px 15px;
}

.card-regist {
  margin: 10px 0 15px 0;
}

.card-regist .title {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

.card-regist .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}

.card-regist .con .func-tool {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.ft-menu {
	position: fixed;
	bottom: -10px;
	left: 0px;
	width: 100vw;
	height:50px;
	padding: 2px;
	color: #fff;
	display: none;
	justify-content: space-between;
	text-align: center;
	z-index:1000;
}
.w25{
	width:25%;
}

.w20{
	width:20%;
}

.ft-btn {
	border-color: transparent;
	border-radius: 2px 2px 0px 0px;
	/*background-color: #4FA2D0;*/
	background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 70%,rgba(125,185,232,1) 100%);
	box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
	margin: 2px 1px 2px 0px;
	padding: 2px;
	color: #fff;
	text-decoration: none;
	text-shadow: #64cded 1px 0 3px;
	font-weight: 900;
	height: 4.5rem;
	align-self: center;
	display: grid;
	font-size: 1.3rem;
	line-height: 1.2rem;
}
.ft-btn:hover {
	/*background-color: #d0be4f;*/
	background: linear-gradient(to bottom, rgba(30,153,87,1) 0%,rgba(41,216,137,1) 70%,rgba(125,232,185,1) 100%);
}

.ft-btn.active{
	/*background-color:#205776;*/
	background: linear-gradient(to bottom, rgba(153,87,30,1) 0%,rgba(216,137,41,1) 70%,rgba(232,185,125,1) 100%);
	color:#eee;
}

.ft-btn a, a:hover {
	color:#fff;
}

.ft-btn .fa {
	height:5px;
}

@media (max-width: 1199px) {
	.ft-menu {
		display: flex;
	}
}

@media (max-width: 580px) {
  .card-regist .con {
    display: block;
  }
  .card-regist .con .func-tool {
    text-align: center;
  }
}

span.gap {
  margin: 0 5px 0 2px;
  color: rgba(0, 0, 0, 0.15);
}
/*# sourceMappingURL=main.css.map */

@media (max-width: 320px) {
	body {
		font-size: 1.3rem;
	}

	main h1 {
		font-size: 1.8rem;
		font-weight: bold;
		letter-spacing: 2px;
		margin: 20px 0 15px 0;
	}

	.form-group label {
		font-size: 1.5rem;
		font-weight: bold;
	}

	.form-group .form-control {
		height: 50px;
		border: 1px solid #ddd;
		border-radius: 8px;
		font-size: 1.5rem;
	}

	main ul.main-tab li {
		width: calc(50% - 14px);
		border: 4px solid #ccc;
		margin: 7px;
		border-radius: 8px;
	}

		main ul.main-tab li a {
			padding: 20px 10px;
		}

		main ul.main-tab li.active {
			border-color: #1F6FB2;
		}

	main .lside {
		margin-left: 1.5rem;
		margin-right: 5rem;
		width: calc(100%-1rem);
	}

	.btn {
		padding: 10px 20px;
		border-radius: 8px;
		font-size: 1.5rem;
	}

	.regflow span, .regflow a {
		/* position: absolute; */
		top: 2.5rem;
		left: 2rem;
		padding-left: 2rem;
		z-index: 1;
		text-decoration: none;
		color: #333;
	}

	.regflow .numberCircle {
		border-radius: 50%;
		width: 4rem;
		height: 4rem;
		padding: 5px;
		background-color: #bbb;
		border: 3px solid #0F87C3;
		color: #fff;
		text-align: center;
		position: absolute;
		left: -2rem;
		top: 2rem;
		z-index: 1;
		font: 2rem Arial, sans-serif;
	}

	.regflow .block {
		height: 8rem;
		width: 12rem;
		font-size: 1.4rem;
		padding: 0px;
	}

	.regflow span {
		position: absolute;
		padding-left: 0rem;
	}

	.search-btn {
		width: 70%;
		border-color: transparent;
		border-radius: 10px;
		background-color: rgba(230, 131, 60, 1);
		margin: 10px 0px;
		color: #fff;
		font-weight: bold;
		position: relative;
		left: 15%;
	}

	.area-btn {
		width: 100%;
		height: 100%;
		border-color: transparent;
		border-radius: 10px;
		background-color: rgba(255, 255, 255, 1);
		margin: 10px 0px;
		color: rgba(17, 130, 192, 1);
		font-weight: bold;
		padding: 2rem 1rem;
		font-size: 1.4rem;
		border: 3px solid #4FA2D0;
		display: block;
		width: 120%;
	}

		.area-btn.active {
			background-color: rgba(17, 130, 192, 1);
			color: rgba(255, 255, 255, 1);
			-webkit-animation: areaRotate 1s linear;
			animation: areaRotate 0.5s linear;
		}

	footer .copyright {
		color: rgba(0, 0, 0, 0.6);
		font-size: 1.2rem;
		font-weight: bold;
		padding: 20px;
	}
}

@media print {
    .no-print, .no-print * {
        display: none !important;
    }
}

/* IE9, IE10, IE11 */
@media screen and (min-width:0\0) {
	main .container {
		margin-top: 120px;
	}

	.btn {
		font-size: 1.6rem !important;
	}

	.board-item .btn-default {
		box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.7);
		background-color: #fff !important;
	}

		.board-item .btn-default:hover {
			background: #4FA2D0 !important;
		}

	.area-btn {
		border: 3px solid #4FA2D0 !important;
	}

		.area-btn span {
			font-size: 1.6rem;
		}

	.filter-option {
		font-size: 1.6rem;
	}

	.text {
		font-size: 1.6rem !important;
	}

	.search-btn {
		background-color: rgba(230, 131, 60, 1) !important;
	}

	a.totop {
		width: 48px;
	}
	.modal {
		left:0%;
	}
	.modal .modal-body {
		overflow-y:scroll;
	}
	.modal-dialog-centered {
		height: calc(100% - (.5rem * 2));
	}
}

@media (min-width:576px) {
	.modal-ie {
		left: calc(50% - 30rem) !important;
	}

	.modal-dialog-centered {
		height: calc(100% - (1.75rem * 2));
	}
}

@media (min-width:576px) {
	.modal-ie {
		left: calc(50% - 30rem) !important;
	}

	.modal-dialog-centered {
		height: calc(100% - (1.75rem * 2));
	}
}

.leftArea {
	position: sticky;
	top: calc(3.6rem + 32px);
	left: 0px;
	z-index: 100;
	width: 60px;
	height: 500px;
}

.rightArea {
	position: sticky;
	top: calc(3.6rem + 32px);
	right: 0px;
	z-index: 100;
	width: 60px;
	height: 500px;
}

#btnL1 {
	width: 60px;
	height: 120px;
	font-size: 1.6rem;
	padding: 10px 3px;
	line-height: 30px;
	display: flex;
	align-content: center;
}

#btnN1 {
	width: 60px;
	height: 120px;
	font-size: 1.6rem;
	padding: 10px 3px;
	line-height: 30px;
	display: flex;
	align-content: center;
}

#btnL1, #btnN1 {
	display: block;
}

@media (min-width: 1024px) {
	#btnN1, #btnL1 {
		display: block;
	}
}

#btnLD1 {
	width: 60px;
	height: 120px;
	font-size: 1.6rem;
	padding: 10px 3px;
	margin-top: 10px;
	line-height: 30px;
	display: flex;
	align-content: center;
}

#btnND1 {
	width: 60px;
	height: 120px;
	font-size: 1.6rem;
	padding: 10px 3px;
	margin-top: 10px;
	line-height: 30px;
	display: flex;
	align-content: center;
}

#btnLD1, #btnND1 {
	display: block;
}

@media (min-width: 768px) {
	#btnND1, #btnLD1 {
		display: none;
	}
}

#timeTable {
	overflow: auto;
	max-height: 500px;
}

#timeTable tbody th {
	position: sticky; 
	top: 0px; 
	z-index: 101;
	height:60px;
}

#timeTable tbody td a:hover {
	background-color: darkgreen;
}

#timeTable tbody td dl dt:first-child {
	border-bottom: 1px solid orange;
}

#timeTable tbody td dl dt:first-child .btn {
	display: inline-block;
	border: solid 1px;
	padding: 2px 5px;
	width: 90%;
	text-decoration: none;
	color: #098da8 !important;
}

#timeTable tbody td dl dd:last-child {
	border-top: 1px solid orange;
}

#timeTable tbody td dl dd:last-child .btn {
	display: inline-block;
	border: solid 1px;
	padding: 2px 5px;
	width: 90%;
	text-decoration: none;
	color: #2b2b2b !important;
	box-shadow:black 0.2rem 0.1rem 0.1rem
}

#timeTable tbody td .full dl dd:last-child .btn {
	color: #fff !important;
	background: #ff0000 !important;
	box-shadow: black 0.2rem 0.1rem 0.1rem;
	cursor: not-allowed;
}

#timeTable tbody td .close dl dd:last-child .btn {
	color: #fff !important;
	background: #0000ff !important;
	box-shadow: black 0.2rem 0.1rem 0.1rem;
	cursor: not-allowed;
}

#timeTable tbody td .freg dl dd:last-child .btn {
	color: #fff !important;
	background: #ba7e08 !important;
	box-shadow: black 0.2rem 0.1rem 0.1rem;
}

#timeTable tbody td .book dl dd:last-child .btn:hover {
	color: #fff !important;
	background-color: #ba7e08 !important;
	box-shadow: black 0.2rem 0.1rem 0.1rem;
}

.failMsg {
	font-weight:bold;
	color:#ff0000;
}

.failListMsg {
	font-weight: bold;
	color: #c741a7;
}