html,
:root {
  --default: #222222;
  --primary: #000033;
  --primary-rgb: 0,0,51;
  --secondary: #95a9e3;
  --secondary-rgb: 149,169,227;
  --bg-default: #ffffff;
  --bg-primary: #ededed;
  --bg-secondary: #f6f6f6;
  --navbar-bg: #021221;
  --navbar-bg-rgb: 2,18,33;
  --navbar-li: #ffffff;
}

html,
body {
  height: 100%;
}

div.ccm-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
}

/* Body Styles
-------------------------------------------------- */

div.ccm-page {
  background-color: var(--bg-default);
  color: var(--default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.ccm-toolbar-visible .navbar-fixed-top {
  top: 48px;
  z-index: 4;
}

/* a
-------------------------------------------------- */

div.ccm-page a {
  color: var(--default);
  transition: color 0.5s 0s ease;
}

div.ccm-page a:hover,
div.ccm-page a:focus,
div.ccm-page a:active {
  color: var(--secondary);
}

div.ccm-page #main-section a,
div.ccm-page #main-section a:visited {
  text-decoration: underline;
}

div.ccm-page #main-section a:hover {
  text-decoration: none;
}

/* h1 h2 h3 h4 h5 h6
-------------------------------------------------- */

div.ccm-page h1,
div.ccm-page .h1 {
  color: #fff;
  font-size: 2em;
  font-weight: 600;
}

div.ccm-page h1.error {
  color: #666;
}

div.ccm-page h2,
div.ccm-page .h2 {
  position: relative;
  font-size: 1.75em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75em;
  padding-bottom: 0.5em;
}

div.ccm-page h2::before {
  position: absolute;
  border-bottom: 3px solid var(--primary);
  top: 100%;
  left: 0;
  width: 4em;
  content: '';
}

div.ccm-page h3,
div.ccm-page .h3 {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--primary);
}

div.ccm-page h4,
div.ccm-page .h4 {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75em;
}

div.ccm-page h5,
div.ccm-page .h5 {
  font-size: 1.125em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75em;
}

div.ccm-page h6,
div.ccm-page .h6 {
  font-size: 1em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75em;
}

div.ccm-page .h1 .small,
div.ccm-page .h1 small,
div.ccm-page .h2 .small,
div.ccm-page .h2 small,
div.ccm-page .h3 .small,
div.ccm-page .h3 small,
div.ccm-page .h4 .small,
div.ccm-page .h4 small,
div.ccm-page .h5 .small,
div.ccm-page .h5 small,
div.ccm-page .h6 .small,
div.ccm-page .h6 small,
div.ccm-page h1 .small,
div.ccm-page h1 small,
div.ccm-page h2 .small,
div.ccm-page h2 small,
div.ccm-page h3 .small,
div.ccm-page h3 small,
div.ccm-page h4 .small,
div.ccm-page h4 small,
div.ccm-page h5 .small,
div.ccm-page h5 small,
div.ccm-page h6 .small,
div.ccm-page h6 small {
  font-weight: 500;
  color: var(--secondary);
}

@media screen and (max-width: 767.98px) {
  div.ccm-page h1,
  div.ccm-page .h1 {
    font-size: 1.5em;
  }

  div.ccm-page h2,
  div.ccm-page .h2 {
    font-size: 1.375em;
    font-weight: 700;
  }

  div.ccm-page h3,
  div.ccm-page .h3 {
    font-size: 1.3em;
    font-weight: 700;
  }

  div.ccm-page h4,
  div.ccm-page .h4 {
    font-size: 1.25em;
    font-weight: 700;
  }

  div.ccm-page h5,
  div.ccm-page .h5 {
    font-size: 1em;
    font-weight: 700;
  }

  div.ccm-page h6,
  div.ccm-page .h6 {
    font-size: 0.875em;
    font-weight: 700;
  }
}

/* p
-------------------------------------------------- */
div.ccm-page p,
div.ccm-page li,
div.ccm-page dt,
div.ccm-page dd,
div.ccm-page .btn {
  font-size: 1em;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page p,
  div.ccm-page li,
  div.ccm-page dt,
  div.ccm-page dd,
  div.ccm-page .btn {
    font-size: 0.875em;
  }
}

@media screen and (max-width: 479.98px) {
  div.ccm-page p,
  div.ccm-page li,
  div.ccm-page dt,
  div.ccm-page dd,
  div.ccm-page .btn {
    font-size: 0.775em;
  }
}

/* Header
-------------------------------------------------- */

div.ccm-page #main-header-home {
  /* border-bottom: 10px solid var(--primary); */
  width: 100%;
  min-height: 790px;
  background-position:  center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: right;
  /*background-image: url(../img/main-header-home.jpg);*/
  /*border-bottom: 10px solid var(--primary);*/
}

div.ccm-page #main-header-home h1 {
  color: #F9E3FD;
  mix-blend-mode: color-dodge;
  text-shadow: 5px 3px 10px rgb(var(--primary-rgb), 0.9);
  font-weight: 600;
  line-height: 1.4;
  margin-top: 1.5em;
}

div.ccm-page #main-header-home h1.ja {
  font-size: 4em;
}

div.ccm-page #main-header-home h1.en {
  font-size: 3em;
}

div.ccm-page #main-header-home span {
  display: block;
}

div.ccm-page #main-header-page {
  min-height: 360px;
  /*background-image: url(../img/main-header-page.jpg);*/
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

