@charset "UTF-8";
/* ======================================================================= */
/*!
 * CUSTOM STYLESHEET
 * 01. HTML Basic Settings
 * 02. Header Area
 * 03. Main Area
 * 04. Sidebar Area
 * 05. Footer Area
 * 06. Original Module Settings
 */
/* ======================================================================= */

/*!
 * 01. HTML Basic Settings
 * ----------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #010101;
  -webkit-tap-highlight-color: rgba(0,0,0,0.8);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #010101;
  -webkit-tap-highlight-color: rgba(0,0,0,0.8);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  transform: rotate(0.03deg);
}
h1, .h1 {
  font-size: 1.5rem;
}
h2, .h2 {
  font-size: 1.4rem;
}
h3, .h3 {
  font-size: 1.3rem;
}
h4, .h4 {
  font-size: 1.2rem;
}
h5, .h5 {
  font-size: 1.1rem;
}
h6, .h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: #010101;
  letter-spacing: 2px;
}
span.bold {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  transform: rotate(0.03deg);
}
img{
  -webkit-backface-visibility: hidden;
}
a {
  color: #0e3c7f;
  text-decoration: none;
  transition: all .25s;
}
a:hover {
  text-decoration: none;
}
a img {
  opacity: 1;
}
a:hover img {
  opacity: .8;
  transition: all .5s;
}
a.anchor {
  display: block;
  height: 150px;
  margin-top: -150px;
  content: "";
}

a.external {
  color: #0e3c7f;
  text-decoration: underline;
}
a.external:hover {
  text-decoration: none;
}
a.external::after {
  margin-left: .25rem;
  content: "\f360";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.site {
  overflow-x: hidden;
}

/*!
 * 02. Header Area
 * ----------------------------------------------------------------------- */
.header {
  position: relative;
}

/* Header Top  */
.header-top {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  transition: background-color .25s ease-in-out;
}
.admin-bar .header-top.is-sticky {
  padding-top: calc( 1.5rem + 32px );
}
.header-top.is-sticky {
  position: fixed;
  background-color: rgba(255,255,255,.9);
}

.header-top .logo  {
  max-width: 310px;
}

/* Header Middle  */
.header-middle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  width: 100%;
}

/* Desktop Nav */
.dropdown-toggle::after {
  margin-left: 0;
}
.desktop-nav .nav-item {
  position: relative;
}
.desktop-nav .nav-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1rem;
  left: 0;
  top: 50%;
  background-color: rgba(0,0,0,.25);
  transform: translateY(-50%);
}
.desktop-nav .nav-item:last-of-type::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 1rem;
  right: 0;
  top: 50%;
  background-color: rgba(0,0,0,.25);
  transform: translateY(-50%);
}
.desktop-nav .nav-link {
  color: #010101;
  line-height: 1.1;
}
.desktop-nav .nav-link .sub {
  display: block;
  color: #0e3c7f;
  font-size: .8rem;
  text-align: center;
}
.desktop-nav .nav-link:hover {
  color: #0e3c7f;
}
@media (min-width: 1500px) {
  .desktop-nav .nav-link {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

/* Mobile Nav */
.mobile-nav {
  overflow-y: auto;
  height: calc( 100vh );
  background-color: rgba(255,255,255,.9); 
}
.mobile-nav .nav-text {
  border-bottom: 1px dotted rgba(0,0,0,.25);
}
.mobile-nav .nav-text .nav-link {
  position: relative;
  padding: 1rem 1.5rem;
}
.mobile-nav .nav-text .nav-link::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-left: .25rem;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: .8rem;
  color: rgba(100,100,100,.4);
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .mobile-nav .nav {
    padding-top: 96.25px;
  }
  .admin-bar .mobile-nav .nav {
    padding-top: calc( 96.25px + 49px );
  }
}

/*!
 * 03. Main Area
 * ----------------------------------------------------------------------- */

.home .hero {
  position: relative;
}
.home .hero .catch-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.home .hero .catch-copy .text-box span {
  margin: 1rem 0;
  padding: 1rem;
  color: #FFF;
  font-size: 3rem;
  background-color: rgba(0,0,0,.6);
}
@media (max-width: 991.98px) {
  .home .hero .catch-copy .text-box span {
    font-size: 1.75rem;
    white-space: nowrap;
  }
}

.home .company .home-section-headline p {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  color: #eef0f4;
}
.home .company .home-section-body {
  padding-left: 3rem;
  padding-right: 3rem;
}
.home .company .home-section-body h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: #0e3c7f;
}
.home .company .home-section-body h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
@media (min-width: 1600px) {
  .home .company .home-section-headline p {
    font-size: 100px;
  }
  .home .company .home-section-body h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
  }
  .home .company .home-section-body h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  .home .company .home-section-headline p {
    font-size: 50px;
  }
  .home .company .home-section-body {
    padding: 0;
  }
  .home .company .home-section-body h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .home .company .home-section-body h3 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
}

