@charset "utf-8";
/* ==================================================
empty-page
================================================== */
#empty-page {
  background: #a99ccd;
}
#empty-page #login-box {
  text-align: center;
  /*width: 400px;*/
  /*height: 300px;*/
  /*padding: 20px;*/
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /*background: #181c25;*/
}

.light-disableddetail {
    background-color: #d7d2c9;
}

.card__h4title {
    font-size:14px;
}

.enter-password {
    margin: 0 auto;
    position: relative;
    padding: 50px;
    width: 360px;
    /*min-height: 380px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    background: rgb(255 255 255);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.enter-password::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border-radius: 5px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 2%);
}

.enter-password .form {
  position: relative;
  width: 100%;
  height: 100%;
}
.enter-password .form h2 {
  color: #1B0927;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-size: 1.5em;
  font-weight: bold;
}
.enter-password .form .inputBx {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.enter-password .form .inputBx input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #E2E4E6;
  background: rgba(255, 255, 255, 0.2);
  padding: 7px 10px;
  padding-left: 40px;
  border-radius: 3px;
  color: #4f5353;
  font-size: 1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: initial;
}
.enter-password .form .inputBx button {
  width: 100%;
}
.enter-password .form .inputBx .password-control {
  position: absolute;
  top: 11px;
  right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(https://snipp.ru/demo/495/view.svg) 0 0 no-repeat;
  transition: 0.5s;
}
.enter-password .form .inputBx .view {
  background: url(https://snipp.ru/demo/495/no-view.svg) 0 0 no-repeat;
  transition: 0.5s;
}
.enter-password .form .inputBx .fas {
  position: absolute;
  top: 13px;
  left: 13px;
}
.enter-password .form .inputBx input[type=button] {
  background: #a99ccd;
  color: #1B0927;
  /*max-width: 100px;*/
  padding: 8px 10px;
  box-shadow: none;
  letter-spacing: 1px;
  cursor: pointer;
  /*transition: 1.5s;*/
  text-align: center;
}
.enter-password .form .inputBx input[type=button]:hover {
  /*background: linear-gradient(115deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.25));*/
  background-color: #EB98B4;
  color: #1B0927;
  transition: 0.5s;
}
.enter-password .form .inputBx input::placeholder {
  color: #fff;
}
.enter-password .form .inputBx span {
  position: absolute;
  left: 30px;
  padding: 10px;
  display: inline-block;
  color: #1B0927;
  transition: 0.5s;
  pointer-events: none;
}
.enter-password .form .inputBx input:focus ~ span,
.enter-password .form .inputBx input:valid ~ span {
  transform: translateX(-30px) translateY(-32px);
  font-size: 0.9375em;
}
.enter-password .form p {
  color: #fff;
  font-size: 0.9375em;
  margin-top: 5px;
}
.enter-password .form p a {
  color: #fff;
}
.enter-password .form p a:hover {
  background-color: #000;
  background-image: linear-gradient(to right, #434343 0%, black 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.remember {
  position: relative;
  display: inline-block;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
}

.formItem .formError {
  opacity:0;
  /*position:absolute;*/
  display: none;
  top:1px;
  right:0;
  padding:9px 10px;
  width: 120px;
  /*border:1px solid #1f2124;*/
  color:#fff;
  text-shadow: 1px 1px #cd4d50;
  text-align:right;
  box-shadow:inset 0px 1px 5px #e26869;
  border-radius:5px;
  background: #d84f51;
  font-size:0.9375em;
background: -moz-linear-gradient(top,  #d84f51 0%, #a53334 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d84f51), color-stop(100%,#a53334));
background: -webkit-linear-gradient(top,  #d84f51 0%,#a53334 100%);
background: -o-linear-gradient(top,  #d84f51 0%,#a53334 100%);
background: -ms-linear-gradient(top,  #d84f51 0%,#a53334 100%);
background: linear-gradient(to bottom,  #d84f51 0%,#a53334 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d84f51', endColorstr='#a53334',GradientType=0 );


}
.formItem .formError:before {
  content:"";
    position:absolute;
    border-top:5px solid transparent;
    border-left:5px solid transparent;
    border-bottom:5px solid transparent;
    border-right:5px solid #fff;
    left: 13px;
    /*top:12px;*/
    margin-top: 4px;
    transform: rotate(90deg);
}

#share-page-box{
  margin: 0 auto;
  padding: 5rem 10rem;
}
#share-page-box #tmp_main {
  width: 100%;
  max-width: 990px;
  min-width: 910px;
  margin: 0 auto;
}
.share-page {
  margin: 0 auto;
  position: relative;
  padding: 50px;
  width: 100%;
  /*min-height: 380px;*/
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  background: rgb(255 255 255);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}
.share-page h2 {
  color: #1B0927;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}
.share-page form {
  width: 100%;
}
.share-page .form-control {
  text-align: left;
}
.share-page .card-header {
  font-size: 1.125em;
  font-weight: bold;
  color: #1b0928;
}
.share-page section {
  margin-top: 3rem;
}
@media (max-width: 1230px) {
  #share-page-box {
    padding: 5rem 7rem;
  }
}
@media (max-width: 1130px) {
  #share-page-box {
    padding: 5rem 7rem;
  }
  #share-page-box #tmp_main {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}
@media (max-width: 768px) {
  #share-page-box {
    padding: 3rem 3rem;
  }
}
@media (max-width: 500px) {
  #share-page-box {
    padding: 1.5rem 1.5rem;
  }
  .share-page {
    padding: 30px;
  }
}

@media (min-width: 1440px) {
  #share-page-box {
    padding: 4rem 16rem;
  }
}

/* ==================================================
Login page
================================================== */
.header.login {
  margin-bottom: 0;
}
.header.login .header-wrapper {
  background-color: #696a79;
  /*height: 60px;*/
  border-radius: 0 0 6px 0;
}
.header.login .logo img {
  padding: 10px 0;
}
.header.login .logo.display-show img{
  display: none;
}
header.login .a11yBrick {
  color: #696a79;
}
.header.login .accessibility {
  height: 60px;
  position: initial;
  padding: 0;
}
.header.login .accessibility .tabs-nav {
  color: #ffffff;
}
.header.login .accessibility .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.header.login .accessibility a,
.header.login .accessibility a:link {
  color: #ffffff;
}
.header.login .accessibility a:hover,
.header.login .accessibility a:focus {
  /*color: #ECD64D;*/
  text-decoration: underline;
  color: #373737;
  color: #ffffff;
  font-weight: inherit;
}
@media (max-width: 1280px) {
  .header.login .header-wrapper {
    border-radius: 0;
  }
}
@media (max-width: 960px) {
  .header.login {
    /*height: 60px;*/
  }
  .header.login .accessibility .display-none {
    display: none;
  }
  .header.login .conten-top {
    background-color: #696a79;
  }
  .header.login .logo.display-show img{
    display: block;
    padding: 10px 0;
    height: 50px;
  }
  .header.login .x-global-mune-trigger {
    border: 0px solid #fff;
    color: #fff;
  }
  .header.login .icon-menu-icon {
    padding: 14px 4px;
    width: 40px;
  }
  .header.login .icon-menu-icon .menu-icon {
    color: #ffffff;
  }
}
@media (max-width: 540px) {
  .header.login .accessibility {
    justify-content: center;
    width: auto;
  }
}
@media (max-width: 500px) {
  .header.login .logo.display-show img {
    width: 200px;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 450px) {
  .header.login .logo.display-show img {
    width: 170px;
  }
}
@media (min-width: 450px) {
  .header.login .accessibility .tabs-nav .display-none {
    display: block;
  }
}

.header .btn-show-left-area.show-no .menu-open {
  display: none;
}
.header .btn-show-left-area.show-no .menu-close {
  display: block;
  text-align: center;
}

#loginpage #tmp_footer {
  border-radius: 0 6px 0 0;
}
@media (max-width: 1280px) {
  #loginpage #tmp_footer {
    border-radius: 0;
  }
}
#loginpage .header {
  position: initial;
}

/* ==================================================
左邊選單
================================================== */
.app-container {
  position: relative;
  /*border-radius: 10px;*/
  width: 100%;
  height: 100%;
  /*max-width: 1200px;*/
  /*max-height: 900px;*/
  /*background: linear-gradient(180deg, #e0e9fd 0%, #e9ecf1 90%);*/
  /*box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);*/
  display: flex;
  overflow: hidden;
}

.app-container .logo-bk {
  padding: 6px 32px 32px;
  padding: 14px 32px;
  background-color: #A99BCC;
}
.app-container .logo-bk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-container .logo-bk .a11yBrick {
  position: absolute;
  color: #a99ccd;
}
.app-container .logo-bk .display-show {
  display: none;
}


.left-area {
  width: 240px;
  /*padding: 32px;*/
  flex-basis: 1 0 132px;
  background-color: #EFEFEF;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
  position: relative;
  overflow: auto;
}
.left-area.show {
  transform: translateX(0);
  opacity: 1;
  /*height: 120vh;*/
  /*position: inherit;*/
}

.left-area .sp-nav {
  display: flex;
  padding-left: 20%;
}
.left-area .sp-nav i {
  margin-right: 10px;
}
.left-area .sp-nav a:hover {
  color: #1B0927;
  text-decoration: underline;
}

.left-menu {
  padding: 0 16px 32px;
  width: inherit;
}

.avatar {
  position: relative;
  display: inline-block;
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
  margin-top: -1.5rem !important;
  margin-bottom: 1rem !important;
  display: none;
}
.avatar-lg {
  height: 9rem;
  width: 9rem;
}
.avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.4rem;
  border: 8px solid #fff;
}
.job-title {
  display: inline-flex;
  margin-bottom: 1rem;
}

.left-menu hr {
  border-color: #E0E0E0;
  margin: 9px 0;
}

.user-name {
  font-size: 1.4375em;
  font-weight: bold;
  margin-top: 2rem;
}
.department {
  font-size: 0.875em;
}

.left-menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.left-menu-nav li a {
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 20%;
}
.left-menu-nav li a:hover,
.left-menu-nav li a:focus,
.left-menu-nav li a:focus-visible {
  color: #fff;
  background-color: #686A79;
  box-shadow: 0 4px 8px rgba(0,0,0,.16);
}
.left-menu-nav li a.active,
.left-menu-nav li a.open {
  color: #fff;
  background-color: #686A79;
  box-shadow: 0 4px 8px rgba(0,0,0,.16);
}
.left-menu-nav li .subMenu.open {
  max-height: initial;
}

.left-menu-nav .nav-link {
  /*display: block;*/
  /*padding: 0.3rem 0;*/
  font-size: 0.9375em;
  color: #4D4D4D;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.left-menu-nav .nav-link i {
  margin-right: 10px;
}

.main-area {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  /*background: linear-gradient(97deg, #f2f7fd 0%, #f0f4fd 90%);*/
  border-radius: 0 10px 10px 0;
  position: relative;
  padding: 0 0 80px 30px;
}

.main-area .a11yBrick {
  position: absolute;
}

