@charset "UTF-8";
* {
  font-family: Arial, Helvetica, "Microsoft JhengHei", "Apple LiGothic Medium", sans-serif;
  border-radius: 0;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  background-color: #eee;
  background-image: url(../images/bg_main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: hsla(210, 0%, 100%, 0.80);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

:root{
  --primary:hsl(190, 100%, 40%) !important;
  --secondary:hsl(0, 0%, 60%) !important;
  --info:hsl(185, 50%, 55%) !important;
  --success:hsl(75, 100%, 40%) !important;
  --warning:hsl(45, 92.5%, 55%) !important;
  --danger:hsl(340, 65%, 60%) !important;
  --gray:#999 !important;
  --red:#F00 !important;
  --dark:#000 !important;
  --radius:0;
  --radius_s:0;
}

.modal-title, .h6, .h5, .h4, .h3, .h2, .h1 {
  font-weight: 600;
  line-height: 1.8;
}

.img_1by1 img, .img_4by3 img, .img_16by9 img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.card-text p, .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.h1 {
  font-size: 4.8rem;
}
.h2 {
  font-size: 3.8rem;
}
.h3 {
  font-size: 3rem;
}
.h4 {
  font-size: 2.4rem;
}
.h5 {
  font-size: 2rem;
}
.h6 {
  font-size: 1.8rem;
}

p {
  font-size: 1.6rem;
  padding: 0;
  margin-bottom: 0px;
}

.small {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}

a {
  color: var(--info);
}
a:hover {
  color: #000;
  text-decoration-style: dotted;
  -webkit-text-underline-offset: 5px;
  -moz-text-underline-offset: 5px;
  -ms-text-underline-offset: 5px;
  text-underline-offset: 5px;
}

.cjk_counter {
  list-style: none;
  counter-reset: cjk_counter;
  padding-left: 2em;
}
.cjk_counter li {
  margin-bottom: 0.5rem;
}
.cjk_counter li:before {
  counter-increment: cjk_counter 1;
  content: counter(cjk_counter, cjk-ideographic) "、";
  margin-left: -2em;
}

.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: hsl(0, 0%, 60%) !important;
}
.text-info {
  color: var(--info) !important;
}
.text-success {
  color: var(--success) !important;
}
.text-warning {
  color: var(--warning) !important;
}
.text-danger {
  color: var(--danger) !important;
}
.text-gray {
  color: #999 !important;
}
.text-red {
  color: #F00 !important;
}
.text-dark {
  color: #000 !important;
}

.img_16by9 {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.img_16by9 img {
  width: 100%;
  height: auto;
}
.img_4by3 {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}
.img_4by3 img {
  width: 100%;
  height: auto;
}
.img_1by1 {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.img_1by1 img {
  width: auto;
  height: 100%;
  max-width: 1000%;
}

.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: hsl(0, 0%, 60%) !important;
}
.bg-info {
  background-color: var(--info) !important;
}
.bg-success {
  background-color: var(--success) !important;
}
.bg-warning {
  background-color: var(--warning) !important;
}
.bg-danger {
  background-color: var(--danger) !important;
}
.bg_sec {
  background-color: hsl(50, 80%, 90%);
}

.btn {
  display: inline-block;
  color: #333;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  line-height: 2rem;
  border-radius: var(--radius_s);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.3);
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover::before {
  left: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-lg {
  padding: 1rem 4rem;
  font-size: 1.8rem;
  line-height: 1.5;
  border-radius:var(--radius_s);
}
.btn-link {
  color: var(--primary);
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
  color: var(--primary);
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}
.btn-primary {
  background-color: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--primary);
  color: #FFF;
  border-color: var(--primary);
  -webkit-filter: brightness(95%) contrast(120%);
          filter: brightness(95%) contrast(120%);
}
.btn-secondary {
  background-color: hsl(0, 0%, 60%);
  color: #FFF;
  border-color: hsl(0, 0%, 60%);
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background-color: hsl(0, 0%, 60%);
  color: #FFF;
  border-color: hsl(0, 0%, 60%);
  -webkit-filter: brightness(95%) contrast(120%);
          filter: brightness(95%) contrast(120%);
}
.btn-info {
  background-color: var(--info);
  color: #FFF;
  border-color: var(--info);
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
  background-color: var(--info);
  color: #FFF;
  border-color: var(--info);
  -webkit-filter: brightness(95%) contrast(120%);
          filter: brightness(95%) contrast(120%);
}
.btn-success {
  background-color: var(--success);
  color: #FFF;
  border-color: var(--success);
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
  background-color: var(--success);
  color: #FFF;
  border-color: var(--success);
  -webkit-filter: brightness(95%) contrast(120%);
          filter: brightness(95%) contrast(120%);
}
.btn-warning {
  background-color: var(--warning);
  color: #FFF;
  border-color: var(--warning);
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  background-color: var(--warning);
  color: #FFF;
  border-color: var(--warning);
  -webkit-filter: brightness(95%) contrast(120%);
          filter: brightness(95%) contrast(120%);
}
.btn-danger {
  background-color: var(--danger);
  color: #FFF;
  border-color: var(--danger);
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  background-color: var(--danger);
  color: #FFF;
  border-color: var(--danger);
  -webkit-filter: brightness(95%) contrast(120%);
          filter: brightness(95%) contrast(120%);
}

.border-primary {
  border-color: var(--primary) !important;
}
.border-secondary {
  border-color: hsl(0, 0%, 60%) !important;
}
.border-info {
  border-color: var(--info) !important;
}
.border-success {
  border-color: var(--success) !important;
}
.border-warning {
  border-color: var(--warning) !important;
}
.border-danger {
  border-color: var(--danger) !important;
}

.header {
  display: block;
  width: 100vw;
  background-color: #FFF;
  padding: 0;
  -webkit-box-shadow: 3px 3px 20px hsla(0, 0%, 0%, 0.1);
          box-shadow: 3px 3px 20px hsla(0, 0%, 0%, 0.1);
  overflow: visible;
}
header{
  width: 100%;
  overflow-x: hidden;
}
.banner {
  width: 100%;
  aspect-ratio: 7/2;
  position: relative;
  overflow: hidden;
}
.banner img {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width:576px) {
  .banner {
    aspect-ratio: 1/1;
  }
}
.navbar.navbar-expand-lg {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;  
}
@media screen and (max-width: 1024px) {
  .navbar.navbar-expand-lg {
    box-shadow: 3px 3px 10px hsla(0, 0%, 0%, 0.05);
  }
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 600;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--radius);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.navbar-brand img {
  display: inline-block;
  width: clamp(2rem, 10%, 5rem);
  margin-right: 0.5rem;
}
.navbar-brand span {
  color: var(--primary);
  font-size: 2.4rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
@media (max-width: 1024px) {
  .navbar-brand {
    font-size: 2rem;    
  }
}
@media (max-width: 576px) {
  .navbar-brand {
    height: 50px;
    font-size: 1.8rem;
    padding: 0;
    margin: 0;
  }
  .navbar-brand img {
    width:2.4rem;
  }
}
#mainMenu {
  padding: 1rem 0;
}
#mainMenu .navbar-nav .nav-link {
  display: block;
  color: #eee;
  font-size: 2rem;
  font-weight: 600;
  padding: 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#mainMenu .navbar-nav .nav-link:hover {
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1366px) {
  #mainMenu{
    margin-left: auto;
  }
  #mainMenu .navbar-nav .nav-item {
    display: inline-block;
  }
  #mainMenu .navbar-nav .nav-link {
    font-size: 1.8rem;
    text-align: center;
    padding: 0 15px;
  }
}
@media (max-width: 1024px) {  
  #mainMenu .navbar-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #mainMenu{
    border-top: 1px solid #FFF;
    padding: 0;
    margin-top: 5px;
  }
  #mainMenu .navbar-nav .nav-link {
    font-size: 2.0rem;
    line-height: 2;
    border-bottom: 1px dotted hsla(0, 0%, 100%, .5);
    padding: 5px 20px;
  }
}

