@charset 'UTF-8';
/* ================================================================================================= */
/*!
 * CUSTOM STYLESHEET
 * 01. HTML Basic Settings
 * 02. Bootstrap Resetting
 * 10. Header Area
 * 11. Footer Area
 * 12. Home Area
 * 13. Main Area
 * 14. Sidebar Area
 * 20. Module Settings
 */
/* ================================================================================================= */

/*!
 * 01. HTML Basic Settings
 * ================================================================================================= */

html {
  font-size: 100%;
  scroll-padding-top: 100px;
}
@media (max-width: 575.98px) {
  html { font-size: 14px; }
}
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .05em;
  color: #5a4a37;
  -webkit-tap-highlight-color: rgba(0,0,0,0.8);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, .h1, h2, .h2, h3, .h3 {
  font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
}
h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .05em;
}
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
}
h1, .h1 {
  font-size: 2rem;
}
h2, .h2 {
  font-size: 1.8rem;
}
h3, .h3 {
  font-size: 1.6rem;
}
h4, .h4 {
  font-size: 1.4rem;
}
h5, .h5 {
  font-size: 1.2rem;
}
h6, .h6 {
  font-size: 1rem;
}
p, a, span, ul, ol {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .05em;
}
a:hover {
  text-decoration: none;
}
.btn, .nav-link, .dropdown-item {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: 500;
    letter-spacing: 0;
  }
  .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    letter-spacing: 0;
  }
  h1, .h1, .display-1, .fs-1 {
    font-size: 1.8rem !important;
  }
  h2, .h2, .display-2, .fs-2 {
    font-size: 1.4rem !important;
  }
  h3, .h3, .display-3, .fs-3 {
    font-size: 1.3rem !important;
  }
  h4, .h4, .display-4, .fs-4 {
    font-size: 1.2rem !important;
  }
  h5, .h5, .display-5, .fs-5 {
    font-size: 1.1rem !important;
  }
  h6, .h6, .display-6, .fs-6 {
    font-size: 1.05rem !important;
  }
  p, a, span, ul, ol {
    letter-spacing: 0;
  }
}

.telephone-number {
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
}
.telephone-number .number {
  font-family: 'Josefin Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
}