.right-area {
  flex-basis: 300px;
  flex-grow: 0;
  background: linear-gradient(180deg, #e0e9fd 0%, #e9ecf1 90%);
  transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
}
.right-area.show {
  transform: translateX(0);
  width: 100%;
  opacity: 1;
}

.content-section {
  display: block;
  margin-top: 32px;
  /*overflow-x: hidden;*/
  height: 75px;
  margin-bottom: 30px;
}

.section-header {
  color: #1B0927;
  font-size: 2.375em;
  line-height: 50px;
  margin-bottom: 10px;
  font-weight: 800;
}

.section-text {
  font-size: 0.9375em;
}

.section-text span {
  margin-left: 20px;
}
.section-text span i {
  font-size:0.625em;
  margin-right: 5px;
}

.btn-show-left-area {
  /*position: absolute;*/
  top: 24px;
  width: 32px;
  height: 40px;
  border-radius: 4px;
  /*background-color: #fff;*/
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  display: none;
}

.btn-show-left-area {
  left: 0;
  border-radius: 0 4px 4px 0;
}

.btn-close-left {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 4px;
  right: 4px;
  color: var(--light-font);
  outline: none;
  cursor: pointer;
  display: none;
}

.show .btn-close-left {
  display: block;
}

@media (max-width: 1300px) {
  .main-area {
    padding-right: 30px;
  }
}
@media screen and (max-width: 960px) {
  .left-area {
    transform: translateX(-100%);
    opacity: 0;
    position: absolute;
    z-index: 3;
    height: 100%;
    /*background-color: #fff;*/
    background-image: none;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 13px 10px rgb(0 0 0 / 19%);
  }
  .app-container .logo-bk {
    width: 100%;
  }
  .app-container .logo-bk img {
    display: none;
  }
  .app-container .logo-bk .display-show {
    display: block;
  }
  .btn-show-left-area {
    display: flex;
  }
}
@media screen and (max-width: 520px) {
  .section-header {
    font-size: 2.0625em;
  }
  .app-container {
    border-radius: 0;
  }
  .content-section {
    /*padding: 0 20px;*/
    height: auto;
  }
}

/* ==================================================
表格
================================================== */
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #00000017;
    border-radius: 0.2rem;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 0px 6px rgb(0 0 0 / 16%);
}
.card-header {
  background-color: #EFEFEF;
  padding: 0.5rem 1rem;
  display: flex;
}
.card-header h5 {
  width: 100%;
  margin-right: 23px;
  min-height: 36px;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  color: #1B0927;
  display: flex;
  align-items: center;
}
.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 25px;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * 1rem);
  margin-right: calc(-0.5 * 1rem);
  margin-left: calc(-0.5 * 1rem);
}
.row > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(1rem * 0.5);
  padding-left: calc(1rem * 0.5);
  margin-top: 1rem;
}
form > div {
  display: flex;
  flex-wrap: wrap;
}
form > div > p {
  min-width: 33.33%;
  padding: 10px;
}

label {
  display: inline-block;
}
.form-label {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  width: 100%;
  height: 28px;
}
.form-label span {
  font-size: 0.625em;
  margin-left: 7px;
}
.form-label .object {
  color: #FF5722;
}
.flatpickr-input:disabled,
.flatpickr-input[readonly] {
  background-color: #fff;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
.form-control {
  display: block;
  text-align: left;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.9375em;
  font-weight: 400;
  line-height: 1.5;
  color: #29292e;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e1e4e6;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.4rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-control:focus,
.select-box select:focus:invalid,
.textarea__body:focus {
  border-color: #a99ccd;
  box-shadow: inset 0 0 0 1px #a99ccd;
  color: #29292e;
  outline: none;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.col-lg-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .col-lg-6 {
    margin-top: 0.5rem;
    margin-bottom: 0.5em;
  }
  .card-body .row {
    margin-top: auto;
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 80%;
  }
}
.card .ui.calendar {
  margin-bottom: 0.5em;
}
.card input,
.card .ui.calendar input {
  border-radius: 2px!important;
  height: 45px;
}

/* ------------------- */
/* 圓餅圖
/* ----------------- */
.progress {
  width: 150px;
  height: 150px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}
.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress .progress-left {
  left: 0;
}
.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 10px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #a99ccd;
}
.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.progress .progress-right {
  right: 0;
}
.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}
.progress .progress-value {
  display: flex;
  border-radius: 50%;
  font-size: 1.25em;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 300;
}
.progress .progress-value div {
  margin-top: 10px;
  display: inline-grid;
}
.progress .progress-value span {
  font-size: 1.125em;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 15px;
}

    /* This for loop creates the  necessary css animation names 
Due to the split circle of progress-left and progress right, we must use the animations on each side. 
*/
    .progress[data-percentage] .progress-right .progress-bar {
        animation: loading-1 1.5s linear forwards;
    }

    .progress[data-percentage] .progress-left .progress-bar {
        animation: 0;
    }

    .progress.progressUP .progress-right .progress-bar {
        animation: loading-2 1.5s linear forwards !important;
    }

    .progress.progressUP .progress-left .progress-bar {
        animation: loading-1 1.5s linear forwards 1.5s !important;
    }

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(var(--deg));
        transform: rotate(var(--deg));
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.progress {
    margin-bottom: 1em;
}

/* ------------------- */
/* 星星
/* ----------------- */

.debris {
  display: none;
  position: absolute;
  width: 28px;
  height: 28px;
  overflow: hidden;
  background: transparent url('https://s3.amazonaws.com/mixture-mixed/6012/4750/assets/img/Star-yellow.png') no-repeat center center;
}
.star {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 15px;
  border-radius: 5px;
  z-index: 1;
  outline: none;
  border: 1px solid #f6f6f6;
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  display: inline-block;
  text-indent: -9999px;
  background: transparent url(https://s3.amazonaws.com/mixture-mixed/6012/4750/assets/img/Star-yellow.png) no-repeat;
  background-position: center;
}
@media only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2) {
  .star {
    background-image: url("https://s3.amazonaws.com/mixture-mixed/6012/4750/assets/img/Star-yellow@2x.png");
    background-size: 23px 22px;
  }
}
.star:hover{
  background-color: #f6f6f6!important;
}
.star:active {
  top: 2px;
}
.star.active {
  display: inline-block;
  text-indent: -9999px;
  background: transparent url(https://s3.amazonaws.com/mixture-mixed/6012/4750/assets/img/Star-white.png) no-repeat;
  background-position: center;
  background-color: #F1AF14;
  border: 1px solid #E0A51B;
}
@media only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2) {
  .star.active {
    background-image: url("https://s3.amazonaws.com/mixture-mixed/6012/4750/assets/img/Star-white@2x.png");
    background-size: 23px 22px;
  }
}
.star.active:hover {
  background-color: #E0A51B;
}





/* ------------------- */
/* Form Styles
/* ----------------- */

form > div {
  margin-bottom: 1em;
}

button,
input,
optgroup,
select,
keygen::-webkit-keygen-select,
select[_moz-type="-mozilla-keygen"],
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  /*margin-top: 0.5em;*/
}

label {
  display: block;
  /*margin: 0.75em 0;*/
  /*font-weight: bold;*/
  font-size: 1.125em;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  margin: 0;
  font-weight: 400;
}

button,
input[type=button],
input[type=reset],
input[type=submit],
{
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input {
  line-height: normal;
}

textarea { line-height: 1.25em; }

select {
  border: 1px solid #ccc;
  background-color: #fff;
}

input[type=checkbox],
input[type=radio] {
  /*box-sizing: border-box;
  padding: 0;
  display: block;
  margin-right: 0.25em;
  margin-top: 2px;
  float: left;
  clear: both;*/
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=month],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=week],
input[type=number],
input[type=search],
input[type=tel],
input[type=color],
select[_moz-type="-mozilla-keygen"],
keygen::-webkit-keygen-select,
select,
textarea {
  border: 1px solid #E2E4E6;
  /*box-shadow: inset 0 1px 3px #ddd;*/
  border-radius: 2px;
  vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0.5em 0.6em;
  margin-bottom: 0.5em;
  padding: 0 0.6em;
  height: 45px;
  line-height: 40px;
}

input[type=color] {
  padding: 0;
}

input:not([type]) {
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.5em 0.6em;
}

input[type=color] {
  padding: 0.2em 0.5em;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 1px auto #129FEA;
}

input[readonly],
select[readonly],
textarea[readonly] {
  background-color: #eee;
  color: #777;
  border-color: #ccc!important;
  box-shadow: inset 0 0 0 0px #a99ccd!important;
  margin-bottom: 0.5em;
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  color: #29292e;
  border-color: #a99ccd;
  }

input[type=file]:focus:invalid:focus,
input[type=radio]:focus:invalid:focus,
input[type=checkbox]:focus:invalid:focus {
  outline-color: #e9322d;
}


/* Style your form buttons. Follow your heart */

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  display: inline-block;
  padding: 8px 12px;
  color: #1B0927;
  background-color: #a99ccd;
  border: 0;
  cursor: pointer;
  transition: all 300ms ease;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
button:focus,
button:focus-visible {
  /*color: #fff;*/
  background-color: #EB98B4;
}

button a,
button a:link,
button a:hover {
  color: inherit;
}


.form__group-list {
  /*border-bottom: 1px solid #e4e7e9;*/
  list-style: none;
  display: flex;
  padding: 0.5rem 0;
  height: 39.5px;
}
.form__group-list li {
  margin-right: 3rem;
}
.radio {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9375em;
}