.navbar-dark .navbar-toggler {
  width: 40px;
  height: 40px;
  background-color: hsla(0, 0%, 0%, 0);
  color: #fff;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  border-radius:var(--radius);
  padding: 4px 4px;
}
@media screen and (max-width: 768px) {
  .navbar-dark .navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}
.navbar-dark .navbar-toggler-icon {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-dark .navbar-toggler-icon::before, .navbar-dark .navbar-toggler-icon::after {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-dark .navbar-toggler-icon::before {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
          transform: translate(-50%, -50%) rotateZ(45deg);
}
.navbar-dark .navbar-toggler-icon::after {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
          transform: translate(-50%, -50%) rotateZ(-45deg);
}
.navbar-dark .collapsed .navbar-toggler-icon {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-dark .collapsed .navbar-toggler-icon::before, .navbar-dark .collapsed .navbar-toggler-icon::after {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-dark .collapsed .navbar-toggler-icon::before {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -10px) rotateZ(0deg);
          transform: translate(-50%, -10px) rotateZ(0deg);
}
.navbar-dark .collapsed .navbar-toggler-icon::after {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, 10px) rotateZ(0deg);
          transform: translate(-50%, 10px) rotateZ(0deg);
}

.dropdown-toggle::after {
  margin-left: 0;
  vertical-align: middle;
  position: absolute;
  right: 0.6em;
  top: 0.6em;
}
@media (max-width: 1024px) {
  .dropdown-toggle::after {
    right: 0.4em;
    top: 0.8em;
  }
}
.dropdown-menu {
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 0;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 0;
}
.dropdown-menu::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--primary);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  margin-top: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: -10px;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .dropdown-menu {
    margin-bottom: 10px;
    position: static;
    top: 100%;
    left: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  font-size: 1.6rem;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px dotted #ddd;
  padding: 0.5em 2em;
}
.dropdown-item:first-child {
  border-radius: var(--radius);
}
.dropdown-item:last-child {
  border-radius: var(--radius);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--info);
  background-color: hsla(0, 0%, 0%, 0);
}
.dropdown-item:hover span, .dropdown-item:focus span {
  color: var(--info);
}