div.ccm-page #main-header-page h1 {
  color: #fff;
  text-shadow: 5px 3px 10px rgb(12, 0, 61, 0.9);
  font-size: 2em;
  font-weight: 500;
  text-align: center;
  padding-top: 220px;
}

div.ccm-page #main-header-page small {
  color: #fff;
  font-size: 0.725em;
  display: block;
}

div.ccm-page a.anchor {
    display: block;
}

/* Top Navigation
-------------------------------------------------- */

div.ccm-page nav.navbar {
  margin-bottom: 0px;
  padding: 0;
  min-height: 120px;
  align-items: normal;
  background-color: rgba(var(--navbar-bg-rgb), 0.85);
}

div.ccm-page #seren-masthead {
  padding: 24px 0 8px;
}

div.ccm-page #language-switcher-area {
  text-align: right;
}

div.ccm-page #seren-main-nav {
  /*background-color: #ffffff;*/
}

div.ccm-page .navbar-nav {
  display: flex;
  justify-content: space-around;
}

div.ccm-page .navbar-nav > li {
  text-align: initial;
  vertical-align: top;
}

div.ccm-page .navbar-nav > li > a {
  border-bottom: 1px solid #ccc;
  font-size: 1em;
  padding: 1em;
  position: relative;
  transition: background-color 0.5s ease 0s;
}

div.ccm-page .navbar-nav > li:last-child > a {
  border-bottom: none;
}

div.ccm-page .navbar-nav li.nav-item > a,
div.ccm-page .navbar-nav li.nav-item > a small {
  display: block;
  color: var(--navbar-li);
}

div.ccm-page .navbar-toggler {
  border: none !important;
  padding: 4px 16px;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page .navbar-nav li.nav-item > a small {
    display: inline;
    padding-left: 1em;
  }
  div.ccm-page .navbar-toggler {
    padding: 4px;
  }
}

div.ccm-page .nav .open > a,
div.ccm-page .nav .open > a:hover,
div.ccm-page .nav .open > a:focus {
  background-color: transparent;
}

div.ccm-page .navbar-inverse .navbar-nav > .open > a,
div.ccm-page .navbar-inverse .navbar-nav > .open > a:hover,
div.ccm-page .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: transparent;
  color: #000;
}

div.ccm-page .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  border-bottom: 1px solid #ccc;
  line-height: 1.6;
  font-size: 0.875em;
  background-color: #ffffff;
}

div.ccm-page .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
div.ccm-page .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  background-color: var(--primary);
  color: #000;
  transition: background-color 2s ease 0s;
}

div.ccm-page .nav .open > a,
div.ccm-page .nav .open > a:hover,
div.ccm-page .nav .open > a:focus {
  border-color: #666;
}

div.ccm-page .dropdown-menu {
  background-color: #ffffff;
  border-radius: 0;
  padding: 0;
}

div.ccm-page .dropdown-menu > li > a {
  color: #000;
}

div.ccm-page .dropdown-menu > li > a:hover,
div.ccm-page .dropdown-menu > li > a:focus {
  color: #fff;
  background-color: var(--primary);
  background-position: center center;
  box-shadow: none;
  transition: background-color 2s ease 0s;
}

div.ccm-page .navbar-nav .open .dropdown-menu > li > a,
div.ccm-page .navbar-nav .open .dropdown-menu .dropdown-header {
  padding: 5px 15px 5px 40px;
}

div.ccm-page .navbar-collapse.in {
  background-color: var(--primary);
}

div.ccm-page .navbar-collapse.in > li > a {
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}

/* for english(single row) navigation
-------------------------------------------------- */

div.ccm-page .navbar-nav > li > a > div {
  margin: 10px 0;
}

div.ccm-page #seren-masthead-right {
  text-align: right;
}

.lang-btn {
  font-size: 0.875em;
  padding: 2px 14px;
  text-decoration: none;
  text-align: center;
  text-decoration: none !important;
  color: #fff !important;
  border: 1px solid #fff;
  background-color: color-mix(in srgb, var(--primary) 80%, transparent);
  white-space: nowrap;
  border-radius: 0;
  display: inline-block;
  max-width: 100px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.lang-btn:hover,
.lang-btn:focus,
.lang-btn:active {
  color: #fff !important;
  background-color: color-mix(in srgb, var(--secondary) 60%, transparent);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page .navbar-nav > li > a > div {
    margin: 0;
  }

  div.ccm-page #seren-masthead-right {
    text-align: center;
  }

  .lang-btn {
    font-size: 0.725em;
    padding: 2px 8px;
  }
}

@media screen and (min-width: 768px) {
  div.ccm-page .navbar-collapse {
    margin-top: 0;
  }

  div.ccm-page .navbar-collapse.in {
    background-color: transparent;
  }

  div.ccm-page .navbar-nav {
    margin: 0;
    width: 100%;
  }

  div.ccm-page .navbar-nav > li {
    float: none;
    display: inline-block;
    text-align: center;
  }

  div.ccm-page .navbar-nav > li > a {
    padding: 23px 40px !important;
    border: none;
  }

  div.ccm-page .navbar-nav > li:has(small) > a {
    line-height: 1.25;
    padding: 15px 40px !important;
  }

  div.ccm-page .dropdown-menu {
    font-size: 0.875em;
    text-align: center;
    padding: 0;
  }

  div.ccm-page .navbar-nav .open .dropdown-menu > li > a,
  div.ccm-page .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 3px 20px;
  }

  div.ccm-page #seren-masthead {
    padding: 16px 0;
  }

  div.ccm-page #seren-masthead-left {
    text-align: left;
  }

  div.ccm-page #seren-logo {
    text-align: center;
  }

  div.ccm-page .navbar-nav > li > a.active {
    color: var(--navbar-li);
    box-shadow: 0 -3px var(--secondary) inset;
  }

  div.ccm-page .navbar-nav > li > a:hover,
  div.ccm-page .navbar-nav > li > a:active {
    color: var(--navbar-li);
    background-position: center center;
    box-shadow: 0 -3px var(--secondary) inset;
    background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 2%, transparent), color-mix(in srgb, var(--secondary) 10%, transparent));
    overflow: hidden;
    transition: all 0.5s 0s ease;
  }
}