.radio__input {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.radio__icon {
  border: 1px solid #e4e7e9;
  border-radius: 50%;
  display: inline-block;
  height: 1.5em;
  position: relative;
  transition: border-color 0.5s;
  width: 1.5em;
}
.radio__input:checked + .radio__icon {
  border-color: #A99BCC;
}
.radio__icon::before, .radio__icon::after {
  border-radius: 50%;
  bottom: 0;
  content: "";
  /*height: 0.75em;*/
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  /*width: 0.75em;*/
}
.radio__icon::before {
  background-color: #A99BCC;
  transition: background-color 0.5s, opacity 0.5s;
}
.radio__input:checked + .radio__icon::before {
  background-color: #A99BCC;
  opacity: 1;
}
.radio__input:checked + .radio__icon::after {
  -webkit-animation: radio-ripple 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
          animation: radio-ripple 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  background-color: #A99BCC;
  pointer-events: none;
}

@-webkit-keyframes radio-ripple {
  0% {
    opacity: 0.8;
    transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    transform: scale3d(4, 4, 1);
  }
}

@keyframes radio-ripple {
  0% {
    opacity: 0.8;
    transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    transform: scale3d(4, 4, 1);
  }
}
.radio__text {
  display: inline-block;
  letter-spacing: 0.01em;
  line-height: 1.5;
  position: relative;
  transition: color 0.3s;
}
.radio__input:disabled ~ .radio__text {
  color: #9E9E9E;
}
.form__group-list-item:hover .radio .radio__input:disabled ~ .radio__icon::before {
  background-color: #fff;
  opacity: 0;
}
.radio__input:checked ~ .radio__text {
  color: #1b0928;
}
.radio__input.focus-visible ~ .radio__text {
  color: #A99BCC;
}
@media (hover) {
  .radio__text:hover {
    color: #1b0928;
  }
}
.radio__text::after {
  background-color: #A99BCC;
  bottom: -2px;
  content: "";
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale3d(0, 1, 1);
  transform-origin: right;
  transition: transform 0.3s;
  width: 100%;
}
.radio__input:disabled ~ .radio__text::after {
  content: none;
}
.radio__input.focus-visible ~ .radio__text::after {
  transform: scale3d(1, 1, 1);
  transform-origin: left;
}
@media (hover) {
  .radio:hover .radio__text::after {
    transform: scale3d(1, 1, 1);
    transform-origin: left;
  }
  .radio:hover .radio__icon::before {
    background-color: #A99BCC;
    opacity: 1;
  }
}
.radio__icon + .radio__text {
  margin-left: 10px;
}

@media (max-width: 1050px) {
  .form__group-list li {
    margin-right: 1rem;
  }
}


.col-lg-6.mt-e5 .form__select-box {
  margin-top: 0.5em;
}
.form__select-box {
  width: 100%;
}
.select-box {
  font-size: 1em;
  position: relative;
  transition: background-color 0.5s ease-out;
}
.select-box::after {
  content: "\f078";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 0.9375em;
  color: #1b0928;
  /*border-color: #A99BCC transparent transparent transparent;
  border-style: solid;
  border-width: 6px 4px 0;
  bottom: 0;
  content: "";*/
  display: inline-block;
  height: 0;
  margin: auto 0;
  pointer-events: none;
  position: absolute;
  right: 28px;
  top: 8px;
  width: 0;
  z-index: 1;
  right: 18px;
  top: 0;
  width: 0;
  z-index: 1;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select-box.toku {
  margin-top: 0.5rem;
}
.select-box.toku::after {
  top: 0px;
}

.select-box__body {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 1px solid #e4e7e9;
  border-radius: 0;
  cursor: pointer;
  height: 39.5px;
  /*line-height: 3.125;*/
  padding-left: 1em;
  padding-right: calc(1em + 16px);
  width: 100%;
  font-size: 0.9375em;
}
.select-box__body[data-is-valid=true] {
  border-color: #A99BCC;
  box-shadow: inset 0 0 0 1px #A99BCC;
}
.select-box__body[data-is-valid=false] {
  border-color: #A99BCC;
  box-shadow: inset 0 0 0 1px #A99BCC;
}
.select-box__body.focus-visible {
  border-color: #A99BCC;
  box-shadow: inset 0 0 0 1px #A99BCC;
  outline: none;
}
.select-box__body:-webkit-autofill {
  transition-delay: 9999s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}

/* selectbox Style
----------------------------------------- */
/* Theme color */
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  display: none;
}
.select-wrapper .select-btn {
  /*display: flex;*/
  background: white;
  text-decoration: none;
  text-align: left;
  padding: 0;
  color: #777;
  width: 100%;
  border: 0;
  height: 39.5px;
  height: 45px;
  border: 1px solid rgb(227 228 230);
  border-radius: 5px;
  cursor: pointer;
}
.select-wrapper .select-btn .label {
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-grow: 1;
  display: block;
  overflow: hidden;
  margin-right: 45px;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  color: #29292e;
  font-size: 0.9375em;
}
.select-wrapper .select-btn .caret {
  position: absolute;
  font-size: 1.25em;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
}
.select-wrapper .mdi-magnify:before {
  content: "\f002";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  /*line-height: 50px;*/
  color: #757575;
}
.select-wrapper .select-btn img {
  width: 25px;
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 50%;
}
.select-wrapper .select-btn img ~ img {
  margin-left: 5px;
}
.select-wrapper .select-btn .icon {
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 50%;
  padding: 5px;
}
.select-wrapper .select-btn .icon ~ .icon {
  margin-left: 5px;
}
.select-wrapper .select-list {
  display: none;
  list-style: none;
  background: white;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  z-index: 99;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-width: 0 1px 1px;
}
.select-wrapper .select-list li.search {
  height: 45px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 0 0 1px 0;
  background: rgba(0, 0, 0, 0.05);
}
.select-wrapper .select-list li.search .icon {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1.25em;
  padding: 0 0.75rem;
}
.select-wrapper .select-list li.search .clear {
  display: none;
  align-items: center;
  height: 100%;
  padding: 0 0.75rem;
  font-size: 1.25em;
  cursor: pointer;
}
.select-wrapper .select-list li.search .clear:before {
  content: "\f00d";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  /*line-height: 50px;*/
  color: #757575;
}
.select-wrapper .select-list li.search input {
  height: 100%;
  border: none;
  border-radius: 0;
  padding: 0;
  flex-grow: 1;
  background: transparent;
  margin-bottom: 0;
}
.select-wrapper .select-list li.search input[type=search]:focus {
  box-shadow: inset 0 0 0 0px #a99ccd;
}
.select-wrapper .select-list li.no-result {
  display: none;
  height: 50px;
  line-height: 50px;
  padding: 0 0.75rem !important;
  text-align: center;
}
.select-wrapper .select-list li.option {
  padding: 0 0.75rem;
  /*height: 46px;*/
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  color: #000;
  padding: 10px;
  line-height: 1.4;
}
.select-wrapper .select-list li.option img {
  width: 25px;
  margin-right: 5px;
  margin-left: -5px;
  vertical-align: middle;
  border-radius: 50%;
}
.select-wrapper .select-list li.option .icon {
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 50%;
  padding: 5px;
}
.select-wrapper .select-list li.option:hover {
  background: rgba(0, 0, 0, 0.05);
}
.select-wrapper .select-list li.option[selected] {
  background: rgba(0, 0, 0, 0.1);
}
.select-wrapper .select-list li.option[disabled] {
  opacity: 0.25;
}
.select-wrapper .select-list li.option[placeholder] {
  display: none !important;
}
.select-wrapper .select-list li.option .check {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-right: 0.75rem;
}
.select-wrapper .select-list li.group span {
  cursor: default;
  padding: 0.75rem;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.select-wrapper .select-list li.group span ~ li {
  padding-left: 2rem !important;
}
.select-wrapper .select-list li.group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.select-wrapper .select-list li.group ul li {
  padding-left: 1.5rem;
}

.select-wrapper .input-group {
  position: relative;
  margin: 1rem 0;
}
.select-wrapper .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #64ffda;
}

.select-wrapper input[type=text],
.select-wrapper input[type=search],
select.select-wrapper , textarea.select-wrapper  {
  display: block;
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  border: 1px solid #aaa;
  outline: none;
}
input[type=text]:focus,
input[type=search]:focus,
.select-wrapper select:focus,
.select-wrapper textarea:focus {
  border-radius: 3px;
  border-color: #a99ccd;
  box-shadow: inset 0 0 0 1px #a99ccd;
}

.select-wrapper .select-btn:hover,
.select-wrapper .select-btn:focus,
.select-wrapper .select-btn:focus-visible {
  border-radius: 3px;
  border-color: #a99ccd;
  box-shadow: inset 0 0 0 1px #a99ccd;
}

.card.toku .select-wrapper .select-btn {
  height: auto;
  padding: 0.5em 0.6em;
  margin-top: -0.5em;
  line-height: 1.5;
  border-radius: 2px;
}
.card .select-wrapperbox.select-box::after {
  top: 1px;
}

.select-wrapper .select-list li.option .check {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-right: 0.75rem;
}
.mdi-check:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  /*line-height: 50px;*/
  color: #757575;
}


/* selectbox End
----------------------------------------- */

.textarea__body {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #e4e7e9;
  border-radius: 0;
  box-sizing: border-box;
  font: inherit;
  /*height: 100%;*/
  left: 0;
  letter-spacing: inherit;
  overflow: hidden;
  padding: 1em;
  /*position: absolute;*/
  resize: none;
  top: 0;
  transition: background-color 0.5s ease-out;
  width: 100%;
}
.textarea__body:only-child {
  min-height: 240px;
  position: relative;
  resize: vertical;
}

.form__name {
  display: flex;
  width: 100%;
}
.form__name > :not(:last-child) {
  margin-right: 1em;
}
.form__name > :last-child,
.form__name > :last-child .text-input__body {
  width: 100%;
}
.form__name > .form__text-input {
  /*flex: 1;*/
}
.form__text-input {
  /*max-width: 440px;*/
}
.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
.text-input {
  font-size: 1em;
  position: relative;
  z-index: 0;
}
@media (max-width: 670px) {
  .form__name {
    display: block;
    margin-bottom: 1rem;
  }
}



.form__submit {
  align-items: center;
  /*display: flex;*/
  flex-direction: column-reverse;
  margin-top: 3em;
  text-align: center;
}
.form__submit .button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  /**border-radius: 3px;*/
  box-shadow: 2px 2px 3px 0 #e4e7e9;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: inherit;
  padding: 10px 10px;
  transition: background-color 0.3s;
  font-size: 1.125em;
  height: 60px;
  width: 300px;
  margin: 0 10px;
  color: #fff;
}
@media (max-width: 705px) {
  .form__submit .button {
    width: 49%;
    margin: 0 5px;
  }
  .form__submit > :not(:last-child) {
    margin-left: -5px;
  }
  .form__submit > :last-child {
    margin-right: -5px;
  }
}
@media (max-width: 375px) {
  .form__submit .button {
    width: 47%;
  }
}


/* ==================================================
search field
================================================== */
.search-box {
  margin-bottom: 2.5rem;
  margin-bottom: 1.5rem;
  width: 99.2%;
}
.search-box .select-box__body,
.search-box .form-control {
  border-radius: 5px;
}
.search-box .but-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.search-box .but-box .row {
  bottom: 0;
  position: absolute;
  width: 100%;
  text-align: center;
}
.search-box .but-box button {
  margin-bottom: 0.5em;
  width: 100%;
  height: 39.5px;
  height: 45px;
  border-radius: 5px;
  font-size: 0.9375em;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}
.search-box.but-b1 {
  margin-bottom: 1rem;
  width: 100%;
}
.search-box.but-b1 .but-box {
  position: initial;
  display: initial;
}
.search-box.but-b1 .but-box .row {
  position: initial;
}
.search-box.but-b2 .but-box button {
  margin-bottom: 0;
}
/* Responsive */
@media (max-width: 991px) {
  .search-box {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .search-box .col-lg-6 {
    margin-bottom: 0;
  }
  .search-box.toku .col-lg-6 {
    margin-top: 0;
  }
  .search-box.toku .col-lg-6 .row {
    display: contents;
  }
  .search-box.toku .col-lg-6.but-box {
    margin-bottom: 0;
  }
  .search-box.toku .col-lg-6 .col-lg-6.but-box {
    margin-top: 0;
    padding: 0;
  }
  .search-box.toku .col-lg-6 .col-lg-6 {
    padding-right: 0;
    padding-left: 0;
  }
  .search-box.toku .col-lg-6 .form__select-box {
    margin-bottom: 0.5rem;
  }
  .search-box.toku .col-lg-6 input {
    margin-bottom: 1rem;
  }
  .search-box .col-lg-6 .ui.calendar {
    margin-bottom: 1rem;
  }
  .search-box .col-lg-3,
  .search-box .col-lg-9 {
    margin-top: 0;
    margin-bottom: 15px;
  }
  .search-box .col-lg-9 input {
    margin-bottom: 0;
  }
  .search-box .but-box {
    position: initial;
  }
  .search-box .but-box .row {
    position: initial;
    margin: 0;
  }
  .search-box .but-box .row .col-lg-6 {
    margin: 0;
    padding: 0;
  }
  .search-box .but-box button {
    margin-bottom: 15px;
  }
  .search-box.but-b2 .but-box button {
    margin : 8px 0 8px;
  }
}
.search-box.toku {
  margin-bottom: 1rem;
}
/* Responsive */
@media (max-width: 991px) {
  .search-box.toku {
    margin-bottom: 0.5rem;
  }
}
.card .select-wrapper .select-btn {
  border-radius: 2px;
  margin-top: -0.5em;
}

/* ==================================================
table Styles
================================================== */
.table-wrapper {
  /*margin: 10px 70px 70px;*/
  box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2);
  box-shadow: 0px 6px 12px rgba( 0, 0, 0, 0.2);
  width: 99.9%;
}
.fl-table {
  border-radius: 5px;
  font-size: 0.9375em;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  background-color: white;
}
.fl-table td, .fl-table th {
  text-align: center;
  padding: 8px;
}
.fl-table th.but-box {
  max-width: 200px;
  width: 200px;
}
.fl-table th.but-box1 {
  max-width: 100px;
  width: 100px;
}
.fl-table td.but-box1 .button {
  width: 100%;
}
.fl-table td {
  border-right: 1px solid #f8f8f8;
  font-size: 0.9375em;
  display: table-cell;
  vertical-align: middle;
  max-width: 100px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /*white-space: pre-wrap;*/
}
.fl-table td.but-box {
  display: flex;
  width: 100%;
  overflow: initial;
  max-width: initial;
}
.fl-table td.but-box .button {
  width: 100%;
  margin: 0 5px;
}
.fl-table thead th {
  color: #696a79;
  background: #e6e1f0;
  border-bottom: 2px solid;
}
.fl-table thead th:nth-child(odd) {
  color: #696a79;
  background: #ecd64d73;
  background: #e6e1f0;
  border-bottom: 2px solid;
}
.fl-table tr:nth-child(even) {
  background: #F8F8F8;
}
.fl-table th.number {
  width: 92px;
}