.home .services {
  background-image: url("../images/page-cover.png");
  background-repeat: repeat;
}
.home .services .card {
  border: none;
  border-radius: 0;
  text-align: center;
}
.home .services .card .card-body {
  padding: 0;
}
.home .services .card .card-title {
  margin-bottom: 0;
  padding: 0;
}
.home .services .card .card-title a {
  display: block;
  padding: 1rem;
  color: #FFF;
}
.home .services .card .card-img, .home .services .card .card-img-top {
  border-radius: 0;
}

.home .news .home-section-headline p {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  color: #eef0f4;
}
.home .news .home-section-body {
  padding-left: 4.5rem;
  padding-right: 3rem;
}
.home .news .home-section-body h2 {
  margin-bottom: .75rem;
  font-size: 2.5rem;
  color: #0e3c7f;
}
@media (min-width: 1600px) {
  .home .news .home-section-headline p {
    font-size: 100px;
  }
  .home .news .home-section-body h2 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
  }
}
@media (max-width: 991.98px) {
  .home .news .home-section-headline p {
    font-size: 50px;
  }
  .home .news .home-section-body {
    padding: 0;
  }
  .home .news .home-section-body h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}

.home .sdgs .home-section-headline {
  padding-left: 3rem;
}
.home .sdgs .home-section-headline p {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  color: #eef0f4;
  line-height: 1.1;
}
.home .sdgs .home-section-body {
  padding-left: 3rem;
  padding-right: 3rem;
}
.home .sdgs .home-section-body h2 {
  font-size: 2rem;
  color: #0e3c7f;
}
@media (min-width: 1600px) {
  .home .sdgs .home-section-headline p {
    font-size: 100px;
  }
  .home .sdgs .home-section-body h2 {
    font-size: 3rem;
  }
}
@media (max-width: 991.98px) {
  .home .sdgs .home-section-headline {
    margin-top: 2rem;
    padding: 0;
  }
  .home .sdgs .home-section-headline p {
    font-size: 50px;
  }
  .home .sdgs .home-section-body {
    padding: 0;
  }
  .home .sdgs .home-section-body h2 {
    font-size: 2rem;
  }
}

.home .recruit {
  background-image: url("../images/bg-recruit.jpg");
  background-repeat: repeat;
  background-position: center center;
}
.home .recruit .recruit-box {
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: rgba(255,255,255,.8);
}