@media screen and (max-width: 1399.98px) {
  div.ccm-page .navbar-nav > li > a {
    padding: 23px 30px !important;
  }

  div.ccm-page .navbar-nav > li:has(small) > a {
    padding: 15px 30px !important;
  }
}

@media screen and (max-width: 1199.98px) {
  div.ccm-page .navbar-nav > li > a {
    padding: 23px 20px !important;
  }

  div.ccm-page .navbar-nav > li:has(small) > a {
    padding: 15px 20px !important;
  }
}

@media screen and (max-width: 991.98px) {
  div.ccm-page .navbar-nav > li > a {
    padding: 23px 10px !important;
  }

  div.ccm-page .navbar-nav > li:has(small) > a {
    padding: 15px 10px !important;
  }
}

@media screen and (max-width: 767.98px) {
  div.ccm-page .navbar-nav > li > a {
    padding: 12px 4px !important;
  }

  div.ccm-page .navbar-nav > li > a > img {
    margin-top: -5px;
  }

  div.ccm-page .navbar-nav > li:has(small) > a {
	font-weight: 500;
  }

  div.ccm-page .navbar-nav > li > a small {
	font-size: 0.925em;
  }
}

/* home
-------------------------------------------------- */
div.ccm-page .home-concept,
div.ccm-page .home-research,
div.ccm-page .home-news {
  padding: 3.75em 0;
}

div.ccm-page .home-concept {
  padding-bottom: 0;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page .home-concept,
  div.ccm-page .home-news {
    padding: 1.75em 0;
  }
  div.ccm-page .home-concept p {
    font-size: 0.925em;
  }
}

/* main-section
-------------------------------------------------- */

div.ccm-page #main-section {
  background-color: #ffffff;
  color: #000;
  padding: 3.75em 0;
}

div.ccm-page #main-section p {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 1em;
}

div.ccm-page #main-section p .fa,
div.ccm-page #main-section p .fab,
div.ccm-page #main-section p .fal,
div.ccm-page #main-section p .far,
div.ccm-page #main-section p .fas {
  display: inline;
}

div.ccm-page #main-section li {
  font-size: 1em;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page #main-section {
    padding-bottom: 1.875em;
  }
  div.ccm-page #main-section p,
  div.ccm-page #main-section li,
  div.ccm-page blockquote {
    font-size: 0.925em;
  }
}

/* section --------------------------------------- */

div.ccm-page section {
  padding-bottom: 1.25em;
}

/* footer
-------------------------------------------------- */
div.ccm-page #footer {
  margin-top: auto;
  background-color: var(--primary);
}

div.ccm-page .footer h5 {
  color: #fff;
  margin-bottom: 1em;
}

div.ccm-page .footer h5 small {
  font-weight: normal;
  font-size: 0.75em;
}

div.ccm-page .footer p {
  margin: 0;
  padding: 0;
}

div.ccm-page .footer p,
div.ccm-page .footer a {
  color: #fff;
  transition: color 0.5s 0s ease;
}

div.ccm-page .footer a:hover {
  color: var(--secondary);
  text-decoration: none;
}

div.ccm-page #top-footer {
  /*background-image: url("../img/footer-bg.jpg");*/
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
}

div.ccm-page #bottom-footer {
  background-color: var(--primary);
  color: #fff;
  padding-top: 1em;
  padding-bottom: 1em;
}

div.ccm-page #bottom-footer .copyright {
  font-size: 0.75em;
  line-height: 1.2;
}

div.ccm-page #bottom-footer .ccm-block-social-links a > .fa {
  color: #fff;
}

div.ccm-page #bottom-footer .ccm-block-social-links a > .fa:hover,
div.ccm-page #bottom-footer .ccm-block-social-links a > .fa:active,
div.ccm-page #bottom-footer .ccm-block-social-links a > .fa:focus {
  color: var(--secondary);
}

div.ccm-page #bottom-footer .logo {
  text-align: right;
  padding-top: 8px;
}

@media screen and (max-width: 767.98x) {
  div.ccm-page #bottom-footer .logo {
    text-align: left;
  }
}

div.ccm-page .banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  gap: 1.5em;
}

@media screen and (max-width: 1199.98px) {
  div.ccm-page .banner {
    justify-content: space-around;
  }
}

/* max-width: 1399.98px
--------------------------------------------------
@media screen and (max-width: 1399.98px) {
  div.ccm-page #main-header-home h1 {
  }
} */

/* max-width: 1199.98px
-------------------------------------------------- */

@media screen and (max-width: 1199.98px) {
  div.ccm-page nav.navbar {
    min-height: 120px;
  }

  div.ccm-page .footer .banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  div.ccm-page .footer .menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  div.ccm-page #middle-footer .menu > div {
    padding: 0 1.25em;
  }
}

/* max-width: 991.98px
-------------------------------------------------- */