/* Responsive */
@media (max-width: 767px) {
  .fl-table {
    display: block;
    width: 100%;
  }
  .table-wrapper:before {
    content: "";
    display: block;
    text-align: right;
    font-size: 11px;
    color: white;
    padding: 0 0 5px;
    background: #BDBDBD;
  }
  .fl-table thead, .fl-table tbody, .fl-table thead th {
    display: block;
  }
  .fl-table thead th:last-child {
    border-bottom: none;
  }
  .fl-table thead {
    float: left;
  }
  .fl-table tbody {
    width: auto;
    position: relative;
    overflow-x: auto;
  }
  .fl-table td, .fl-table th {
    /*padding: 20px .625em .625em .625em;*/
    height: 80px;
    vertical-align: middle;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    width: 120px;
    font-size: 13px;
    text-overflow: ellipsis;
  }
  .fl-table td {
    white-space: pre-wrap;
    max-width: initial;
    width: 150px;
  }
  .fl-table th {
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
  }
  .fl-table th.but-box,
  .fl-table th.but-box1 {
    width: auto;
    max-width: initial;
  }
  .v4 .fl-table td {
    width: 190px;
  }
  .fl-table thead th,
  .fl-table thead th:nth-child(odd) {
    /*text-align: left;*/
    border-bottom: 1px solid #f7f7f9;
  }
  .fl-table tbody tr {
    display: table-cell;
  }
  .fl-table tbody tr:nth-child(odd) {
    background: none;
  }
  .fl-table tr:nth-child(even) {
    background: transparent;
  }
  .fl-table tr td:nth-child(odd) {
    background: #F8F8F8;
    border-right: 1px solid #E6E4E4;
  }
  .fl-table tr td:nth-child(even) {
    border-right: 1px solid #E6E4E4;
  }
  .fl-table tbody td {
    display: block;
    text-align: center;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
  }
  .fl-table th.number {
    width: auto;
  }
  .table-wrapper.v2 .fl-table .but-box .light-purple::before,
  .table-wrapper.v2 .fl-table .but-box .light-pink::before {
    margin-right: 0!important;
    display: flow;
  }
}
@media (max-width: 550px) {
  .fl-table th {
    width: 95px;
  }
}
@media (min-width: 768px) {
  .fl-table tbody tr {
    height: 56px;
  }
}

.table-wrapper.v2 .fl-table thead tr {
  /*border-top: 3px solid #bdbdbd;*/
}
.table-wrapper.v2 .fl-table thead th,
.table-wrapper.v2 .fl-table thead th:nth-child(odd) {
  background: #EFEFEF;
  /*color: #404044;*/
  padding: 15px 8px;
  font-weight: initial;
  border-bottom: 0 solid;
  /*color: #1b0928;*/
  font-weight: 700;
}
.table-wrapper.v2 .fl-table tr {
      position: relative;
}
.table-wrapper.v2 .fl-table td:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 45px;
    bottom: 0px;
    width: 4px;
    background: #ddd;
}
.table-wrapper.v2 .fl-table td span {
  position: absolute;
  width: 25px;
  height: 25px;
  /* border: 4px solid salmon; */
  background-color: #a99ccd;
  border-radius: 100%;
  top: 31%;
  left: 34px;
  z-index: 1;
  color: #222;
  font-weight: bold;
  line-height: 25px;
}
.table-wrapper.v2 .fl-table tr:nth-child(even) td span {
  background-color: #ECD64D;
}
.table-wrapper.v2 .fl-table th.but-box {
  width: 115px;
}
.table-wrapper.v2 .fl-table .but-box .light-purple::before {
  content: "\f304";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  margin-right: 9px;
}
.table-wrapper.v2 .fl-table .but-box .light-pink::before {
  content: "\f00d";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  margin-right: 9px;
}
/* Responsive */
@media (max-width: 767px) {
  .table-wrapper.v2 .fl-table td span,
  .table-wrapper.v2 .fl-table tr:nth-child(even) td span {
    position: initial;
    background-color: initial;
  }
  .table-wrapper.v2 .fl-table td:after {
    position: initial;
  }
  .table-wrapper.v2 .fl-table th.but-box {
    width: auto;
  }
}

/* ==================================================
麵包屑
================================================== */
.tmp_pankuzu {
  font-size: 0.8125em;
}
.tmp_pankuzu a {
  color: #7A848B;
  color: #6D777D;
}
.tmp_pankuzu a:hover {
  color: #1B0927;
  text-decoration: underline;
}




/* ==================================================
card date
================================================== */
.card__date__box .card a {
  color: inherit;
  text-decoration: none;
}

.card__date__box .card a:hover {
  text-decoration: underline;
}

.card__date__box .card:hover {
  /*box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);*/
}
.card__date__box .card:hover,
.card__date__box .card:focus,
.card__date__box .card:focus-visible {
  /*border-radius: 3px;
  border-color: #a99ccd;
  box-shadow: inset 0 0 0 1px #a99ccd;*/
}



/**
* DATE
**/
.card__date {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  padding-top: 10px;
  background-color: coral;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 13px;
}
.card__date__day {
  font-size: 0.875em;
}
.card__date__month {
  text-transform: uppercase;
  font-size: 0.625em;
}

/**
* THUMB
**/
.card__thumb {
  height: 245px;
  overflow: hidden;
  background-color: #000;
  transition: height 0.5s;
}
.card__thumb img {
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s, transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__date__box .card:hover .card__thumb {
  /*height: 130px;*/
}

.card__date__box .card:hover .card__thumb,
.card__date__box .card:focus .card__thumb,
.card__date__box .card:focus-visible .card__thumb {
 /* border-radius: 3px;
  border-color: #a99ccd;
  box-shadow: inset 0 0 0 1px #a99ccd;*/
}

.card__date__box .card:hover .card__thumb img {
  /*opacity: 0.6;
  transform: scale(1.2);*/
}

/**
* BODY
**/
.card__body {
  position: relative;
  height: 185px;
  height: 220px;
  height: 235px;
  height: 400px;
  padding: 20px;
  transition: height 0.5s;
}
.card__date__box .card:hover .card__body {
  /*height: 300px;
  height: 360px;*/
}

.card__category {
  position: absolute;
  top: -45px;
  left: 0;
  height: 45px;
  padding: 5px 15px;
  /*background-color: rgb(169 155 204 / 65%);*/
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9375em;
  line-height: 36px;
  width: 100%;
  transition-delay: 0s;
}
.card__category .left {
  float: left;
}
.card__category .right {
  float: right;
}
.card__category i {
  margin-right: 9px;
}
.card__category .left span {
  margin-left: 5px;
}
.card__date__box .card:hover .card__category {
  /*background-color: rgb(169 155 204);*/
  /*transition-delay: 0.2s;*/
}

.card__title {
  margin: 0 0 10px 0;
  /*padding: 0 0 10px 0;*/
  color: #000;
  font-size: 1.375em;
  font-size: 1.125em;
  font-weight: bold;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card_category_left {
    text-align: right;
    font-size: 16px;
    position: relative;
    top: -35px;
}

.card__subtitle {
    margin: 0;
    padding: 0 0 0 0;
    font-size: 1.1875em;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 30px;
    bottom: 75px;
    bottom: 80px;
    text-align: center;
}
.card__subtitle .button {
  width: 160px;
  font-size: 0.9375em;
  font-weight: bold;
  border-radius: 3px;
}

.card__description {
  position: absolute;
  left: 20px;
  right: 20px;
  /*bottom: 92px;*/
  /*bottom: 133px;*/
  top: 95px;
  margin: 0;
  padding: 0;
  color: #666C74;
  line-height: 27px;
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 0s;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__date__box .card:hover .card__description {
  /*opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;*/
}

.card__footer {
  position: absolute;
  bottom: 12px;
  left: 20px;
  right: 20px;
  font-size: 0.6875em;
  font-size: 0.9375em;
  color: #A3A9A2;
}
.card__footer hr {
  padding-top: 15px;
  color: #E5E5E5;
}

.card__date__box .icon {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 2px;
  font-size: 0.8125em;
  font-size: 0.9375em;
}
.card__date__box .icon + .icon {
  padding-left: 10px;
  float: right;
  text-align: right;
}
.card__date__box .under,
.card__date__box .time {
  color: #222;
  font-size: 0.9375em;
}
@media (max-width: 500px) {
  .card__thumb img {
    height: 100%;
  }
}



/* ==================================================
pagination but
================================================== */
.pagination-box {
  /*background: #fdfdfd;*/
  padding: 1rem;
  margin: 3rem auto;
  border-radius: 0.2rem;
  /*box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);*/
  counter-reset: pagination;
  text-align: center;
}
.pagination-box:after {
  clear: both;
  content: "";
  display: table;
}
.pagination-box ul {
  width: 100%;
}


.pagination-box ul, .pagination-box li {
  list-style: none;
  display: inline;
  padding-left: 0px;
}

.pagination-box li {
  counter-increment: pagination;
}
.pagination-box li:hover a {
  color: #fdfdfd;
  background-color: #A99BCC;
  border: solid 1px #A99BCC;
}
.pagination-box li.active a {
  color: #fdfdfd;
  background-color: #A99BCC;
  border: solid 1px #A99BCC;
}
.pagination-box li:first-child {
  /*float: left;*/
}
.pagination-box li:first-child a:after {
  content: "Previous";
}
.pagination-box li:nth-child(2) {
  counter-reset: pagination;
}
.pagination-box li:last-child {
  /*float: right;*/
}
.pagination-box li:last-child a:after {
  content: "Next";
}
.pagination-box li a {
  border: solid 1px #EFF0F2;
  border-radius: 0.2rem;
  color: #7d7d7d;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  padding: 0.5rem 0.9rem;
  background-color: #EFF0F2;
}
.pagination-box li a:after {
  content: " " counter(pagination) " ";
}


.middle li a {
  display: none;
}
.middle li:first-child a {
  display: inline-block;
}
.middle li:first-child a:after {
  content: "<";
  content: "\f104";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  color: #25292d;
}
.middle li:last-child a {
  display: inline-block;
}
.middle li:last-child a:after {
  content: ">";
  content: "\f105";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  color: #25292d;
}
.middle li:nth-child(2) a {
  display: inline-block;
}
.middle li:nth-child(3) a {
  display: inline-block;
}
.middle li:nth-child(4) a {
  display: inline-block;
}
.middle li:nth-child(5) a {
  display: inline-block;
}
.middle li:nth-last-child(2) a {
  display: inline-block;
}
.middle li:nth-last-child(3) {
  display: inline-block;
}
.middle li:nth-last-child(3):after {
  padding: 0 1rem;
  /*content: "...";*/
}
@media (max-width: 500px) {
  .pagination-box {
    margin: 0rem auto;
    padding: 1rem 0;
  }
  .middle li:nth-child(4) a,
  .middle li:nth-child(5) a {
    display: none;
  }
}

/* ==================================================
enter-detail
================================================== */
.enter-detail h2.title,
.enter-detail h5.title,
.enter-detail .h5.title {
  font-size: 18px;
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0.8rem;
  background: #fff;
  color: #1b0928;
}
.enter-detail h2[text],
.enter-detail h5[text],
.enter-detail .h5[text] {
  position: relative;
  display: block;
  margin: 1rem 0 0.5rem;
}
.enter-detail h2.title span,
.enter-detail h5.title span,
.enter-detail .h5.title span{
  position: relative;
  content: attr(text);
  display: inline-block;
  background: #fff;
  color: #1b0928;
  padding-right: 0.75rem;
  z-index: 1;
}
.enter-detail h2[text]:after,
.enter-detail h5[text]:after,
.enter-detail .h5[text]:after {
  content: "";
  display: block;
  height: 1px;
  background: #9e9e9e47;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
.enter-detail h2.title:after,
.enter-detail h5.title:after,
.enter-detail .h5.title:after {
  /*content: "";
  height: 1px;
  background: #3b4040;
  position: absolute;
  width: 83%;
  margin-top: 14px;
  margin-left: 10px;*/
}
.enter-detail h3.text,
.enter-detail h6.text,
.enter-detail .h3.text,
.enter-detail .h6.text {
  font-size: 1.5em;
  color: #696a79;
}
.enter-detail p.text {
  font-size: 15px;
  font-size: 1.125em;
  color: #8B8A8F;
  color: rgb(81, 81, 97, 1.0);
}

.img-fluid {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.rounded-3 {
  border-radius: 0.5rem !important;
}

.enter-detail .material i {
  font-size: 2rem;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 2.6rem;
  text-align: center;
  font-size: 1.1em;
  border-radius: 50% !important;
  background-color: #fff3ea!important;
}
.enter-detail .material i.fa-calendar-week {
  color: #b45b11;
}
.enter-detail .material i.fa-calendar-days {
  color: #fd7e14;
}
.enter-detail .material i.fa-user-tie {
  color: #f7c32e;
  color: #ff5722;
}
.enter-detail .material i.fa-clock {
  color: #d6293f;
}
.enter-detail .material i.fa-users {
  color: #19a2b8;
}
.enter-detail .material i.fa-location-crosshairs {
  color: #4caf50;
}
.enter-detail .material i.fa-location-dot {
  color: #3f51b5;
}
.enter-detail .material .ms-3 {
  margin-left: 1rem !important;
}
.enter-detail .h5.mb-0 {
  font-size: 0.8125em;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.enter-detail p.mb-0 {
  font-size: 0.9375em;
}

/* ==================================================
fieldset
================================================== */
fieldset {
  display: block;
  margin-inline-start: 2px;
  margin-inline-end: 2px;
  padding-block-start: 0.35em;
  padding-inline-start: 0.75em;
  padding-inline-end: 0.75em;
  padding-block-end: 0.625em;
  min-inline-size: min-content;
  border-width: 2px;
  border-style: dotted;
  border-color: rgb(154 155 165 / 25%);
  border-image: initial;
  background-color: #efefef70;
  margin-top: 1rem;
  font-size: 14px;
  font-size: 0.875em;
  height: 200px;
  overflow: auto;
}
fieldset legend {
  font-size:18px;
  font-size: 1.125em;
  font-weight: bold;
  padding: 0 10px;
}


/* ==================================================
CSS3 Up file
================================================== */
.file-upload-wrapper {
  width: 100%;
  display: inline-flex;
  position: relative;
}
.file-upload-wrapper input {
  width: 100%;
  height: 45px;
}
.file-upload-wrapper button {
  margin-bottom: 0.5em;
  position: absolute;
  right: 0;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375em;
}
.file-upload-wrapper button i {
  margin-right: 9px;
}
.file-upload-wrapper input[type=text]:focus,
.file-upload-wrapper input[type=text]:focus-visible {
  border-radius: 3px;
  border-color: #a99ccd;
  box-shadow: inset 0 0 0 1px #a99ccd;
}






/* ==================================================
CSS3 radio box
================================================== */
.form__options {
  border: none;
  padding: 0;
  width: 104%;
}

.form__question {
  font-size: 25px;
  font-size: 1.5625em;
}

.form__answer {
  display: inline-block;
  box-sizing: border-box;
   margin: 20px 2% 20px 0;
  height: 180px;
  vertical-align: top;
  font-size: 22px;
  font-size: 1.375em;
  text-align: center;
  position: relative;
}

.form__options label {
  border: 1px solid #9E9E9E;
  box-sizing: border-box;
  display: block;
  height: 100%;
  width: 100%;
  padding: 10px 10px 30px 10px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
  top: 0;
  position: absolute;
}
.form__options label:hover,
.form__options label:focus,
.form__options label:active {
  border: 1px solid rgba(250, 250, 250, 0.5);
  background: #E5E1F0;
  color: #4D3C76;
  opacity: 1;
}

.form__options label p {
  font-size: 15px;
  text-align: initial;
  margin-top: 0.7rem;
}

.form__options .form__button {
  height: 40px;
  border: none;
  background-color: #00703f;
  color: #a99ccd;
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
  padding: 0 20px;
  border-radius: 20px;
  font-weight: 900;
  cursor: pointer;
  margin: 40px 0;
  transition: all 0.25s ease-in-out;
}
.form__options .form__button:hover,
.form__options .form__button:focus {
  background-color: #00824A;
  /*text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);*/
  outline: none;
}

/* Input style */
.form__options input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
}

.form__options input[type=radio]:active ~ label {
  opacity: 1;
}

.form__options input[type=radio]:checked ~ label {
  opacity: 1;
  border: 1px solid #E5E1F0;
  background: #E5E1F0;
  color: #4D3C76;
  font-weight: bold;
  border-width: 0;
}
.form__options input[type=radio]:checked ~ label p {
  font-weight: initial;
}

.red-text.v2 {
  font-size: 15px;
  font-size: 0.9375em;
}
.red-text.v2 i {
  margin-right: 9px;
}

@media (max-width: 1070px) {
  .form__answer {
    height: 210px;
  }
}
@media (max-width: 767px) {
  .form__answer {
    height: 120px;
    margin: 0px 0 20px 0;
  }
}
@media (max-width: 620px) {
  .form__answer {
    height: 150px;
  }
}
@media (max-width: 400px) {
  .form__answer {
    height: 170px;
  }
}

@media (min-width: 767px) {
  .form__options .col-lg-4 {
    width: 31.333333%;
  }
}

.form__options.disabled input[type=radio]:checked ~ label {
  background: #eeeeee;
  color: #777777;
}
.form__options.disabled label {
  cursor: auto;
}
.form__options.disabled label:hover,
.form__options.disabled label:focus,
.form__options.disabled label:active {
  border: 1px solid rgb(206 206 206);
  background: #ffffff;
  color: #a2a4a4;
}

.share-url {
  display: flex;
  flex-direction: row;
  /*height: calc(100vh - 16px);*/
  width: 100%;
  align-items: center;
  justify-content: center;
  /*max-width: 960px;*/
  margin: auto;
}
.share-url #inviteCode.invite-page {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  /*background-color: #fff;*/
  /*border: 1px solid #ccc;*/
  /*padding: 10px;*/
  /*margin-bottom: 10px;*/
  border-radius: 5px;
  justify-content: space-between;
  width: 100%;
  /*box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.07);*/
}
.share-url #inviteCode.invite-page #link {
  align-self: center;
  /*font-size: 1.2em;*/
  color: #3b4040;
  /*font-weight: bold;*/
  flex-grow: 2;
  background-color: #eee;
  border: none;
}
.share-url #inviteCode.invite-page #copy {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  /*border: 1px solid black;*/
  border-radius: 5px;
  /*background-color: #f8f8f8;*/
}
.share-url #inviteCode.invite-page #copy i {
  display: block;
  line-height: 40px;
  position: relative;
}
.share-url #inviteCode.invite-page #copy i::before {
  display: block;
  width: 15px;
  margin: 0 auto;
}
    .share-url #inviteCode.invite-page #copy i.copied::after {
        position: absolute;
        top: 5px;
        right: 35px;
        height: 30px;
        width: 110px;
        text-align: center;
        line-height: 25px;
        display: block;
        content: "複製完成";
        font-size: 15px;
        font-size: 0.9375em;
        padding: 2px 10px;
        color: #fff;
        background-color: #EB98B4;
        border-radius: 3px;
        opacity: 1;
        will-change: opacity, transform;
        -webkit-animation: showcopied 1.5s ease;
        animation: showcopied 1.5s ease;
    }