.entry-header {
  margin: 0;
  padding: 0;
  height: 240px;
  background-image: url("../images/page-cover.png");
  background-repeat: repeat;
}
.entry-header .lead {
  position: relative;
  margin: 0;
  padding: 0;
  height: 240px;
}
.entry-header .lead .page-title {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 50%;
  color: #FFF;
  transform: translateY(-50%);
}
.entry-header .lead span {
  display: block;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.entry-header .lead span.page-title-sub {
  font-size: 1.5rem;
  letter-spacing: 5px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content h3 {
  padding: 1.5rem 0;
  font-size: 3rem;
  color: #0e3c7f;
}
.entry-content h4 {
  padding: 1rem 0;
  font-size: 2rem;
  color: #0e3c7f;
}
.entry-content h5 {
  padding: .75rem;
  font-size: 1.5rem;
  color: #0e3c7f;
  border-left: 5px solid #0e3c7f;
  background-color: #f3f3f3;
}

.single .entry-content h2 {
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  color: #0e3c7f;
  border-bottom: 2px solid #0e3c7f;
}
.single .entry-content h3 {
  margin-top: 3rem;
  padding: .25rem .75rem;
  font-size: 1.4rem;
  color: #0e3c7f;
  border-left: 5px solid #0e3c7f;
  border-bottom: none;
}
.single .entry-content h4 {
  margin-top: 3rem;
  padding: .75rem;
  font-size: 1.3rem;
  color: #212121;
  background-color: #f5f5f5;
  border: none;
}
.single .entry-content h5 {
  margin-top: 3rem;
  padding: .5rem;
  font-size: 1.2rem;
  color: #212121;
  border-left: none;
  border-bottom: 1px solid rgba(0,0,0,.125);
  background-color: transparent;
}
.single .entry-content h6 {
  margin-top: 3rem;
  padding: .5rem;
  font-size: 1.1rem;
  color: #212121;
  border-bottom: 1px dotted rgba(0,0,0,.125);
}

/* Post */
.news .post {
  position: relative;
  border-top: 1px solid #DDD;
}
.news .post:last-of-type {
  border-bottom: 1px solid #DDD;
}
.news .post p {
  margin: 0;
  padding: 0;
}
.news .post p a {
  display: block;
  padding: 1rem;
}
.news .post p a:hover {
  background-color: #f5f5f5;
}
.news .post p .date {
  margin-left: .25rem;
  margin-right: .25rem;
  color: #999;
  font-size: .8rem;
}
.news .post p .title {
  margin-left: .25rem;
  margin-right: .25rem;
  color: #010101;
}
.news .post::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-left: .25rem;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: .8rem;
  color: rgba(100,100,100,.4);
  transform: translateY(-50%);
}

/* form-step */
.form-step {
  overflow: hidden;
}
.form-step .nav-item {
  margin: 0 !important;
  position: relative;
  padding: 1rem 0;
  color: #FFF;
  background-color: #DDD;
}
.form-step .nav-item span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  transform: rotate(0.03deg); 
}
.form-step .nav-item.active {
  color: #FFF;
  background-color: #0e3c7f;
}

.form-step .nav-item:last-child{
  padding-right: 1em;
}
.form-step .nav-item:last-child:before,
.form-step .nav-item:last-child:after{
  display:none;
}
.form-step .nav-item:before,
.form-step .nav-item:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.form-step .nav-item:before{
  top: 50%;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}