@media screen and (max-width: 991.98px) {
  div.ccm-page nav.navbar {
    min-height: 120px;
  }

  div.ccm-page #seren-masthead {
    padding: 16px 0 8px;
  }

  div.ccm-page #main-header-home {
    min-height: 640px;
  }

  div.ccm-page #main-header-home h1.ja {
    font-size: 3em;
  }

  div.ccm-page #main-header-home h1.en {
    font-size: 2.25em;
  }
}

/* max-width: 767.98px
-------------------------------------------------- */

@media screen and (max-width: 767.98px) {
  div.ccm-page nav.navbar {
    margin-bottom: 0px;
    min-height: 70px;
  }

  div.ccm-page #main-header-home {
    min-height: 480px;
  }

  div.ccm-page #main-header-home h1.ja {
    font-size: 2.25em;
  }
  div.ccm-page #main-header-home h1.en {
    font-size: 1.5em;
  }

  div.ccm-page #main-header-page {
    min-height: 240px;
  }

  div.ccm-page #main-header-page h1 {
    font-size: 1.75em;
    padding-top: 120px;
  }

  div.ccm-page #seren-masthead {
    padding: 10px 0;
  }

  div.ccm-page #site-logo-area {
    /*display: flex;*/
    /*justify-content: center;*/
    flex: 1;
    padding-right: 0;
  }

  div.ccm-page #seren-masthead-right {
    width: 61px;
  }

  div.ccm-page .footer .banner,
  div.ccm-page .footer .menu {
    display: flex;
    flex-direction: column;
    padding: 0px 15px;
  }

  div.ccm-page .footer .banner > div,
  div.ccm-page .footer .menu > div {
    padding: 0;
    width: 100%;
  }

  div.ccm-page .footer .banner > div:not(:first-child),
  div.ccm-page .footer .banner > div:not(:last-child),
  div.ccm-page .footer .menu > div:not(:first-child),
  div.ccm-page .footer .menu > div:not(:last-child) {
    padding: 0;
  }
}

/* max-width: 479.98px
-------------------------------------------------- */

@media screen and (max-width: 479.98px) {
  div.ccm-page nav.navbar {
    margin-bottom: 0px;
    min-height: 56px;
  }

  div.ccm-page #main-header-home {
    min-height: 320px;
  }

  div.ccm-page.ja #main-header-home h1 {
    font-size: 1.725em;
  }
  div.ccm-page.en #main-header-home h1 {
    font-size: 1.25em;
  }

  div.ccm-page #main-header-page {
    min-height: 220px;
  }

  div.ccm-page #main-header-page h1 {
    font-size: 1.25em;
    padding-top: 120px;
  }
}

/* side nav menu
-------------------------------------------------- */

div.ccm-page #sidebar h3 {
  color: #000;
  font-size: 1.125em;
  margin-bottom: 2px;
  padding: 20px 10px 20px 1.25em;
  border-top: 5px solid var(--primary);
}

div.ccm-page ul.seren-vertical-menu {
  margin-bottom: 20px;
  border-top: 1px solid #ccc;
}

div.ccm-page ul.seren-vertical-menu > li {
  position: relative;
  z-index: 0;
  border-bottom: 1px solid #ccc;
  transition: all 0.5s;
  width: 100%;
}

div.ccm-page ul.seren-vertical-menu > li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, color-mix(in srgb, var(--bg-primary) 25%, transparent), color-mix(in srgb, var(--bg-primary) 5%, transparent));
  opacity: 0;
  transition: opacity 0.5s;
}

div.ccm-page ul.seren-vertical-menu > li:hover::before {
  opacity: 1;
}

div.ccm-page ul.seren-vertical-menu > li > a {
  color: var(--default);
  margin-left: 2em;
  padding: 13px 10px;
  text-decoration: none !important;
  display: block;
}

div.ccm-page ul.seren-vertical-menu > li > a:focus,
div.ccm-page ul.seren-vertical-menu > li > a:hover {
  background-color: transparent !important;
  text-decoration: none;
  transition: color 0.5s ease 0s;
}

div.ccm-page ul.seren-vertical-menu > li > a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f105";
  margin-left: -1.5em;
  padding-right: 0.5em;
  transition: color 0.5s ease 0s;
}

div.ccm-page ul.seren-vertical-menu > li > a:hover:before {
  color: var(--primary) !important;
}

div.ccm-page ul.seren-vertical-menu > li.selected {
  color: #ffffff !important;
  font-weight: 600;
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 70%, transparent), color-mix(in srgb, var(--primary) 50%, transparent));
}