.share-url #inviteCode.invite-page #copy:hover {
  cursor: pointer;
  background-color: #dfdfdf;
  transition: background-color 0.3s ease-in;
}

@-webkit-keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}

/* ==================================================
share-edit
================================================== */
.share-edit input,
.share-edit .ui.calendar {
  width: 100%;
  margin-bottom: 0;
}
.share-edit .icon {
  width: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
}
.share-edit .ui.calendar .icon {
  width: 100%;
}
.share-edit .col-lg-12 {
  margin-bottom: 0;
}
.share-edit .col-lg-12.special input {
  width: 100%;
}

hr.thick-yellow {
  padding: 0;
  color: #ECD64D;
  border-top-width: 5px;
}

/* ==================================================
checkbox
================================================== */
.checkbox {
  align-items: baselien;
  cursor: pointer;
  display: inline-flex;
  font-size: 1em;
}

.checkbox__input {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.checkbox__icon {
  display: inline-block;
  height: 1.5em;
  position: relative;
  width: 1.5em;
}
.checkbox__icon::before, .checkbox__icon::after {
  content: "";
  position: absolute;
}
.checkbox__icon::before {
  border: 2px solid #9E9E9E;
  height: 100%;
  left: 0;
  top: 0;
  transition: border-color 0.5s, opacity 0.5s, transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 100%;
}
.checkbox__input:checked + .checkbox__icon::before {
  border-color: #a99ccd;
  opacity: 0;
  pointer-events: none;
  transform: rotate(45deg) scale3d(2, 2, 1);
}
.checkbox__icon::after {
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  top: 0.375em;
  transform: rotate(-225deg);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 1em;
}
.checkbox__input:checked + .checkbox__icon::after {
  border-bottom: 2px solid #a99ccd;
  border-left: 2px solid #a99ccd;
  opacity: 1;
  transform: rotate(-45deg);
}

.checkbox__text {
  display: inline-block;
  letter-spacing: 0.01em;
  line-height: 1.5;
  position: relative;
  transition: color 0.3s;
}
.checkbox__input:checked ~ .checkbox__text {
  color: #1b0928;
}
.checkbox__input.focus-visible ~ .checkbox__text {
  color: #a99ccd;
}
.checkbox__input:disabled ~ .checkbox__text {
  color: #a99ccd;
}
@media (hover) {
  .checkbox__text:hover {
    color: #a99ccd;
  }
}
.checkbox__text::after {
  background-color: #a99ccd;
  bottom: -2px;
  content: "";
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale3d(0, 1, 1);
  transform-origin: right;
  transition: transform 0.3s;
  width: 100%;
}
.checkbox__input:disabled ~ .checkbox__text::after {
  content: none;
}
.checkbox__input.focus-visible ~ .checkbox__text::after {
  transform: scale3d(1, 1, 1);
  transform-origin: left;
}
@media (hover) {
  .checkbox:hover .checkbox__text::after {
    transform: scale3d(1, 1, 1);
    transform-origin: left;
  }
}
.checkbox__icon + .checkbox__text {
  margin-left: 0.5em;
}


.form-label.checkbox span {
  font-size: 1em;
}




/* ==================================================
self-map
================================================== */
.self-map .main-area {
  margin-top: 30px;
}
.self-map .content-section {
  display: none;
}
ul#tabs-list {
  list-style: none;
  text-align: initial!important;
  border-bottom: 1px solid #dfdfdf;
  margin: 0;
  padding: 0;
  bottom: 0;
  position: absolute;
  width: 97%;
  margin-bottom: 3rem;
  width: 100%;
  margin-left: -8px;
  margin-right: -8px;
}

label.panel-label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: block;
  width: 100%;
  color: #bdc3c7;
  cursor: pointer;
  background-color: #ecf0f1;
  transition-property: background-color, color;
  transition-duration: 200ms;
}
label.panel-label:hover {
  color: #4e3c77;
}

#panels {
  background-color: white;
  /*margin-bottom: 6rem;*/
}
#panels .container {
  margin: 0 auto;
  width: 100%;
  padding: 0;
}
#panels section header label.panel-label {
  padding: 12px 24px;
  box-sizing: border-box;
}
#panels section main {
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  transition: opacity 600ms;
  overflow-y: hidden;
  width: 100%;
}

#panel-1-ctrl:checked ~ #panels #panel-1 main,
#panel-2-ctrl:checked ~ #panels #panel-2 main,
#panel-3-ctrl:checked ~ #panels #panel-3 main,
#panel-4-ctrl:checked ~ #panels #panel-4 main,
#panel-5-ctrl:checked ~ #panels #panel-5 main {
  max-height: initial;
  opacity: 1;
 /*padding: 48px 24px;*/
  margin-bottom: 6rem;
}