.form-step .nav-item:after{
  top: 50%;
  right:-.8rem;
  border-style: solid;
  border-color: transparent transparent transparent #DDD;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .form-step .nav-item:after {
    display: none;
  }
  .form-step .nav-item:last-child {
    padding-right: 0;
  }
}
.form-step .nav-item.active:after{
  top: 50%;
  right:-.8rem;
  border-style: solid;
  border-color: transparent transparent transparent #0e3c7f;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}

/* case */
.case-card .card-title {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

/* single */
.page-link-nav {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px dotted rgba(0,0,0,.1);
}
.page-link-nav .nav-item {
  margin: 0 .75rem;
}
.page-link-nav .nav-link {
  font-size: .8rem;
  background-color: #f5f5f5;
  border-radius: 3rem;
}
.page-link-nav .nav-link:hover {
  color: #FFF;
  background-color: #0e3c7f;
}
.page-link-nav .previous .nav-link::before {
  margin-right: .25rem;
  content: "\f137";
  font-family: "Font Awesome 5 Free";
}
.page-link-nav .next .nav-link::after {
  margin-left: .25rem;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
}

/*!
 * 04. Sidebar Area
 * ----------------------------------------------------------------------- */


/*!
 * 05. Footer Area
 * ----------------------------------------------------------------------- */
.footer {
  color: #FFF;
  background-color: #0e3c7f;
}
.footer p {
  color: #FFF;
}
.footer .logo {
  max-width: 330px;
  text-align: center;
}
.footer .copyright {
  text-align: center;
}
.footer .copyright p {
  font-size: .8rem;
}
@media (max-width: 991.98px) {
  .footer .logo, .footer .address {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.footer-nav .nav-link {
  padding: .25rem .75rem;
  color: #FFF;
  font-size: .8rem;
  letter-spacing: 1px;
}
.footer-nav .nav-link:hover {
  color: rgba(255,255,255,.8);
}
.footer-nav .nav-link::before {
  margin-right: 2px;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f138";
}

/*!
 * 02. Original Module Settings
 * ----------------------------------------------------------------------- */

/* Display */
@media (min-width: 1400px) {
  .d-xxl-block {
    display: block!important;
  }
}

/* Margin & Padding */
.space-mt-30, .space-my-30 {
  margin-top: 30px;
}
.space-mb-30, .space-my-30 {
  margin-bottom: 30px;
}
.space-mt-40, .space-my-40 {
  margin-top: 40px;
}
.space-mb-40, .space-my-40 {
  margin-bottom: 40px;
}
.space-mt-50, .space-my-50 {
  margin-top: 50px;
}
.space-mb-50, .space-my-50 {
  margin-bottom: 50px;
}
.space-mt-60, .space-my-60 {
  margin-top: 60px;
}
.space-mb-60, .space-my-60 {
  margin-bottom: 60px;
}
.space-mt-70, .space-my-70 {
  margin-top: 70px;
}
.space-mb-70, .space-my-70 {
  margin-bottom: 70px;
}
.space-mt-80, .space-my-80 {
  margin-top: 80px;
}
.space-mb-80, .space-my-80 {
  margin-bottom: 80px;
}
.space-mt-90, .space-my-90 {
  margin-top: 90px;
}
.space-mb-90, .space-my-90 {
  margin-bottom: 90px;
}
.space-mt-100, .space-my-100 {
  margin-top: 100px;
}
.space-mb-100, .space-my-100 {
  margin-bottom: 100px;
}
.space-mt-150, .space-my-150 {
  margin-top: 150px;
}
.space-mb-150, .space-my-150 {
  margin-bottom: 150px;
}

.space-pt-30, .space-py-30 {
  padding-top: 30px;
}
.space-pb-30, .space-py-30 {
  padding-bottom: 30px;
}
.space-pt-40, .space-py-40 {
  padding-top: 40px;
}
.space-pb-40, .space-py-40 {
  padding-bottom: 40px;
}
.space-pt-50, .space-py-50 {
  padding-top: 50px;
}
.space-pb-50, .space-py-50 {
  padding-bottom: 50px;
}
.space-pt-60, .space-py-60 {
  padding-top: 60px;
}
.space-pb-60, .space-py-60 {
  padding-bottom: 60px;
}
.space-pt-70, .space-py-70 {
  padding-top: 70px;
}
.space-pb-70, .space-py-70 {
  padding-bottom: 70px;
}
.space-pt-80, .space-py-80 {
  padding-top: 80px;
}
.space-pb-80, .space-py-80 {
  padding-bottom: 80px;
}
.space-pt-90, .space-py-90 {
  padding-top: 90px;
}
.space-pb-90, .space-py-90 {
  padding-bottom: 90px;
}
.space-pt-100, .space-py-100 {
  padding-top: 100px;
}
.space-pb-100, .space-py-100 {
  padding-bottom: 100px;
}
.space-pt-150, .space-py-150 {
  padding-top: 150px;
}
.space-pb-150, .space-py-150 {
  padding-bottom: 150px;
}
@media (max-width: 991.98px) {
  .space-mt-30, .space-my-30 {
    margin-top: 15px;
  }
  .space-mb-30, .space-my-30 {
    margin-bottom: 150px;
  }
  .space-mt-40, .space-my-40 {
    margin-top: 20px;
  }
  .space-mb-40, .space-my-40 {
    margin-bottom: 20px;
  }
  .space-mt-50, .space-my-50 {
    margin-top: 25px;
  }
  .space-mb-50, .space-my-50 {
    margin-bottom: 25px;
  }
  .space-mt-60, .space-my-60 {
    margin-top: 30px;
  }
  .space-mb-60, .space-my-60 {
    margin-bottom: 30px;
  }
  .space-mt-70, .space-my-70 {
    margin-top: 35px;
  }
  .space-mb-70, .space-my-70 {
    margin-bottom: 35px;
  }
  .space-mt-80, .space-my-80 {
    margin-top: 40px;
  }
  .space-mb-80, .space-my-80 {
    margin-bottom: 40px;
  }
  .space-mt-90, .space-my-90 {
    margin-top: 45px;
  }
  .space-mb-90, .space-my-90 {
    margin-bottom: 45px;
  }
  .space-mt-100, .space-my-100 {
    margin-top: 50px;
  }
  .space-mb-100, .space-my-100 {
    margin-bottom: 50px;
  }
  .space-mt-150, .space-my-150 {
    margin-top: 75px;
  }
  .space-mb-150, .space-my-150 {
    margin-bottom: 75px;
  }

  .space-pt-30, .space-py-30 {
    padding-top: 15px;
  }
  .space-pb-30, .space-py-30 {
    padding-bottom: 15px;
  }
  .space-pt-40, .space-py-40 {
    padding-top: 20px;
  }
  .space-pb-40, .space-py-40 {
    padding-bottom: 20px;
  }
  .space-pt-50, .space-py-50 {
    padding-top: 25px;
  }
  .space-pb-50, .space-py-50 {
    padding-bottom: 25px;
  }
  .space-pt-60, .space-py-60 {
    padding-top: 30px;
  }
  .space-pb-60, .space-py-60 {
    padding-bottom: 30px;
  }
  .space-pt-70, .space-py-70 {
    padding-top: 35px;
  }
  .space-pb-70, .space-py-70 {
    padding-bottom: 35px;
  }
  .space-pt-80, .space-py-80 {
    padding-top: 40px;
  }
  .space-pb-80, .space-py-80 {
    padding-bottom: 40px;
  }
  .space-pt-90, .space-py-90 {
    padding-top: 45px;
  }
  .space-pb-90, .space-py-90 {
    padding-bottom: 45px;
  }
  .space-pt-100, .space-py-100 {
    padding-top: 50px;
  }
  .space-pb-100, .space-py-100 {
    padding-bottom: 50px;
  }
  .space-pt-150, .space-py-150 {
    padding-top: 75px;
  }
  .space-pb-150, .space-py-150 {
    padding-bottom: 75px;
  }
}

/* Button */
.button {
  display: block;
  padding: .75rem 1.25rem;
  color: #FFF;
  text-align: center;
  background-color: #0e3c7f;
}
.button span {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  transform: rotate(0.03deg);
}
.button:hover {
  color: #FFF;
  background-color: #010101;
}
.button.white {
  color: #0e3c7f;
  background-color: #FFF;
}
.button.white:hover {
  color: #FFF;
  background-color: #010101;
}

.contact .button::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f0e0";
}

/* Badge */
.badge {
  margin-top: -1px;
  margin-right: .25rem;
  padding: .2rem .4rem;
  font-size: .7rem;
  font-weight: normal;
  line-height: inherit;
  vertical-align: middle;
  color: #FFF;
  background-color: #010101;
  border-radius: 0;
}
.badge.news {
  background-color: #0e3c7f;
}
.badge.new {
  background-color: #de0e28;
}

/* Color */
.text-main-color {
  color: #0e3c7f !important;
}
.text-carmine {
  color: #c0002e !important;
}
.text-blue {
  color: #0e3c7f !important;
}
.text-yellow {
  color: #ffb300 !important;
}

.bg-carmine {
  color: #FFF;
  background-color: #c0002e;
}
.bg-blue {
  color: #FFF;
  background-color: #0e3c7f;
}
.bg-yellow {
  color: #FFF;
  background-color: #ffb300;
}

/* Layout */
@media (min-width: 1400px) {
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .col-xxl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Table */
table.normal th {
  text-align: center;
  color: #FFF;
  white-space: nowrap;
  background-color: #0e3c7f;
}
@media (max-width: 991.98px) {
  table.normal th, table.normal td {
    display: block!important;
  }
}

/* Typography */
.large {
  font-size: 120%;
}
.x-large {
  font-size: 160%;
}
.xx-large {
  font-size: 200%;
}
.xxx-large {
  font-size: 250%;
}

/* Width */

.w-30 {
  margin-left: auto;
  margin-right: auto;
  width: 30%;
}
.w-40 {
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}
.w-60 {
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
.w-70 {
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}
.w-80 {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

/* ----------------------------------------------------------------------- */
/* Scroll Top */
.back-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: none;
  color: rgba(0,0,0,0.4);
  background-color: rgba(255,255,255,0.9);
}
.back-to-top:hover {
  color: rgba(0,0,0,0.6);
}
@media (max-width: 991.98px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}