div.ccm-page ul.seren-vertical-menu > li.selected a,
div.ccm-page ul.seren-vertical-menu > li.selected a:before {
  color: #ffffff !important;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li {
  text-align: right;
  list-style: none;
  padding: 0 0.5em 0.5em;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li > a {
  text-decoration: none !important;
  padding: 0.5em 0;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li > a:hover:after {
  color: var(--primary) !important;
  transition: color 1s ease 0s;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li.selected {
  color: var(--primary);
  font-weight: 600;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li.selected > a {
  color: var(--primary);
}

div.ccm-page ul.seren-vertical-menu > li > ul > li.selected > a:after,
div.ccm-page ul.seren-vertical-menu > li > ul > li.selected > a:focus:after,
div.ccm-page ul.seren-vertical-menu > li > ul > li.selected > a:hover:after {
  color: var(--primary) !important;
}

div.ccm-page .seren-vertical-menu .collapse > li {
  border: none;
}

div.ccm-page .seren-vertical-menu .collapse > li > a:focus,
div.ccm-page .seren-vertical-menu .collapse > li > a:hover {
  background-color: transparent !important;
  text-decoration: none;
}

div.ccm-page .vertical-menu-title > small:before {
  content: "\A";
  white-space: pre;
}

div.ccm-page .vertical-menu-title > small {
  font-size: inherit;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page .vertical-menu-title > small:before {
    content: " ";
    white-space: pre;
  }
}

/* btn
-------------------------------------------------- */

div.ccm-page .btn {
  border-radius: 0;
  font-weight: 500;
  padding: 0.725em 1.75em;
}

div.ccm-page #main-section a.btn,
div.ccm-page #main-section .btn {
  text-decoration: none;
}

div.ccm-page .btn-group-lg > .btn,
div.ccm-page .btn-lg {
  border-width: 2px;
}

div.ccm-page .btn-xlg {
  padding: 16px 24px;
  line-height: 1.3333333;
  border-width: 3px;
}

div.ccm-page a.btn-normal,
div.ccm-page .btn-normal {
  border-radius: 0;
  color: var(--primary);
  background-color: #fff;
  border: 1px solid var(--primary);
  text-align: center;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page a.btn-normal:hover,
div.ccm-page a.btn-normal:focus,
div.ccm-page a.btn-normal:active,
div.ccm-page .btn-normal:hover,
div.ccm-page .btn-normal:focus,
div.ccm-page .btn-normal:active {
  color: #fff !important;
  background-color: color-mix(in srgb, var(--primary) 80%, transparent);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

div.ccm-page a.btn-transparent,
div.ccm-page .btn-transparent {
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page a.btn-transparent:hover,
div.ccm-page a.btn-transparent:focus,
div.ccm-page a.btn-transparent:active,
div.ccm-page .btn-transparent:hover,
div.ccm-page .btn-transparent:focus,
div.ccm-page .btn-transparent:active {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

div.ccm-page a.btn-light-transparent,
div.ccm-page .btn-light-transparent {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page a.btn-light-transparent:hover,
div.ccm-page a.btn-light-transparent:focus,
div.ccm-page a.btn-light-transparent:active,
div.ccm-page .btn-light-transparent:hover,
div.ccm-page .btn-light-transparent:focus,
div.ccm-page .btn-light-transparent:active {
  color: #333;
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

div.ccm-page a.btn-dark-transparent,
div.ccm-page .btn-dark-transparent {
  border-color: #000;
  color: #000;
  background-color: transparent;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page a.btn-dark-transparent:hover,
div.ccm-page a.btn-dark-transparent:focus,
div.ccm-page a.btn-dark-transparent:active,
div.ccm-page .btn-dark-transparent:hover,
div.ccm-page .btn-dark-transparent:focus,
div.ccm-page a.btn-dark-transparent:active {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

/* spacer
-------------------------------------------------- */

div.ccm-page .spacer-10 {
  height: 10px;
}

div.ccm-page .spacer-20 {
  height: 20px;
}

div.ccm-page .spacer-30 {
  height: 30px;
}

div.ccm-page .spacer-40 {
  height: 40px;
}

div.ccm-page .spacer-50 {
  height: 50px;
}

div.ccm-page .spacer-60 {
  height: 60px;
}

div.ccm-page .spacer-70 {
  height: 70px;
}

div.ccm-page .spacer-80 {
  height: 80px;
}

div.ccm-page .spacer-90 {
  height: 90px;
}

div.ccm-page .spacer-100 {
  height: 100px;
}

/* social-links
-------------------------------------------------- */

div.ccm-page .ccm-block-social-links a > .fa {
  color: #000;
  transition: color 1s ease-in-out;
  font-size: 18px;
}

div.ccm-page .ccm-block-social-links a > .fa:hover,
div.ccm-page .ccm-block-social-links a > .fa:active,
div.ccm-page .ccm-block-social-links a > .fa:focus {
  color: var(--primary);
  font-size: 18px;
}

/* form
-------------------------------------------------- */

div.ccm-page input[type="text"],
div.ccm-page input[type="email"],
div.ccm-page input[type="tel"],
div.ccm-page input[type="search"],
div.ccm-page input[type="url"],
div.ccm-page input[type="password"],
div.ccm-page input,
div.ccm-page input.form-control,
div.ccm-page .ui-autocomplete-input,
div.ccm-page textarea,
div.ccm-page .uneditable-input {
  border-radius: 0;
}

div.ccm-page div.ccm-block-type-form span.text-muted {
  color: #ccc;
}

/* pagenation
-------------------------------------------------- */

div.ccm-page .pagination > li:first-child > a,
div.ccm-page .pagination > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}

div.ccm-page .pagination > li:last-child > a,
div.ccm-page .pagination > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

div.ccm-page .pagination > .active > a,
div.ccm-page .pagination > .active > a:focus,
div.ccm-page .pagination > .active > a:hover,
div.ccm-page .pagination > .active > span,
div.ccm-page .pagination > .active > span:focus,
div.ccm-page .pagination > .active > span:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

div.ccm-page .pagination a {
  color: #333;
}

/* image
-------------------------------------------------- */

div.ccm-page .center-block > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

div.ccm-page img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

/* list
-------------------------------------------------- */

div.ccm-page ul.list {
  counter-reset: counter-name;
  padding-left: 0;
  margin-bottom: 2em;
}

div.ccm-page ul.list li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 1em 0 1em 20px;
  border-bottom: 1px dotted var(--primary);
  text-align: justify;
}

div.ccm-page ul.bordered {
  counter-reset: counter-name;
  padding-left: 0;
  margin-bottom: 2em;
}

div.ccm-page ul.bordered li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 1em 0 1em 1.75em;
  border-bottom: 1px dotted var(--primary);
}

div.ccm-page ul.bordered li::before {
  content: "";
  background-color: var(--primary);
  width: 5px;
  height: 5px;
  border-radius: 10px;
  position: absolute;
  left: 0.5em;
  top: 1.625em;
  margin: auto 0;
  padding: 4px;
}

div.ccm-page .list-styled {
  counter-reset: counter-name;
  padding: 0;
  margin: 0;
}

div.ccm-page .list-styled li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 1.75em;
}

div.ccm-page .list-styled li::before {
  content: "";
  background-color: var(--primary);
  width: 5px;
  height: 5px;
  border-radius: 10px;
  position: absolute;
  left: 0.5em;
  top: 0.625em;
  margin: auto 0;
  padding: 4px;
}

div.ccm-page ol {
  counter-reset: counter-name;
  padding-left: 0;
}

div.ccm-page ol li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 2.4em;
}

div.ccm-page ol.bordered {
  counter-reset: counter-name;
  padding-left: 0;
}

div.ccm-page ol.bordered li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 1em 0 1em 2.4em;
  border-bottom: 1px dotted var(--primary);
}

div.ccm-page ol.bordered li:last-child {
  border-bottom: none;
}

div.ccm-page ol.no-border {
  counter-reset: counter-name;
  padding-left: 0;
}

div.ccm-page ol.no-border li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 2.4em;
  border-bottom-style: none !important;
}

div.ccm-page ol li:before,
div.ccm-page ol.bordered li:before,
div.ccm-page ol.no-border li:before {
  counter-increment: counter-name;
  content: counter(counter-name) ".";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
  display: block;
  width: 1.6em;
  text-align: right;
}

/* achievements
-------------------------------------------------- */

div.ccm-page #achievements ul {
  padding-left: 0;
  margin-bottom: 2em;
}

div.ccm-page #achievements ul li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 1em 0em 1em 0.5em;
  border-bottom: 1px dotted var(--primary);
}

div.ccm-page #achievements ul li > strong:first-child {
  color: var(--primary);
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  margin: 0 0 0.5em -0.25em;
}

div.ccm-page #achievements ul li strong {
  font-weight: 600;
  font-style: normal;
}