@media all and (max-width: 1300px) {
  ul#tabs-list {
    width: 96.5%;
  }
}
@media all and (max-width: 1100px) {
  ul#tabs-list {
    width: 95.5%;
  }
}
@media all and (max-width: 767px) {
  ul#tabs-list {
    width: 92%;
    margin-left: 0;
    margin-right: 0;
    z-index: 1;
  }
  #nav-ctrl:checked ~ #tabs-list #li-for-panel-1 {
    max-height: 46px;
    opacity: 1;
  }

  #nav-ctrl:checked ~ #tabs-list #li-for-panel-2 {
    max-height: 46px;
    opacity: 1;
  }

  #nav-ctrl:checked ~ #tabs-list #li-for-panel-3 {
    max-height: 46px;
    opacity: 1;
  }

  #nav-ctrl:checked ~ #tabs-list #li-for-panel-4 {
    max-height: 46px;
    opacity: 1;
  }

  #nav-ctrl:checked ~ #tabs-list #li-for-panel-5 {
    max-height: 46px;
    opacity: 1;
  }

  #open-nav-label {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
  }

  #nav-ctrl:checked ~ #tabs-list #open-nav-label {
    display: none;
  }

  #close-nav-label {
    display: block;
    max-height: 0;
    overflow-y: hidden;
    background-color: #444444;
    color: #ecf0f1;
    padding: 0px;
    transition: max-height 200ms;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    font-size: 0.75em;
    line-height: 13px;
    letter-spacing: 1px;
  }

  #nav-ctrl:checked ~ #tabs-list #close-nav-label {
    max-height: 36px;
    opacity: 1;
    padding: 12px 24px;
  }

  #tabs-list {
    position: relative;
  }
  #tabs-list label.panel-label {
    padding: 12px 10px;
  }
  #tabs-list #li-for-panel-1 {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 200ms;
  }
  #tabs-list #li-for-panel-2 {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 200ms;
  }
  #tabs-list #li-for-panel-3 {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 200ms;
  }
  #tabs-list #li-for-panel-4 {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 200ms;
  }
  #tabs-list #li-for-panel-5 {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 200ms;
  }

  label.panel-label {
    font-size: 15px;
    font-size: 0.9375em;
  }

  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 {
    max-height: 46px;
    opacity: 1;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label {
    background-color: white;
    color: #4e3c77;
    background-color: #a99dce;
    font-weight: bold;
    font-size: 15px;
    font-size: 0.9375em;
  }

  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 {
    max-height: 46px;
    opacity: 1;
  }
  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label {
    background-color: white;
    color: #4e3c77;
    background-color: #a99dce;
    font-weight: bold;
    font-size: 15px;
    font-size: 0.9375em;
  }

  #panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 {
    max-height: 46px;
    opacity: 1;
  }
  #panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 label.panel-label {
    background-color: white;
    color: #4e3c77;
    background-color: #a99dce;
    font-weight: bold;
    font-size: 15px;
    font-size: 0.9375em;
  }

  #panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 {
    max-height: 46px;
    opacity: 1;
  }
  #panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 label.panel-label {
    background-color: white;
    color: #4e3c77;
    background-color: #4e3c77;
    color: white;
  }

  #panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 {
    max-height: 46px;
    opacity: 1;
  }
  #panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 label.panel-label {
    background-color: white;
    color: #4e3c77;
    background-color: #a99dce;
    font-weight: bold;
    font-size: 15px;
    font-size: 0.9375em;
  }

  #panels .container {
    width: 100%;
  }
  #panels section header {
    display: block;
  }
}
@media all and (max-width: 740px) {
  ul#tabs-list {
    width: 90%;
  }
}
@media all and (max-width: 580px) {
  ul#tabs-list {
    width: 89%;
  }
}
@media all and (max-width: 500px) {
  ul#tabs-list {
    width: 88%;
  }
}
@media all and (max-width: 414px) {
  ul#tabs-list {
    width: 86%;
  }
}
@media all and (max-width: 375px) {
  ul#tabs-list {
    width: 84%;
  }
}

@media all and (min-width: 415px) {
  .self-map .col-lg-4.round-cake {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .self-map .col-lg-4.round-cake.end {
    width: 100% ;
  }
}
@media all and (min-width: 600px) {
  .self-map .col-lg-4.round-cake,
  .self-map .col-lg-4.round-cake.end {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333%;
  }
}
@media all and (min-width: 700px) {
  .self-map .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333%;
  }
}
@media all and (min-width: 768px) {
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 {
    pointer-events: none;
    cursor: default;
    transform: translate3d(0, 1px, 0);
    box-shadow: none;
    border-right: none;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1.last {
    border-right: 1px solid transparent;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 + li {
    border-left: 1px solid #dfdfdf;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label {
    background-color: #e6e1f0;
    color: #4e3c77;
    padding-top: 26px;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label::after {
    height: 6px;
  }

  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 {
    pointer-events: none;
    cursor: default;
    transform: translate3d(0, 1px, 0);
    box-shadow: none;
    border-right: none;
  }
  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2.last {
    border-right: 1px solid transparent;
  }
  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 + li {
    border-left: 1px solid #dfdfdf;
  }
  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label {
    background-color: #e6e1f0;
    color: #4e3c77;
    padding-top: 26px;
  }
  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label::after {
    height: 6px;
  }

  #panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 {
    pointer-events: none;
    cursor: default;
    transform: translate3d(0, 1px, 0);
    box-shadow: none;
    border-right: none;
  }
  #panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3.last {
    border-right: 1px solid transparent;
  }
  #panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 + li {
    border-left: 1px solid #dfdfdf;
  }
  #panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 label.panel-label {
    background-color: #e6e1f0;
    color: #4e3c77;
    padding-top: 26px;
  }
  #panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 label.panel-label::after {
    height: 6px;
  }

  #panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 {
    pointer-events: none;
    cursor: default;
    transform: translate3d(0, 1px, 0);
    box-shadow: none;
    border-right: none;
  }
  #panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4.last {
    border-right: 1px solid transparent;
  }
  #panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 + li {
    border-left: 1px solid #dfdfdf;
  }
  #panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 label.panel-label {
    background-color: #e6e1f0;
    color: #4e3c77;
    padding-top: 26px;
  }
  #panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 label.panel-label::after {
    height: 6px;
  }

  #panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 {
    pointer-events: none;
    cursor: default;
    transform: translate3d(0, 1px, 0);
    box-shadow: none;
    border-right: none;
  }
  #panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5.last {
    border-right: 1px solid transparent;
  }
  #panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 + li {
    border-left: 1px solid #dfdfdf;
  }
  #panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 label.panel-label {
    background-color: white;
    color: #4e3c77;
    padding-top: 26px;
  }
  #panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 label.panel-label::after {
    height: 6px;
  }

  ul#tabs-list {
    text-align: center;
    border-bottom: 0px solid #dfdfdf;
  }
  ul#tabs-list li {
    display: inline-block;
    text-align: center;
    font-size: 0.875em;
    width: 29%;
    box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.05);
    border-right: 0px solid #dfdfdf;
    position: relative;
    margin: 0 1rem;
    margin-bottom: 20px;
    width: 31%;
    margin: 0 0.8771929825%;
  }
  ul#tabs-list li:hover {
    transition: none;
    border-right: none;
  }
  ul#tabs-list li:hover.last {
    border-right: 1px solid transparent;
  }
  ul#tabs-list li:hover + li {
    border-left: 1px solid #dfdfdf;
  }
  ul#tabs-list li label.panel-label {
    position: relative;
    padding: 24px 0;
  }
  ul#tabs-list li label.panel-label::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 100%;
    background-color: #4e3c77;
    height: 0;
    transition-property: height;
    transition-duration: 200ms;
  }
  ul#tabs-list li label.panel-label:hover {
    padding-top: 25px;
  }
  ul#tabs-list li label.panel-label:hover::after {
    height: 6px;
  }

  #open-nav-label,
#close-nav-label {
    display: none;
  }

  #nav-ctrl {
    display: none;
  }
}
@media all and (min-width: 900px) {
  main {
    width: 70%;
    margin: 0 auto;
  }
}
.panel-radios {
  position: fixed;
  left: 50%;
  top: 10px;
  width: 20px;
  opacity: 0.5;
  z-index: 99;
}
.panel-radios:nth-child(1) {
  transform: translateX(-50px);
}
.panel-radios:nth-child(2) {
  transform: translateX(-30px);
}
.panel-radios:nth-child(3) {
  transform: translateX(-10px);
}
.panel-radios:nth-child(4) {
  transform: translateX(10px);
}
.panel-radios:nth-child(5) {
  transform: translateX(30px);
}
.panel-radios:nth-child(6) {
  top: 30px;
  transform: translateX(-10px);
  display: block;
}

#introduction {
  width: 90%;
  margin: 0 auto;
  padding: 48px 24px;
  color: white;
}
#introduction h1 {
  font-weight: 300;
  text-align: center;
}


label.demo-label {
  background-color: #4e3c77;
  color: white;
  padding: 4px 8px;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
label.demo-label:hover {
  background-color: #4e3c77;
}

#demo-child-toggle {
  display: none;
}
#demo-child-toggle:checked ~ #demo-parent #demo-child {
  color: #4e3c77;
  font-weight: bold;
  text-transform: uppercase;
}

#demo-parent {
  margin-top: 8px;
}

code,
pre {
  color: #4e3c77;
  font-family: Inconsolata, "Andale Mono", Andale, monowidth;
  background-color: #ecf0f1;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
}

code {
  padding: 2px 6px;
}

pre {
  padding: 12px;
  line-height: 1.6;
}
pre strong {
  color: #444444;
  font-weight: normal;
}


.course-box {
  height: 100%;
}
.course-box a {
  border: 1px solid #E2E4E6;
  box-sizing: border-box;
  display: block;
  height: 100%;
  width: 100%;
  padding: 10px 10px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  text-align: center;
  color: #686A79;
}
.course-box a:hover,
.course-box a:focus,
.course-box a:focus-visible {
  border-radius: 0px;
  border-color: #a99ccd;
  box-shadow: inset 0 0 0 0px #a99ccd;
  background: #E5E1F0;
  color: #4D3C76 !important;
  border: 1px solid #e6e1f0;
}
.course-box h5 {
  font-size: 18px;
  font-size: 1.125em;
}
.course-box p {
  font-size: 15px;
  font-size: 0.9375em;
}
.course-box i {
  margin-right: 7px;
}
.course-box .all{
  color: #686A79;
}
.course-box .fulfill{
  color: #BB2649;
}
.course-box .fulfill.ok{
  color: #335229;
  font-weight: bold;
}
.course-box a:hover h5,
.course-box a:focus h5,
.course-box a:focus-visible  h5 {
  font-weight: bold;
}
.course-box a:hover .all,
.course-box a:focus .all,
.course-box a:focus-visible .all,
.course-box a:hover .fulfill,
.course-box a:focus .fulfill,
.course-box a:focus-visible .fulfill {
  color: #4D3C76 !important;
}

.course-box.completed a {
  background-color: #DAE9D4;
  color: #335229;
  border: 1px solid #dae9d4;
}
.course-box.completed a:hover,
.course-box.completed a:focus,
.course-box.completed a:focus-visible {
  background-color: #6daa5b;
  color: #ffffff !important;
  border: 1px solid #6dab5b;
}
.course-box.completed a
.course-box.completed h5,
.course-box.completed p,
.course-box.completed i,
.course-box.completed .all,
.course-box.completed .fulfill {
  color: #335229;
}
.course-box.completed h5 {
  font-weight: bold;
}

.course-box.completed a:hover .all,
.course-box.completed a:focus .all,
.course-box.completed a:focus-visible .all,
.course-box.completed a:hover .fulfill,
.course-box.completed a:focus .fulfill,
.course-box.completed a:focus-visible .fulfill {
  color: #fff !important;
}

.course-box.completed a:hover .all i,
.course-box.completed a:focus .all i,
.course-box.completed a:focus-visible .all i,
.course-box.completed a:hover .fulfill i,
.course-box.completed a:focus .fulfill i,
.course-box.completed a:focus-visible .fulfill i {
  color: #fff !important;
}

.course-box.completed a:hover p,
.course-box.completed a:focus p,
.course-box.completed a:focus-visible p {
  color: #fff !important;
}

@media all and (max-width: 997px) {
  .course-box h5 {
    font-size: 15px;
    font-size: 0.9375em;
  }
  .course-box p {
    font-size: 13px;
    font-size: 0.8125em;
  }
}