.fadeDown {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1020;
  background-color: rgb(255, 255, 255);
  opacity: 0;
  animation-name: fadeDown;
  animation-duration: .5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  box-shadow: 0px 5px 10px 0px rgba(100, 100, 100, 0.15);
}
@keyframes fadeDown {
  0% {
     opacity: 0;
     transform: translateY(-100px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

.fadeUp {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1021;
  opacity: 0;
  animation-name: fadeUp;
  animation-duration: .5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadeUp {
  0% {
     opacity: 0;
     transform: translateY(100px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

.site {
  overflow-x: hidden;
}

/*!
 * 02. Bootstrap Resetting
 * ================================================================================================= */



/*!
 * 10. Header Area
 * ================================================================================================= */

.header {
  padding-top: .5rem;
  padding-bottom: .5rem;
  transition: all 0.25s ease;
}

.header .header-top {
  display: block;
}
.header.fadeDown .header-top {
  display: none;
}
.header.fadeDown .navbar-brand .logo {
  max-width: 200px;
}
.header.fadeDown .main-navigation .nav-link {
  font-size: .85rem;
}

/* logo */
/* ----------------------------------------------------------------------- */
.header .navbar-brand {
  padding: 0;
  line-height: 1;
}
.header .navbar-brand .logo {
  max-width: 300px;
}
.header .site-description {
  padding-left: .5rem;
  font-size: .9rem;
  letter-spacing: .1em;
}
.header .site-description span {
  letter-spacing: .1em;
}
@media (max-width: 1199.98px) {
  .header .navbar-brand .logo {
    max-width: 240px;
  }
  .header .site-description  {
    font-size: .8rem;
  }
}
@media (max-width: 575.98px) {
  .header .navbar-brand .logo {
    max-width: 70vw;
  }
}

/* --- Main navigation --- */
.main-navigation .nav-link {
  position: relative;
  font-size: 1rem;
}
.main-navigation .nav-link:hover {
  color: #e68a00;
}
.main-navigation .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #e68a00;
  -webkit-transition: all 0.3s cubic-bezier(0.51, 0.23, 0.68, 0.89);
  transition: all 0.3s cubic-bezier(0.51, 0.23, 0.68, 0.89);
}
.main-navigation .nav-link:hover::before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.main-navigation .nav-link.active {
  color: #e68a00;
}
.main-navigation .nav-link.active::before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
@media (max-width: 1199.98px) {
  .main-navigation .nav-link {
    font-size: .85rem;
  }
}

/* dropdown */
.dropdown .dropdown-menu .dropdown-item {
  font-size: .9rem;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  color: #e68a00;
}
.dropdown .dropdown-menu .dropdown .dropdown-menu {
  display: block; 
  opacity:0;
  top: 80px;
  transition: all .5s ease-in;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
}
.dropdown .dropdown-menu li {
  border-top: 1px dotted rgba(0, 0, 0, 0.15);
}
.dropdown .dropdown-menu li:first-child {
  border-top: none;
}
.dropdown .dropdown-menu li:nth-child(odd) {
  /* background-color: rgba(200, 200, 200, 0.15); */
}
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  top: 40px;
}
.dropdown .dropdown-menu .dropdown-item::before {
  font-family: "Font Awesome 6 Free";
  content:'\f101';
  margin-right: .25rem;
  font-size: .8rem;
  color: #e68a00;
}
@media (max-width: 1199.98px) {
  .dropdown .dropdown-menu .dropdown-item {
    font-size: .85rem;
  }
}

/* --- toggle button --- */
.navbar-toggler {
  overflow: hidden;
  position: relative;
  padding: 0px;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  box-sizing: border-box;
  border-radius: 0;
}
.navbar-toggler-icon {
  position: absolute;
  display: block;
  left: 3px;
  width: 33px;
  height: 4px;
  background-image: none!important;
  background-color: #e68a00;
  transition: ease .5s;
}
.navbar-toggler-icon:nth-of-type(1) {top:0;}
.navbar-toggler-icon:nth-of-type(2) {top:10px;}
.navbar-toggler-icon:nth-of-type(3) {top:20px;}

.navbar-toggler-text {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  font-size: 10px;
  font-weight: 900;
  color: #e68a00;
  white-space: nowrap;
  letter-spacing: -1px;
}
.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0;
}

/*!
 * 11. Footer Area
 * ================================================================================================= */
.footer {
  padding-top: 3rem;
  padding-bottom: 5rem;
  color: #FFF;
  background-color: #2c3a35;
}

/* --- logo --- */
@media (max-width: 991.98px) {
  .footer .navbar-brand .logo {
    max-width: 300px;
  }
}
@media (max-width: 575.98px) {
  .footer .navbar-brand .logo {
    max-width: 80vw;
  }
}

.footer-top {
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
}
.footer-bottom .copyright p {
  font-size: .7rem;
  text-align: center;
}

/* --- footer nav --- */
.footer-nav {
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.footer-nav .nav-item {
  padding-left: .25rem;
  padding-right: .25rem;
  line-height: 1rem;
}
.footer-nav .nav-link {
  padding-left: .25rem;
  padding-right: .25rem;
  position: relative;
  font-size: .9rem;
  color: rgba(255,255,255,.95);
}
.footer-nav .nav-link::before {
  font-family: "Font Awesome 6 Free";
  content:'\f101';
  margin-right: .25rem;
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}
.footer-nav .nav-link:hover {
  color: #FFF;
}
.footer-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  background-color: rgba(255,255,255,.5);
  -webkit-transition: all 0.3s cubic-bezier(0.51, 0.23, 0.68, 0.89);
  transition: all 0.3s cubic-bezier(0.51, 0.23, 0.68, 0.89);
}
.footer-nav .nav-link:hover::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

/* --- offcanvas --- */
.offcanvas.offcanvas-end {
  width: 500px;
}

.offcanvas {
  color: #FFF;
  background-color: #2c3a35;
  border: none;
  border-width: 0 !important;
}
.offcanvas h6 {
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: .9rem;
  line-height: 1rem;
  font-weight: 700 !important;
  border-top: 1px solid rgba(255,255,255,.15);
}
.offcanvas h6:first-child {
  margin-top: 0;
}

.offcanvas-body {
  padding-top: 0;
}

.offcanvas .navbar-brand .logo {
  max-width: 300px;
}
@media (max-width: 1199.98px) {
  .offcanvas .navbar-brand .logo {
    max-width: 240px;
  }
}
@media (max-width: 575.98px) {
  .offcanvas .navbar-brand .logo {
    max-width: 70vw;
  }
}

.offcanvas-navigation {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(255,255,255,.25);
}
.offcanvas-navigation .nav-item {
  flex: 0 0 auto;
  width: 50%;
  background-color: rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.offcanvas-navigation .nav-item:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,.25);
}
.offcanvas-navigation .nav-link {
  position: relative;
  padding: .5rem .5rem;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
}
.offcanvas-navigation .nav-link:hover {
  color: #FFF;
}
.offcanvas-navigation .nav-link::before {
  font-family: "Font Awesome 6 Free";
  content:'\f101';
  margin-right: .25rem;
  font-size: .75rem;
  color: rgba(255,255,255,.75);
}
.offcanvas-navigation .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  background-color: rgba(255,255,255,.5);
  -webkit-transition: all 0.3s cubic-bezier(0.51, 0.23, 0.68, 0.89);
  transition: all 0.3s cubic-bezier(0.51, 0.23, 0.68, 0.89);
}
.offcanvas-navigation .nav-link:hover::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.offcanvas-navigation .two-column .nav-item {
  flex: 0 0 auto;
  width: 50%;
}

/* Wave
 * ----------------------------------------------------------------------- */
.wave{
  position: relative;
  height: 120px;
}
canvas{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* footer-fixed-bottom-nav */
.footer-fixed-bottom-nav {
  display: none;
}

.footer-fixed-bottom-nav.fadeUp {
  display: block;
  opacity: 1;
}
.footer-fixed-bottom-nav .nav-item .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  text-align: center;
  color: #FFF;
  line-height: 1.75;
  max-height:50px;
}
.footer-fixed-bottom-nav .mail {
  background-color: rgba(249,117,52,.9);
}
.footer-fixed-bottom-nav .phone {
  background-color: rgba(249,52,89,.9);
}
.footer-fixed-bottom-nav .mail:hover, .footer-fixed-bottom-nav .phone:hover {
  background-color: rgba(25,25,25,.9);
}

@media (max-width: 1019.98px) {
  .footer-fixed-bottom-nav .nav-item .nav-link {
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: .8rem;
    letter-spacing: -1px;
    max-height: 48px;
  }
  .footer-fixed-bottom-nav .nav-item .nav-link .fs-5 {
    font-size: 1rem !important;
  }
  .footer-fixed-bottom-nav .nav-item .nav-link .small {
    font-size: .6rem;
  }
  .footer-fixed-bottom-nav .nav-item .nav-link span {
    letter-spacing: -1px;
  }
}
@media (max-width: 575.98px) {
  .footer-fixed-bottom-nav .nav-item .nav-link {
    max-height: 46px;
  }
}

/* Side Nav
 * ----------------------------------------------------------------------- */

.side-fix-nav {
  position: fixed;
  bottom: 80px;
  right: 1rem; 
  width: 260px;
}
.side-fix-nav .nav-item {
  margin-bottom: .5rem;
  text-align: right;
  width: 100%;
}
.side-fix-nav .btn-in {
  width: 60px;
  margin-left: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.side-fix-nav .btn-in:hover {
  width: 260px;
}
.side-fix-nav .btn-in .btn-in-wrap {
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin-left: auto;
  border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left;
}
.side-fix-nav .btn-in:hover .btn-in-wrap {
  width: 260px;
}
.side-fix-nav .btn-in .btn-outline-primary {
  height: 60px;
  width: 260px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  background-color: #FFF;
  border: none;
}
.is-show .btn-in .btn-outline-primary {
  opacity: 1;
}
.side-fix-nav .btn-in .btn-primary {
  height: 60px;
  width: 260px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  background-color: #e66100;
}
.side-fix-nav .btn-in .btn-primary:hover {
  background-color: #000;
}
.is-show .btn-in .btn-primary {
  opacity: 1;
}
.back-to-top {
  margin-left: auto;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: rgba(0,0,0,0.4);
  background-color: rgba(246,202,28,0.9);
  border-radius: 60px;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  color: #FFF !important;
  background-color: rgba(0,0,0,0.9);
}
.is-show .back-to-top {
  opacity: 1;
}
.back-to-top:hover {
  color: rgba(0,0,0,0.6);
}

/*!
 * 12. Home Area
 * ================================================================================================= */

/* Hero
 * ----------------------------------------------------------------------- */
.hero-body-position {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.site-copy {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
}
.fluid-block {
  padding-left: 35vw;
}
.hero-body h1 {
  line-height: 2;
}
@media (max-width: 1699.98px) {
  .fluid-block {
    padding-left: 40vw;
  }
}
@media (max-width: 1399.98px) {
  .fluid-block {
    padding-left: 30vw;
  }
}
@media (max-width: 1199.98px) {
  .fluid-block {
    padding-left: 20vw;
  }
  .fluid-block img {
    opacity: .6;
  }
}
@media (max-width: 767.98px) {
  .fluid-block {
    padding-left: 0;
  }
  .hero-body h1 {
    line-height: 1.25;
  }
  .site-copy .display-2 {
    font-size: 1.6rem !important;
  }
  .fluid-block img {
    opacity: .4;
  }
}

.video-box {
  content: "";
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 800px;
}
.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
video {
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
  outline: none;
  border: none;
}

.smooth{
	animation-name: smoothAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
  　transform-origin: left;
	opacity:0;
}

@keyframes smoothAnime{
  from {
  transform: translate3d(0, 100%, 0) skewY(12deg);
  opacity:0;
  }

  to {
  transform: translate3d(0, 0, 0) skewY(0);
  opacity:1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeDownTrigger,
.smoothTrigger{
    opacity: 0;
}

/* Symptom
 * ----------------------------------------------------------------------- */
.symptom-icon {
  max-width: 35%;
}
@media (max-width: 1399.98px) {
  .symptom-icon {
    max-width: 30%;
  }
}
@media (max-width: 767.98px) {
  .symptom-icon {
    max-width: 25%;
  }
}

/* Access
 * ----------------------------------------------------------------------- */
.badge-access {
  width: 25%;
}
@media (max-width: 767.98px) {
  .badge-access {
    display: block;
    margin-top: .25rem;
    margin-bottom: .25rem;
    width: 50%;
  }
}

/*!
 * 20. Module Settings
 * ================================================================================================= */

.ms-action-01 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ms-action-01:hover {
  letter-spacing: .5em;
}

.marker-yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, transparent), color-stop(0%, #f9f4a7));
  background: linear-gradient(transparent 72%, #f9f4a7 0%);
}

.fit-content {
  width: fit-content;
}


/* Background
 * ----------------------------------------------------------------------- */

.bg-gradation {
  width: 100%;
  height: 100%;
  background:linear-gradient(45deg, #FFF,#FFF,#fffffb,#FFF,#FFF);/*グラデーションを定義*/
  background-size: 200% 200%;/*サイズを大きくひきのばす*/
  animation: bgGradientPosition 20s ease infinite;
}
@keyframes bgGradientPosition {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.bg-corporation {
  background: url("../img/bg-corporation.png") no-repeat center center;
  background-size: cover;
}

.bg-area {
  position: relative;
}
.bg-area::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40vh;
  height: 40vh;
  background: rgba(255,145,0,.15);
  animation: fluidrotate 20s ease 0s infinite;
  z-index: -1;
}
@media (max-width: 1019.98px) {
  .bg-role {
    background: url("../img/bg-role-mb.png") no-repeat center center #FFF;
    background-size: contain;
  }
}
@media (min-width: 1020px) {
  .bg-area {
    background: url("../img/arema-map.png") no-repeat center right;
    background-size: contain;
  }
  .bg-role {
    background: url("../img/bg-role.png") no-repeat center center #FFF;
    background-size: contain;
  }
}

@keyframes fluidrotate {  
  0%, 100% {
      border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
      border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
      border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
      border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
      border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
      border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
      border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

/* Buttons
 * ----------------------------------------------------------------------- */

.btn {
  opacity: 1;
}
.btn:hover {
  opacity: 1;
}

.btn-primary {
  color: #FFF;
}
.btn-primary:hover {
  color: #FFF;
  border-color: #000;
  background-color: #000;
  transition: all 0.3s ease;
}

.btn-white {
  color: #e68a00;
  background-color: #FFF;
}
.btn-white:hover {
  color: #FFF;
  background-color: #000;
  transition: all 0.3s ease;
}

/* Cards
 * ----------------------------------------------------------------------- */
.card.post {
  overflow: hidden;
  height: 100%;
  border: none;
  text-decoration: none;
}
.card.post .card-title {
  position: relative;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 0;
  margin-bottom: .75rem;
  padding-bottom: 0;
  line-height: 1.25;
  border: none;
  font-size: 1.25rem !important;
}
@media (max-width: 767.98px) {
  .card.post .card-title {
    font-size: 1.15rem !important;
  }
}
.card.post .card-title::before {
  display: none;
}
.card.post .card-text {
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .9rem;
  line-height: 1.25;
}
.card.post .card-post-date {
  margin-bottom: .5rem;
  font-size: .9rem;
  line-height: 1;
  color: #e68a00;
}
.card.post .card-thumbnail {
  overflow: hidden;
  margin-bottom: 0;
}
.card.post .card-img-top {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
  background-color: rgba(200,210,200,.15);
}
.card.post:hover .card-img-top {
  transform: scale(1.1);
  transition: all .5s;
}
.card.post:hover .card-title {
  color: #e68a00;
  transition: all .5s;
}

/* Text
 * ----------------------------------------------------------------------- */
.s-small {
  font-size: .75rem;
}

@media (min-width: 768px) {
  .lg-large {
    font-size: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .lg-large {
    font-size: 4rem !important;
  }
}
@media (max-width: 767.98px) {
  .lg-large {
    font-size: 1.9rem !important;
    letter-spacing: 0;
  }
}
@media (max-width: 575.98px) {
  .lg-large {
    font-size: 1.8rem !important;
    letter-spacing: 0;
  }
}

/* Table
 * ----------------------------------------------------------------------- */
.table th {
  white-space: nowrap;
}