.footer {
  width: 100%;
  background-color: hsl(185, 40%, 80%);
  color: #666;
  font-size: 1.4rem;
  line-height: 1.5;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.footer p {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.foot_org{
  margin-bottom: 1rem;
}

@media screen and (max-width:576px) {
  .foot_org img{
    display: block;
    width: 80%;
    margin: 0 auto;
  }  
}
.copyright {
  color: #eee;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}

.gotop {
  width: 50px;
  height: 50px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  border-radius: var(--radius);
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 0.5;
}
.gotop a {
  color: #fff;
  font-size: 20px;
  line-height: 50px;
}
.gotop:hover {
  opacity: 0.8;
}

.tofix {
  height: 7rem;
}

.p_sec {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.main {
  min-height: calc(100vh - 18.55rem);
}

.page_title {
  color: #000;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .page_title {
    font-size: 3rem;
    letter-spacing: 0.1rem;
  }
}

.title {
  color: #000;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  padding: 0.5rem 1rem;
}

.lead {
  display: block;
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 1rem 1rem;
}

.breadcrumb {
  background-color: transparent;
  font-size: 1.4rem;
  border-radius: var(--radius);
  padding: 0.5em 1.5rem;
  margin-bottom: 0;
}
.breadcrumb a {
  color: var(--primary);
}
.breadcrumb-item.active {
  color: #666;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "．";
}

.card {
  border-radius: var(--radius);
  overflow: visible;
  margin: 0 0 3rem;
}
.card-img, .card-img-top {
  border-radius: var(--radius);
  border: none;
}
.card-body {
  padding: 2rem 2rem 4rem;
  position: relative;
}
.card-title {
  height: 6.3rem;
  color: #000;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 1rem;
}
.card-title a {
  color: #000;
}
.card-title a:hover {
  color: var(--danger);
}
.card-text p {
  height: 4.2rem;
  color: #666;
  font-size: 1.4rem;
}

.modal-header {
  background-color: var(--primary);
  color: #FFF;
}
.modal-title {
  font-size: 30px;
  font-size: 3rem;
}

.col-form-label {
  color: #000;
  font-weight: 600;
  text-align: right;
  padding-top: 13px;
  padding-bottom: 13px;
}
@media screen and (max-width: 576px) {
  .col-form-label {
    text-align: left;
  }
}

.form-control {
  height: 50px;
  color: #666;
  font-size: 1em;
  vertical-align: middle;
  border: 1px solid #ddd;
  border-radius: var(--radius_s);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 10px;
  margin-bottom: 1rem;
}

.input-group-text {
  font-size: 1em;
  color: #666;
  background-color: transparent;
  border: 0;
  border-left: 1px solid #ddd;
  border-radius: var(--radius_s);
  padding: 0.375em 0.75em;
}
.input-group-append .btn {
  border-radius: var(--radius_s);
}
.input-group .form-control {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.login_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 20rem;
  background-color: hsla(0, 0%, 100%, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid var(--info);
  border-radius: var(--radius);
  padding: 5rem 2rem 4rem;
  margin: 0 1rem;
  position: relative;
}
.login_item:hover {
  background-color: hsl(0, 0%, 100%);
}
.login_item:hover_txt {
  color: #000;
  text-decoration: none;
}
.login_img {
  display: block;
  color: var(--info);
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.login_img::before {
  content: "";
  display: block;
  width: 7rem;
  height: 7rem;
  background-color: var(--info);
  border-radius: var(--radius);
  opacity: 0.25;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.login_txt {
  display: block;
  width: 100%;
  color: #333;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
.login_txt:hover {
  color: #000;
  text-decoration: none;
}
.login_pw .form-control {
  border-right: none;
}
.login_pw .input-group-text {
  background-color: transparent;
  color: #999;
  border: 1px solid #ddd;
  border-left: none;
  position: relative;
}
.login_pw .input-group-text:focus {
  outline: none;
}

.custom-control-inline {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.custom-control-label {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
}
.custom-control-label::before {
  width: 1.5em;
  height: 1.5em;
  top: 0;
  left: -2.5rem;
}
.custom-control-label::after {
  width: 1.5em;
  height: 1.5em;
  top: 0;
  left: -2.5rem;
}

.custom-checkbox .custom-control-label {
  margin-bottom: 10px;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: var(--info);
  background-color: var(--info);
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accordion {
  margin: 0;
}
.accordion > .card {
  border: none;
}
.accordion > .card > .card-header {
  display: inline-block;
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
}
.accordion > .card > .card-header .btn .fa-chevron-right {
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion > .card > .card-header .btn.collapsed .fa-chevron-right {
  -webkit-transform: rotateZ(0deg);
          transform: rotateZ(0deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion > .card .card-body {
  border: 0.1rem solid var(--danger);
}

/*---------- Y/N ----------*/
.toggleGroup {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

.toggleInput {
  display: none;
}
.toggleInput:checked + .toggleBtn.switch {
  background-color: var(--warning);
}
.toggleInput:checked + .toggleBtn.switch:after {
  left: calc(2em + 0.2rem);
}
.toggleInput:checked + .toggleBtn.switch span.on {
  opacity: 1;
}
.toggleInput:checked + .toggleBtn.switch span.off {
  opacity: 0;
}

.toggleBtn {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: block;
  position: relative;
  width: 3em;
  height: 2em;
  border-radius: 1em;
  cursor: pointer;
}
.toggleBtn.switch {
  width: 4em;
  background-color: #AAA;
  padding: 0.2rem;
}
.toggleBtn.switch span {
  display: block;
  position: absolute;
  width: calc(4em - 0.8rem);
  color: #fff;
  line-height: calc(2em - 0.4rem);
  font-weight: 600;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.toggleBtn.switch span.on {
  opacity: 0;
  text-align: right;
  padding-right: 2em;
}
.toggleBtn.switch span.off {
  opacity: 1;
  text-align: left;
  padding-left: 2em;
}
.toggleBtn.switch:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 0.4rem;
  left: 0.4rem;
  -webkit-transition: left 0.2s ease;
  transition: left 0.2s ease;
  width: calc(1.8em - 0.4rem);
  height: calc(1.8em - 0.4rem);
  background-color: #fff;
}

.nav-tabs {
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 0;
  margin: 0 4rem 0;
}
.nav-tabs .nav-item:not(:last-child) {
  margin-right: 1rem;
}
.nav-tabs .nav-link {
  color: #FFF;
  background-color: transparent;
  font-size: 1.8rem;
  font-weight: 600;
  border: 1px solid transparent;
  margin-bottom: -1px;
  border-radius: var(--radius);
  padding: 1rem 2rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  background-color: hsla(0, 0%, 0%, 0.1);
  border-color: transparent;
}
.nav-tabs .nav-link.active {
  background-color: #FFF;
}

.nav-pills {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-pills .nav-link {
  background-color: #bbb;
  color: #eee;
  line-height: 3rem;
  border-radius: var(--radius);
  padding: 0.5rem 2rem;
}
.nav-pills .nav-link:not(:last-child) {
  margin-right: 1rem;
}
.nav-pills .nav-link:hover {
  background-color: #999;
  color: #FFF;
}
.nav-pills .nav-link.active {
  background-color: hsl(195, 80%, 60%);
}

.box {
  background-color: #fff;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  -webkit-box-shadow: 3px 3px 20px hsla(0, 0%, 0%, 0.1);
          box-shadow: 3px 3px 20px hsla(0, 0%, 0%, 0.1);
  padding: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.box .title {
  font-size: 2.4rem;
  background-color: var(--primary);
  color: #fff;
  line-height: 1.5;
  border-radius: var(--radius);
  padding: 0.5rem 1.5rem;
}
.box .btn_del {
  font-size: 1.6rem;
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.dw_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dw_list li {
  color: #333;
  font-size: 1.8rem;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  padding: 1rem;
}
.dw_list a {
  color: #333;
  font-size: 1.8rem;
  vertical-align: middle;
}
.dw_list a:hover {
  color: var(--info);
}
.dw_list img {
  width: 5rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.table_rwd {
  background-color: #fff;
  word-wrap: break-word;
  word-break: break-all;
  margin-top: 0rem;
  margin-bottom: 3rem;
}
.table_rwd thead > tr {
  background-color: var(--success);
  color: #FFF;
  border: 0.15rem solid var(--success);
}
.table_rwd thead > tr > th {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border-bottom: none;
  border-right: 0.1rem solid #fff;
}
.table_rwd tbody > tr:first-child {
  border-top: 0.1rem solid #ddd;
}
.table_rwd tbody > tr > th {
  background-color: hsl(210, 80%, 90%);
  text-align: center;
  vertical-align: middle;
  border-top: none;
  border-right: 0.1rem solid #ddd;
  border-bottom: 0.1rem solid #fff;
  border-left: 0.1rem solid #ddd;
}
.table_rwd tbody > tr > td {
  border-top: none;
  border-right: 0.1rem solid #ddd;
  border-bottom: 0.1rem solid #ddd;
  border-left: 0.1rem solid #ddd;
}
.table_rwd tbody > tr > td .form-control {
  margin-bottom: 0;
}

.msgbox {
  background-color: hsla(45, 92.5%, 80%, 0.6);
  color: var(--danger);
  text-align: center;
  border: 2px dotted var(--danger);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 3rem;
}
ol li{
  line-height: 2;
}
ol li::marker{
  color: #FFF;
}
ol li::before{
  content: '';
  display: inline-block;
  background-color: var(--info);  
  width: 26px;
  height: 26px;
  vertical-align: top;  
  margin-left: -1.5em;
  margin-right: 0.5em;
  position: relative;
  z-index: -1;
}