.self-content .wide_area_ttl {
  z-index: 2;
}
.self-content .wide_area_ttl p {
  font-size: 36px;
  font-size: 2.25em;
  /*text-align: initial;*/
  /*margin-left: 10px;*/
}
.self-content .card-header {
  z-index: 1;
  position: relative;
  font-size: 18px;
  font-size: 1.125em;
  font-weight: bold;
  color: #1b0928;
  /*border: 1px solid #00000017;*/
  border-bottom-width: 0;
  height: 45px;
  margin-top: -40px;
}
.self-content .card {
  margin-bottom: 3rem;
  border-top-width: 0;
}
@media (max-width: 768px) {
  .self-content .wide_area_ttl p {
    font-size: 30px;
    font-size: 1.875em;
  }
  .self-content .card-header {
    margin-top: -35px;
    height: 33px;
  }
}
.hstack {
  border: 1px solid #00000017;
  border-top-width: 0;
  border-bottom-width: 0;
  background-color: #F5F5F5;
  /*border: 2px solid #E0E0E0;*/
  padding: 2rem;
  margin: 0 auto;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  z-index: 1;
  position: relative;
  border: 1px solid #00000017;
  border-bottom-width: 0px;
}
.hstack .gap-2 {
  gap: 0.5rem !important;
}
.hstack .vr {
  display: inline-block;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}
.hstack i {
  font-size: 2em;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 2.6rem;
  text-align: center;
  font-size: 1.1em;
  border-radius: 50% !important;
  background-color: #fff3ea!important;
  background-color: #fff!important;
}
.hstack i.fa-readme {
  color: #19a2b8;
}
.hstack i.fa-clipboard-check {
  color: #6daa5b;
}
.hstack i.fa-triangle-exclamation {
  color: #d6293f;
}
@media (max-width: 567px) {
  .hstack i {
    line-height: 1.6rem;
    width: auto;
    height: auto;
    background-color: #f5f5f5!important;
  }
}
@media (max-width: 520px) {
  .hstack {
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .hstack i {
    display: none;
  }
}

.hstack .text h6 {
  font-weight: 700;
  line-height: 1.25;
}
.self-content h5.title {
  font-size: 18px;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.self-content h5[text] {
  position: relative;
  display: block;
  margin: 1rem 0 0.5rem;
  padding: 0;
  text-align: center;
}
.self-content h5[text]:before {
  position: relative;
  content: attr(text);
  display: inline-block;
  background: #fff;
  color: #1b0928;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  z-index: 1;
}
.self-content h5.no[text]:before {
  color: #d62940;
}
.self-content h5[text]:after {
  content: "";
  display: block;
  height: 1px;
  background: #9e9e9e47;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
.self-content .but-box {
  width: 200px;
  margin: 0 auto;
  margin-top: 1rem;
}
.self-content .but-box .button {
  margin-bottom: 0.6em;
  width: 100%;
  height: 39.5px;
  border-radius: 5px;
  font-size: 15px;
  font-size: 0.9375em;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (min-width: 375px) {
  .gap-xl-3 {
    gap: 0.5rem !important;
  }
}
@media (min-width: 414px) {
  .gap-xl-3 {
    gap: 1rem !important;
  }
}
@media (min-width: 686px) {
  .gap-xl-3 {
    gap: 1.5rem !important;
  }
}

.laugh-title {
  display: block;
  font-size: 1em;
  margin-block-end: 0.67em;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: 2px solid #ECD64D;;
  margin: 0 0 5px;
  padding: 10px 0 0px;
  clear: both;
}
.self-content form {
  margin-bottom: 2rem;
}
.self-content form.end {
  margin-bottom: 0;
}
.self-content form .col-lg-4 {
  display: block;
}
.self-content .course-box {
  height: 100%;
  display: grid;
  border: 1px solid #E2E4E6;
  position: relative;
}
.self-content .course-box::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 100%;
  background-color: #a99ccd;
  height: 6px;
  transition-property: height;
  transition-duration: 200ms;
}
.self-content .course-box .box-body {
  /*border: 1px solid #E2E4E6;*/
  box-sizing: border-box;
  display: block;
  height: 100%;
  width: 100%;
  padding: 10px 10px 0;
  /*cursor: pointer;*/
  transition: all 0.5s ease-in-out;
  color: #686A79;
}
.self-content .course-box .box-body span,
.self-content .course-box .box-footer span {
  font-size: 13px;
  font-size: 0.8125em;
}
.self-content .course-box .box-body h5 {
  color: #222;
}
.self-content .course-box .box-body .line {
  color: #686A79;
  border-bottom: 1px solid #eee;
  position: relative;
  line-height: 20px;
  background: url(../img/line_dot_gray.gif) left bottom repeat-x;
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}
.self-content .course-box .box-body .line.end {
  margin-bottom: 0;
}
.self-content .course-box .box-body a {
  border: 0px solid #E2E4E6;
  box-sizing: border-box;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0;
  cursor: pointer;
  transition: initial;
  text-align: left;
  color: #686A79;
  color: #3e18B5;
  cursor: pointer;
}
.self-content .course-box .box-body a:hover,
.self-content .course-box .box-body a:focus,
.self-content .course-box .box-body a:focus-visible {
  color: #1b0928 !important;
  background: #ffffff;
  text-decoration: revert;
}
.self-content .course-box .box-footer {
  background-color: whitesmoke;
  display: inline-block;
  width: 100%;
  padding: 10px 10px;
}
.self-content .course-box .box-footer.v2 {
  height: 64px;
  bottom: 0;
  position: absolute;
  background: url(../img/line_dot_gray.gif) left top repeat-x;
  background-color: whitesmoke;
}
.self-content .course-box .box-footer .left {
  float: left;
}
.self-content .course-box .box-footer .right {
  float: right;
}
.self-content .course-box .box-footer  h5 {
  color: #686A79;
  font-size: 15px;
  font-size: 0.9375em;
  line-height: 18px;
}
.self-content .undone ul {
  list-style: none;
  margin: 0;
  font-size: 88.88%;
  font-size: 0.875em;
}
.self-content .undone li {
  /*float: left;*/
  color: #25292d;
  background-size: 6px auto;
  -webkit-background-size: 6px auto;
  -moz-background-size: 6px auto;
  padding-left: 35px;
  padding-right: 10px;
  margin-bottom: 14px;
  background-position: 48px 7px;
}
.self-content .undone li::before {
  content: "\f1b2";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  /* line-height: 50px; */
  color: #25292d;
}
.self-content .undone li a {
  color: #25292d;
  color: #3e18B5;
  background-color: transparent;
}
.self-content .undone li a:hover,
.self-content .undone li a:focus,
.self-content .undone li a:active {
  color: #1b0928 !important;
  background: #ffffff;
  text-decoration: underline;
}
.self-content .undone li a.active_delete {
  width: 22px;
  height: 22px;
  padding: 0 5px;
}
.self-content .undone li a.active_delete:hover,
.self-content .undone li a.active_delete:focus,
.self-content .undone li a.active_delete:active {
  width: 22px;
  height: 22px;
  background-color: #d62940;
  display: inline-table;
  border-radius: 999em;
  color: #fff!important;
  padding: 0 5px;
}
@media (max-width: 991px) {
  .self-content .course-box .box-footer.v2 {
    position: inherit;
    background: initial;
    background-color: whitesmoke;
  }
}

/*
news map
================ */
.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

ul.switch-tabs-nav {
  position: relative;
  margin: 0;
  list-style: none;
  padding-left: 0;
  /*border-bottom: 1px solid #ddd;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: calc(-0.5 * 1rem);
  margin-left: calc(-0.5 * 1rem);
}

ul.switch-tabs-nav li {
  width: 31%;
  text-align: center;
  float: left;
  line-height: 1em;
  margin-bottom: -1px;
  background-color: #eee;
  /*border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;*/
  margin: 10px;
  position: relative;
}

ul.switch-tabs-nav li a {
  display: block;
  padding: 25px 30px;
  font-size: 18px;
  font-size: 1.125em;
  text-transform: uppercase;
  color: #bdc3c7;
}

ul.switch-tabs-nav li:first-child {
  /*border-left: 1px solid #ddd;*/
}

ul.switch-tabs-nav li:hover,
ul.switch-tabs-nav li:focus {
  background-color: #fff;
  background-color: #e6e1f0;
}
ul.switch-tabs-nav li:hover a {
  color: #1B0927;
}

ul.switch-tabs-nav li.active {
  background-color: #e6e1f0;
  /*border-top: 2px solid #4e3c77;*/
  box-shadow: -1px 1px 4px rgb(0 0 0 / 44%);
}
ul.switch-tabs-nav li a::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 100%;
  background-color: #4e3c77;
  height: 0;
  transition-property: height;
  transition-duration: 200ms;
}
ul.switch-tabs-nav li:hover a::after{
  height: 6px;
}
ul.switch-tabs-nav li.active a {
  color: #1B0927;
}
ul.switch-tabs-nav li.active a::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 100%;
  background-color: #4e3c77;
  height: 6px;
  transition-property: height;
  transition-duration: 200ms;
}


ul.switch-tabs-nav.switch-tabs-white li {
  background-color: #fff;
}

ul.switch-tabs-nav.switch-tabs-white li:hover,
ul.switch-tabs-nav.switch-tabs-white li:focus {
  background-color: #f6f6f6;
}

ul.switch-tabs-nav.switch-tabs-borderless {
  border-bottom: 0;
}

ul.switch-tabs-nav.switch-tabs-borderless li {
  /*border-bottom: 1px solid #ddd;*/
}

ul.switch-tabs-nav.switch-tabs-borderless li.active {
  border-bottom: 1px solid transparent;
}

ul.switch-tabs-nav.rtl li {
  float: right;
  border-right: 0;
  /*border-left: 1px solid #ddd;*/
}

ul.switch-tabs-nav.rtl li:first-child {
  /*border-right: 1px solid #ddd;*/
}

ul.switch-tabs-nav.rtl.responsive li {
  /*border-right: 1px solid #ddd;*/
}

ul.switch-tabs-nav.responsive li {
  float: none;
  display: block;
  /*border-left: 1px solid #ddd;*/
}

.switch-tabs-body {
  position: relative;
  /*padding: 30px 40px 20px 40px;*/
  /*border: 1px solid #ddd;*/
  /*border-top: 1px solid transparent;*/
  margin-bottom: 30px;
}

.switch-tabs-body .switch-content {
  position: relative;
}

.switch-tabs-body.borderless {
  border: 0;
}

/* ==================================================
釘選 ボタン
================================================== */

#main-content {
  display: flex;
  /*width: 100vw;
  height: 100vh;
  background: white;*/
  align-items: center;
  justify-content: center;
  text-align: center;
}

#main-content h1 {
  font-size: 14px;
  font-size: 0.875em;
  font-weight: 400;
  width: 90px;
  color: #888888;
}

#main-content a {
  font-size: 12px;
  font-size: 0.75em;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  color: #008A68;
}

#main-content svg {
  cursor: pointer;
  overflow: visible;
  width: 37px;
  /*float: left;*/
  z-index: 1;
  background-color: #efefef;
  position: absolute;
  right: 0;
}
#main-content svg #heart {
  transform-origin: center;
  animation: animateHeartOut 0.3s linear forwards;
}
#main-content svg #main-circ {
  transform-origin: 29.5px 29.5px;
}

#main-content #checkbox {
  display: none;
}