div.ccm-page #achievements ul li img {
  margin-top: 1em;
  padding: 0.25em 0.5em;
}

div.ccm-page #achievements ul li br {
  margin-bottom: 0.5em;
}

/* publications
-------------------------------------------------- */

div.ccm-page .publications {
  padding: 1em;
  border-bottom: 1px dotted #ccc;
}

div.ccm-page #main-section .publications p {
  margin-bottom: 0.25em;
}

div.ccm-page #main-section .publications ul {
  list-style: none;
}

div.ccm-page #main-section .publications ul li {
  color: rgba(var(--primary-rgb), 1);
}

div.ccm-page .publications ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f105";
  margin-left: -1.5em;
  padding-right: 0.5em;
  transition: color 1s ease 0s;
}

div.ccm-page #main-section .publications ul li a {
  color: rgba(var(--primary-rgb), 1);
}

div.ccm-page #main-section .publications ul li a:hover,
div.ccm-page #main-section .publications ul li a:focus,
div.ccm-page #main-section .publications ul li a:active {
  color: rgba(var(--primary-rgb), 0.5);
}

/* news
-------------------------------------------------- */

div.ccm-page .news-wrapper {
  margin-bottom: 2em;
}

div.ccm-page dl.news {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

div.ccm-page dl.news dt,
div.ccm-page dl.news dd {
  padding: 1.25em 0.25em;
  border-bottom: 1px dotted #ccc;
  box-sizing: border-box;
}

div.ccm-page dl.news dt {
  color: var(--primary);
  width: 14%;
}

div.ccm-page dl.news dd {
  margin: 0;
  width: 86%;
}

div.ccm-page dl.news dd p {
  font-size: inherit !important;
  line-height: inherit !important;
}

div.ccm-page dl.news dd p:last-of-type {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 1199.98px) {
  div.ccm-page dl.news dt {
    width: 18%;
  }

  div.ccm-page dl.news dd {
    width: 82%;
  }
}

@media screen and (max-width: 991.98px) {
  div.ccm-page .news-wrapper {
    margin-bottom: 24px;
  }
  div.ccm-page dl.news dt {
    width: 100%;
    padding: 0.75em 0.25em 0;
    border-bottom: none;
  }

  div.ccm-page dl.news dd {
    width: 100%;
    padding: 0.25em 0.25em 0.75em;
  }
}

/* blog
-------------------------------------------------- */

.blog-page-list {
  padding: 1.2em 0;
  border-bottom: 1px dotted #ccc;
}

.blog-page-list h4 {
  margin-bottom: 5px !important;
  margin-top: 0 !important;
}

div.blog-page-title {
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
}

div.blog-page-title h3 {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

div.blog-page-title span.page-date {
  margin-right: 2em;
}

div.blog-page-title span.page-date,
div.blog-page-title span.page-author {
  font-style: italic;
  font-size: 0.85em;
}

/* block
-------------------------------------------------- */

div.ccm-page .ccm-block-page-list-rss-feed .fa-rss {
  background-color: var(--primary);
  color: #000;
  padding: 3px 5px;
  margin-bottom: 15px;
}

div.ccm-page .ccm-block-page-list-rss-feed .fa-rss:hover {
  background-color: var(--primary);
}

div.ccm-page ul.ccm-block-date-navigation-dates {
  list-style-type: none;
  padding-bottom: 0;
  padding-left: 0;
}

div.ccm-page .ccm-block-date-navigation-dates a {
  text-decoration: none;
}

div.ccm-page .ccm-block-date-navigation-dates a:focus,
div.ccm-page .ccm-block-date-navigation-dates a:active {
  text-decoration: none;
}

div.ccm-page .ccm-block-tags-wrapper a:hover,
div.ccm-page ccm-block-tags-wrapper a:focus {
  text-decoration: none;
}

div.ccm-page .ccm-block-tags-wrapper .ccm-block-tags-tag,
div.ccm-page .ccm-block-tags-wrapper label {
  border-radius: 0;
}

div.ccm-page .ccm-block-tags-wrapper .ccm-block-tags-tag {
  background-color: var(--primary);
  color: #fff;
  padding: 0.125em 0.25em;
  transition: all 0.5s 0s ease;
}

div.ccm-page .ccm-block-tags-wrapper a:hover .ccm-block-tags-tag {
  background-color: var(--secondary);
  color: #fff;
}

div.ccm-page .ccm-block-tags-wrapper .label {
  font-size: 100%;
}

/* breadcrumb
-------------------------------------------------- */

.breadcrumb {
  background-color: #ffffff;
  margin-bottom: 0;
  padding: 0.5em 0 0;
  font-size: 0.875em;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

.breadcrumb a {
  text-decoration: none;
  transition: 0.5s;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb a.home::before {
  content: url("../images/icon_home.svg");
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.8);
}

/* Page-top
-------------------------------------------------- */

div.ccm-page #back-top {
  width: 46px;
  height: 46px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

div.ccm-page #back-top a {
  background: rgba(var(--primary-rgb), 0.75);
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
  transition: 0.5s;
  position: relative;
}

div.ccm-page #back-top a:hover {
  background: rgba(var(--primary-rgb), 1);
  text-decoration: none;
}

#back-top a > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

/* Link
-------------------------------------------------- */

div.ccm-page ul.link {
  list-style: none;
  padding-left: 0;
}

div.ccm-page ul.link > li {
  border-bottom: 1px solid #ccc;
}

div.ccm-page ul.link > li:first-child {
  border-top: 1px solid #ccc;
}

div.ccm-page ul.link ul {
  list-style: none;
  padding-left: 0;
}

div.ccm-page ul.link li {
  color: #000;
  display: block;
  padding: 3px 0px 3px 22px;
  position: relative;
}

div.ccm-page ul.link li a {
  display: block;
  padding: 5px 0;
  text-decoration: none !important;
}

div.ccm-page ul.link li a:focus,
ul.link li a:hover {
  background-color: transparent !important;
  text-decoration: underline !important;
}

div.ccm-page ul.mini-bar {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

div.ccm-page ul.mini-bar > li {
  border-bottom: 1px solid #ccc;
  color: #000;
  display: block;
  padding: 8px 5px 8px 10px;
  position: relative;
}

div.ccm-page ul.mini-bar > li:first-child {
  border-top: 1px solid #ccc;
}

div.ccm-page ul.mini-bar > li > a {
  display: block;
  position: relative;
  text-decoration: none !important;
}

div.ccm-page ul.mini-bar > li > a:focus,
.ccm-page ul.mini-bar > li > a:hover {
  background-color: transparent !important;
  text-decoration: none;
}

div.ccm-page ul.mini-bar > li.selected {
  color: #888;
  background-color: #fdeaeb;
}

div.ccm-page ul.mini-bar > li.selected > a {
  color: #888 !important;
}

div.ccm-page ul.mini-bar > li.selected > a:focus,
.ccm-page ul.mini-bar > li.selected > a:hover {
  color: #1f1f1f !important;
}

div.ccm-page ul.mini-bar > li.selected > a:before {
  color: #fff !important;
}

div.ccm-page ul.mini-bar > li.selected > a:focus:before,
.ccm-page ul.mini-bar > li.selected > a:hover:before {
  color: #fff !important;
}

/* table
-------------------------------------------------- */

.table-no-bordered {
  border-top: 0px !important;
  border-bottom: 0px !important;
}

.table-no-bordered > tbody > tr {
  border: 0px;
}

.table-no-bordered > tbody > tr > th {
  border: 0px;
}

.table-no-bordered > tbody > tr > td {
  border: 0px;
}

table.vertical-align-middle > tbody > tr > th {
  vertical-align: middle;
}

table.vertical-align-middle > tbody > tr > td {
  vertical-align: middle;
}

/* .table-striped > tbody > tr:last-child > td {
  border-bottom: 1px solid #ddd;
} */

.domain::before {
  content: "@";
}

@media screen and (min-width: 768px) {
  .row-eq-height {
    display: flex;
    flex-wrap: wrap;
  }

  .dl-horizontal-left dt {
    float: left;
    width: 100px;
    clear: left;
    text-align: initial;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal-left dd {
    margin-left: 120px;
  }
}

div.ccm-page .table {
  table-layout: fixed;
}

div.ccm-page .table td:nth-child(2) {
  white-space: nowrap;
  font-weight: bold;
}

div.ccm-page .table td:nth-child(5) {
  word-break: break-all;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.table-member th,
.table-member td {
  box-sizing: border-box;
}

.table-member tr td:nth-child(1),
.table-member tr th:nth-child(1) {
  width: 15%;
}

.table-member tr td:nth-child(2),
.table-member tr th:nth-child(2) {
  width: 15%;
}

.table-member tr td:nth-child(1) img {
  width: 100%;
}

@media screen and (max-width: 991.98px) {
  .table-member tr td:nth-child(2),
  .table-member tr th:nth-child(2) {
    width: 18%;
  }
}

@media screen and (max-width: 639.98px) {
  .table-member {
    width: 100%;
  }

  .table-member thead {
    display: none;
  }

  .table-member tr td:nth-child(1) {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    border: none;
    padding: 30px 0;
  }

  .table-member tr td:nth-child(2) {
    width: 100%;
  }

  .table-member tr td:nth-child(5) {
    border-bottom: 1px solid #8b8b8b;
  }

  table.table-member tr td {
    display: block;
    width: 100%;
  }
}

/* Horizontal Navigation
----------------------------------------------------------------- */
div.ccm-page .horizontal-nav {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}

div.ccm-page .horizontal-nav > li {
  display: inline;
  margin: 0px;
  padding: 0px;
}

div.ccm-page .horizontal-nav > li > a {
  border: 1px solid #222;
  border-top: none;
  border-bottom: none;
  padding: 0 1.25em;
  margin-left: -1px;
  margin-bottom: 0.75em;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  float: left;
}

div.ccm-page .horizontal-nav > li > a:hover {
  transition: all 0.3s ease;
}

div.ccm-page .horizontal-nav > li:first-child > a {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}

div.ccm-page .horizontal-nav > li:last-child > a {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

div.ccm-page .horizontal-nav > .active > a,
div.ccm-page .horizontal-nav > .active > a:focus,
div.ccm-page .horizontal-nav > .active > a:hover {
  font-weight: 600;
}

/* original
----------------------------------------------------------------- */

.disabled {
  pointer-events: none;
  color: #d2d2d2 !important;
}

a.disabled small {
  color: #d2d2d2 !important;
}

/* animation ------------------- */

.fadeUp {
  clip-path: inset(0 100% 0 0);
  animation: textAnime 1s forwards, gradationTextAnimation 3s linear infinite;
  display: inline-block;
  /* text-align: center; */
}

@keyframes textAnime {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  100% {
    webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

/* figcaption ------------------- */
div.ccm-page figcaption {
  margin: 3px 0 30px 0;
  font-size: 13px;
  line-height: 1.2;
  color: #474747;
}

/* nav-horizontal ------------------- */
div.ccm-page .nav-pills {
  margin-bottom: 1.5em;
}

div.ccm-page .nav-pills li.nav-item:not(:first-child) {
  margin-left: 2px;
}

div.ccm-page .nav-pills li.nav-item:not(:last-child) {
  margin-right: 2px;
}

div.ccm-page .nav-pills li.nav-item a {
  color: var(--primary);
  background-color: #fff;
  text-align: center;
  text-decoration: none !important;
  padding: 0.725em 1.75em;
  border-radius: 50px;
  border: 1px solid var(--primary);
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page .nav-pills li.nav-item a:hover {
  color: #fff;
  background-color: color-mix(in srgb, var(--primary) 80%, transparent);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

div.ccm-page .nav-pills li.nav-item a.active,
div.ccm-page .nav-pills li.nav-item a.active:focus,
div.ccm-page .nav-pills li.nav-item a.active:hover {
  color: #fff;
  background-color: var(--primary);
  cursor: default;
  pointer-events: none;
}

div.ccm-page .nav-pills li.nav-item:has(small) > a {
  flex-grow: 1;
  line-height: 1;
}

div.ccm-page .nav-pills li.nav-item a small::before {
  content: "\A";
  white-space: pre;
}

@media only screen and (max-width: 819.98px) {
  div.ccm-page .nav-pills li.nav-item {
    font-size: 15px !important;
  }
}

@media only screen and (max-width: 767.98px) {
  div.ccm-page .nav-pills {
    flex-flow: column;
  }

  div.ccm-page .nav-pills li.nav-item:not(:first-child) {
    margin-left: initial;
    margin-top: 2px;
  }

  div.ccm-page .nav-pills li.nav-item:not(:last-child) {
    margin-right: initial;
    margin-bottom: 2px;
  }
}

/* preset
-------------------------------------------------- */

div.ccm-page .member-list {
  border-bottom: 1px dotted var(--primary);
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
}
div.ccm-page .member-list h4 {
  margin-top: 0.5em;
}
div.ccm-page .member-list h4 small {
  color: var(--primary);
  font-weight: 400;
}
div.ccm-page .member-list h6 {
  color: var(--default);
}
div.ccm-page .member-list i {
  color: var(--primary);
}

/* custom
-------------------------------------------------- */

.badge {
	background-color: var(--primary);
}

.text-deco {
	border-bottom: 3px dotted var(--primary);
	padding-bottom: 0.025em;
}
.text-deco-wave {
	text-decoration: underline var(--primary) 2px;
	text-decoration-style: wavy;
	text-underline-offset: 0.125em;
}

.tooltips {
  position: relative;
  display: inline-block;
}
.tooltips .tips {
  display: inline-block;
  top: 30px;
  left: -14%;
}
.tips {
  position: absolute;
  padding: 0.275em 0.75em;
  color: var(--primary);
  width: auto;
}
.tipsdesc {
  font-weight: bold;
  font-size: 0.875em;
  color: var(--primary);
  white-space: nowrap;
}