#main-content #checkbox:checked + label svg #heart {
  transform: scale(0.2);
  fill: #E2264D;
  animation: animateHeart 0.3s linear forwards 0.25s;
}
#main-content #checkbox:checked + label svg #main-circ {
  transition: all 2s;
  animation: animateCircle 0.3s linear forwards;
  opacity: 1;
}
#main-content #checkbox:checked + label svg #grp1 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}
#main-content #checkbox:checked + label svg #grp1 #oval1 {
  transform: scale(0) translate(0, -30px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp1 #oval2 {
  transform: scale(0) translate(10px, -50px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp2 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}
#main-content #checkbox:checked + label svg #grp2 #oval1 {
  transform: scale(0) translate(30px, -15px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp2 #oval2 {
  transform: scale(0) translate(60px, -15px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp3 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}
#main-content #checkbox:checked + label svg #grp3 #oval1 {
  transform: scale(0) translate(30px, 0px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp3 #oval2 {
  transform: scale(0) translate(60px, 10px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp4 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}
#main-content #checkbox:checked + label svg #grp4 #oval1 {
  transform: scale(0) translate(30px, 15px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp4 #oval2 {
  transform: scale(0) translate(40px, 50px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp5 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}
#main-content #checkbox:checked + label svg #grp5 #oval1 {
  transform: scale(0) translate(-10px, 20px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp5 #oval2 {
  transform: scale(0) translate(-60px, 30px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp6 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}
#main-content #checkbox:checked + label svg #grp6 #oval1 {
  transform: scale(0) translate(-30px, 0px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp6 #oval2 {
  transform: scale(0) translate(-60px, -5px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp7 {
  opacity: 1;
  transition: 0.1s all 0.3s;
}
#main-content #checkbox:checked + label svg #grp7 #oval1 {
  transform: scale(0) translate(-30px, -15px);
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp7 #oval2 {
  transform: scale(0) translate(-55px, -30px);
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}
#main-content #checkbox:checked + label svg #grp2 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}
#main-content #checkbox:checked + label svg #grp3 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}
#main-content #checkbox:checked + label svg #grp4 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}
#main-content #checkbox:checked + label svg #grp5 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}
#main-content #checkbox:checked + label svg #grp6 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}
#main-content #checkbox:checked + label svg #grp7 {
  opacity: 1;
  transition: 0.1s opacity 0.3s;
}

@keyframes animateCircle {
  40% {
    transform: scale(10);
    opacity: 1;
    fill: #DD4688;
  }
  55% {
    transform: scale(11);
    opacity: 1;
    fill: #D46ABF;
  }
  65% {
    transform: scale(12);
    opacity: 1;
    fill: #CC8EF5;
  }
  75% {
    transform: scale(13);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0.5;
  }
  85% {
    transform: scale(17);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0.2;
  }
  95% {
    transform: scale(18);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0.1;
  }
  100% {
    transform: scale(19);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0;
  }
}
@keyframes animateHeart {
  0% {
    transform: scale(0.2);
  }
  40% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animateHeartOut {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}


/**
 * 點擊文字變化
 * =============***/
.form-check-input {
  --bs-form-check-bg: #f0f1f3;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.08em;
  vertical-align: top;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input:checked {
  background-color: #F01F4B;
  border-color: #F01F4B;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input.tgl-0 + .tgl-btn {
  outline: 0;
  display: inline-block;
  width: 6em;
  height: 2em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
}

.tgl-vary + .tgl-btn {
  overflow: hidden;
  /*transform: skew(-10deg);*/
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.2s ease;
  font-family: sans-serif;
  /*background: #888;*/
}
.tgl-vary + .tgl-btn:after, .tgl-vary + .tgl-btn:before {
  /*transform: skew(10deg);*/
  display: inline-block;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
  text-align: left;
  position: absolute;
  /*line-height: 2em;*/
  line-height: 1.2em;
  /*font-weight: bold;*/
  color: #888888;
  font-size: 15px;
  font-size: 0.9375em;
  /*text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);*/
}
.tgl-vary + .tgl-btn:after {
  left: 100%;
  content: attr(data-tg-on);
}
.tgl-vary + .tgl-btn:before {
  left: 0;
  right: 40px;
  content: attr(data-tg-off);
}
.tgl-vary + .tgl-btn:active {
  /*background: #fff;*/
}
.tgl-vary + .tgl-btn:active:before {
  left: -10%;
}
.tgl-vary:checked + .tgl-btn {
  /*background: #fff;*/
}
.tgl-vary:checked + .tgl-btn:before {
  left: -100%;
}
.tgl-vary:checked + .tgl-btn:after {
  left: 0;
  right: 40px;
}
.tgl-vary:checked + .tgl-btn:active:after {
  left: 10%;
}



/* ==================================================
ＮＥＷ 職能地圖
================================================== */
.flex-container .card.checked {
  display: block;
}
.flex-container.row .card {
  display: block;
}

.flex-container.row-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-container.column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-container.column-reverse {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column-reverse;
}

.flex-container .card {
  display: none;
}

.principal {
  /*width: calc(50% - 40px);*/
  /*min-width: 525px;*/
  /*margin: 0 20px 20px 20px;*/
  /*float: left;*/
}

.radio {
  margin-bottom: 20px;
}

label {
  /*line-height: 200%;*/
}

input[type=radio] {
  color: white;
}

input[type=radio]:checked + label {
  color: orange;
}

.principal:last-of-type h4 small {
  color: #ff8080;
}

.flex-container {
  /*border: 1px solid #555;*/
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  width: 100%;
}

#direction .item {
  flex-wrap: wrap;
}

/*#wrap .item{ height:auto;}*/
#wrap {
  width: 400px;
}

#align .item {
  height: auto;
  height: auto;
  flex-wrap: wrap;
}

#align {
  height: 300px;
}

#justify {
  margin: 20px 0;
  padding: 20px 0;
}

#alignContent {
  flex-wrap: wrap;
  height: 600px;
}

#alignContent .item {
  height: auto;
}

#FCI1 {
  height: 300px;
}

#FCI1 .item {
  height: auto;
}

#FCI3 .item {
  width: 25%;
}

#FCI4 .item {
  width: 50%;
}

#FCI5 .item {
  width: 20%;
}

.nbsp {
  white-space: nowrap;
}

/* @media only screen and (max-width:1100px){.principal{ width:calc(100% - 40px);}} */
@media only screen and (max-width: 1200px) {
  .principal {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 580px) {
  .item {
    width: 50px;
    height: 50px;
  }

  .principal {
    width: calc(100% - 40px);
    min-width: initial;
  }

  .flex-container {
    width: 100%;
    min-width: initial;
  }

  #wrap {
    width: 200px;
  }
}
.item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border: 1px solid #333;
}



/* ==================================================

  Select2Cascade

================================================== */
.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100%!important;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #e2e4e6;
    border-radius: 4px;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 39.5px;
    height: 45px;
    user-select: none;
    -webkit-user-select: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 39px;
    line-height: 45px;
    font-size: 15px;
    font-size: 0.9375em;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 15px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 39px;
    height: 45px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-container--open .select2-dropdown {
    left: 0;
}
.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}
.select2-dropdown .select2-search--dropdown {
  height: 45px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 0 0 1px 0;
  background: rgba(0, 0, 0, 0.05);
}
.select2-dropdown .select2-search--dropdown .select2-search__field {
  margin-bottom: 0;
  border: 1px solid #f2f2f2;
}
.select2-search--dropdown {
    display: block;
    padding: 4px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e4e1e1;
}
.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}
.select2-results {
    display: block;
}
.select2-container--default .select2-results>.select2-results__options {
    /*max-height: 200px;*/
    overflow-y: auto;
}
.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd;
}
.select2-results__option[aria-selected] {
    cursor: pointer;
    padding: 10px;
    line-height: 1.4;
}
.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f2f2f2;
    color: black;
}
.select2-dropdown .select2-search--dropdown:before {
    content: "\f002";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.2em;
    /* line-height: 50px; */
    color: #757575;
    padding: 0 8px;
}
.select2 .selection:focus-visible,
.select2-container:focus-visible {
  border-radius: 3px;
  border-color: #a99ccd;
  box-shadow: inset 0 0 0 1px #a99ccd;
}
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:focus {
    border-radius: 3px;
    border-color: #a99ccd;
    box-shadow: inset 0 0 0 1px #a99ccd;
}
.select2-container .select2-selection--single .select2-selection__rendered:focus-visible,
.select2-container--default .select2-selection--single:focus-visible {
  outline: 0px solid #a99ccd;
  border-radius: 3px;
}
.select2-container--default .select2-search--dropdown .select2-search__field:before {
  content: "New!";
}
.no-select2 .select2 {
  display: none;
}


/* ==================================================
アコーディオン
================================================== */
.accordian {
  /*max-width: 900px;*/
  width: 100%;
  color: #424242;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: 100;
  letter-spacing: 0.035em;
  font-size: 0.9375em;
  margin: 0 auto;
  font-weight: 400;
}
.accordian ul > li {
  margin-bottom: 8px;
}
.accordian ul > li:first-child h3,
.accordian ul > li:first-child a.h3 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.accordian h3,
.accordian a.h3,
.accordian button.h3 {
  width: 100%;
  cursor: pointer;
  background-color: #ffffff;
  background-color: #e2e2e2;
  padding: 1.2rem 1rem 1rem 1.2rem;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 30%);
  border: 0px solid rgba(0, 0, 0, 30%);
  display: block;
  font-weight: 100;
  letter-spacing: 0.035em;
  position: relative;
  font-size: 1.125em;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px;
  font-weight: 400;
}
.accordian h3:hover,
.accordian a.h3:hover,
.accordian a.h3:focus,
.accordian a.h3:focus-visible,
.accordian button.h3:hover,
.accordian button.h3:focus,
.accordian button.h3:focus-visible  {
  color: #1b0928;
  background-color: #a99dce;
}
.accordian h3.closed,
.accordian a.h3.closed,
.accordian button.h3.closed {
  color: #1b0928;
  background-color: #a99ccd;
  font-weight: bold;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.24);
  border-radius: 3px 3px 0 0;
  border: 0px solid rgb(0 0 0 / 30%);
  margin-top: 1.5rem;
}
.accordian h3:hover .arrow,
.accordian a.h3:hover .arrow,
.accordian button.h3:hover .arrow {
  /*border-top: 2px solid var(--dark-gray);*/
  /*border-right: 2px solid var(--dark-gray);*/
}
.accordian ul ul {
  display: none;
  height: 100%;
  /*margin-bottom: -7px;*/
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  margin-bottom: 1.5rem;
}
.accordian ul ul li {
  background-color: #EEEEEE;
  background-color: #ffffff;
  padding: 2rem 1.8rem;
  color: #000;
  box-shadow: none;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  /*border-left: 1px solid #a99dce;
  border-right: 1px solid #a99dce;
  border-bottom: 1px solid #a99dce;*/
}
.accordian ul ul li p {
  opacity: 0;
  transition: all 0.5s;
  transform: translatey(-20px);
}
.accordian ul ul.open p {
  opacity: 1;
  transform: translatey(0px);
}
.accordian .arrow {
  display: inline-block;
  /*width: 8px;*/
  /*height: 8px;*/
  /*border-top: 2px solid var(--light-gray);*/
  /*border-right: 2px solid var(--light-gray);*/
  /*transform: rotate(135deg);*/
  /*transform-origin: center;*/
  float: right;
  margin-right: 8px;
  /*transition: transform 600ms cubic-bezier(0.175, 0.885, 0.32, 1);*/
}
.accordian .arrow i {
  margin-right: 7px;
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform 600ms cubic-bezier(0.175, 0.885, 0.32, 1);
}
.accordian .arrow.closed i {
  margin-top: 4px;
  transform: rotate(-45deg);
  /*border-top: 2px solid var(--dark-gray);*/
  /*border-right: 2px solid var(--dark-gray);*/
}
.accordian .arrow .close-text {
  display: none;
}
.accordian .arrow.closed .close-text {
  display: initial;
}
.accordian .arrow.closed .open {
  display: none;
}

@media only screen and (max-width: 670px) {
  .accordian h3,
  .accordian a.h3,
  .accordian button.h3 {
    padding-right: 160px;
  }
  .accordian .arrow {
    position: absolute;
    right: 0;
    padding-right: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    height: 100%;
  }
}


/* ==================================================
0219 かいてい
================================================== */
@media (max-width: 1090px) and (min-width: 992px) {
  .card__thumb {
    height: 205px;
  }
}
@media (max-width: 550px) {
  .card__thumb img {
    object-fit: contain;
  }
}

a.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

a.btn-secondary:hover {
    background-color: #5c636a;
    color: #ffffff;
}

.banner-carousel.has-link .flickity-viewport {
    cursor: pointer !important;
}