*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1e293b;
  background-color: #ffffff;
}

img {
  height: auto;
  vertical-align: middle;
}

a {
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #19577e;
}

:focus-visible {
  outline: 2px solid #19577e;
  outline-offset: 2px;
}

::-moz-selection {
  background-color: #2d6b8e;
  color: #ffffff;
}

::selection {
  background-color: #2d6b8e;
  color: #ffffff;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease-in-out;
}
.l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.l-header__logo img {
  height: 40px;
  width: auto;
}
.l-header__nav {
  display: none;
}
@media (min-width: 768px) {
  .l-header__nav {
    display: block;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.l-header__nav a {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease-in-out;
}
.l-header__nav a:hover {
  background-color: #f8fafc;
}
.l-header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .l-header__menu-btn {
    display: none;
  }
}
.l-header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1e293b;
  transition: all 0.3s ease-in-out;
}
.l-header__menu-btn:hover span {
  background-color: #19577e;
}

.l-main {
  padding-top: 35px;
}
.l-main section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .l-main section {
    padding: 6rem 0;
  }
}

.l-footer {
  background-color: #f8fafc;
  color: #1e293b;
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.l-footer__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .l-footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}
.l-footer__logo img {
  height: 40px;
  width: auto;
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .l-footer__nav-list {
    gap: 1rem;
  }
}
.l-footer__nav a {
  color: #64748b;
  transition: color 0.3s ease-in-out;
}
.l-footer__nav a:hover {
  color: #19577e;
}
.l-footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.l-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}
.l-footer__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}
.l-footer__copy .copy-mark {
  font-size: 1.875rem;
}

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.c-btn:hover {
  transform: translateY(-1px);
}
.c-btn:active {
  transform: translateY(0);
}
.c-btn--primary {
  background-color: #19577e;
  color: #ffffff;
}
.c-btn--primary:hover {
  background-color: #134560;
}
.c-btn--secondary {
  background-color: #f3961a;
  color: #ffffff;
}
.c-btn--secondary:hover {
  background-color: #d17c0f;
}
.c-btn--outline {
  background-color: transparent;
  color: #19577e;
  border: 2px solid #19577e;
}
.c-btn--outline:hover {
  background-color: #19577e;
  color: #ffffff;
}
.c-btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.c-btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.c-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .c-section-title {
    font-size: 2.25rem;
  }
}

.c-section-text {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  line-height: 1.625;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .c-section-text {
    font-size: 1.25rem;
  }
}

.p-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .p-hero {
    padding: 8rem 0;
  }
}
.p-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .p-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.p-hero__content {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .p-hero__content {
    order: 1;
  }
}
@media (min-width: 1024px) {
  .p-hero__content {
    text-align: left;
    margin-bottom: 0;
  }
}
.p-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-hero__title {
    font-size: 3rem;
  }
}
.p-hero__title-accent {
  color: #19577e;
}
.p-hero__text {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.625;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-hero__text {
    font-size: 1.25rem;
  }
}
.p-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .p-hero__actions {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .p-hero__visual {
    order: 2;
  }
}
.p-hero__visual img {
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.p-business-overview {
  background-color: #f8fafc;
}
.p-business-overview__content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-business-overview__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .p-business-overview__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-business-overview__action {
  text-align: center;
}

.p-business-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.p-business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.p-business-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: #2d6b8e;
  border-radius: 9999px;
}
.p-business-card__icon img {
  width: 50px;
  height: 50px;
}
.p-business-card__icon i {
  font-size: 3rem;
  color: #ffffff;
}
.p-business-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}
.p-business-card__text {
  color: #64748b;
  line-height: 1.625;
}

.p-strength__content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .p-strength__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.p-strength__item {
  text-align: center;
  padding: 1.5rem;
}
.p-strength__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #1e293b;
}
.p-strength__text {
  color: #64748b;
  line-height: 1.625;
}

.p-news {
  background-color: #f8fafc;
}
.p-news__content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.p-news__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .p-news__item {
    align-items: center;
  }
}
.p-news__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.p-news__date {
  font-size: 0.875rem;
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .p-news__date {
    font-size: 1rem;
  }
}
.p-news__text {
  flex: 1;
  line-height: 1.625;
}

.p-cta {
  background: linear-gradient(135deg, #19577e 0%, #134560 100%);
  color: #ffffff;
}
.p-cta__content {
  text-align: center;
}
.p-cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-cta__title {
    font-size: 2.25rem;
  }
}
.p-cta__text {
  font-size: 1.125rem;
  line-height: 1.625;
  opacity: 0.9;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-cta__text {
    font-size: 1.25rem;
  }
}
.p-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-features .bg-primary-subtle,
.p-features .bg-success-subtle,
.p-features .bg-warning-subtle,
.p-features .bg-info-subtle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-features .bg-primary-subtle i,
.p-features .bg-success-subtle i,
.p-features .bg-warning-subtle i,
.p-features .bg-info-subtle i {
  font-size: 2rem;
}
.p-features .col-lg-3:hover .bg-primary-subtle,
.p-features .col-lg-3:hover .bg-success-subtle,
.p-features .col-lg-3:hover .bg-warning-subtle,
.p-features .col-lg-3:hover .bg-info-subtle {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

section.py-5.bg-light .bg-primary-subtle,
section.py-5.bg-light .bg-success-subtle,
section.py-5.bg-light .bg-info-subtle {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.py-5.bg-light .bg-primary-subtle i,
section.py-5.bg-light .bg-success-subtle i,
section.py-5.bg-light .bg-info-subtle i {
  font-size: 2.2rem;
}
section.py-5.bg-light .col-lg-4:hover .bg-primary-subtle,
section.py-5.bg-light .col-lg-4:hover .bg-success-subtle,
section.py-5.bg-light .col-lg-4:hover .bg-info-subtle {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mt-1 {
  margin-top: 0.25rem;
}

.u-mt-2 {
  margin-top: 0.5rem;
}

.u-mt-3 {
  margin-top: 0.75rem;
}

.u-mt-4 {
  margin-top: 1rem;
}

.u-mt-5 {
  margin-top: 1.25rem;
}

.u-mt-6 {
  margin-top: 1.5rem;
}

.u-mt-8 {
  margin-top: 2rem;
}

.u-mt-10 {
  margin-top: 2.5rem;
}

.u-mt-12 {
  margin-top: 3rem;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-1 {
  margin-bottom: 0.25rem;
}

.u-mb-2 {
  margin-bottom: 0.5rem;
}

.u-mb-3 {
  margin-bottom: 0.75rem;
}

.u-mb-4 {
  margin-bottom: 1rem;
}

.u-mb-5 {
  margin-bottom: 1.25rem;
}

.u-mb-6 {
  margin-bottom: 1.5rem;
}

.u-mb-8 {
  margin-bottom: 2rem;
}

.u-mb-10 {
  margin-bottom: 2.5rem;
}

.u-mb-12 {
  margin-bottom: 3rem;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-primary {
  color: #19577e;
}

.u-text-secondary {
  color: #f3961a;
}

.u-text-accent {
  color: #f3961a;
}

.u-text-white {
  color: #ffffff;
}

.u-text-muted {
  color: #64748b;
}

.u-font-bold {
  font-weight: 700;
}

.u-font-semibold {
  font-weight: 600;
}

.u-font-medium {
  font-weight: 500;
}

:root {
  --bs-primary: #19577e;
  --bs-primary-rgb: 25, 87, 126;
  --bs-secondary: #f3961a;
  --bs-secondary-rgb: 243, 150, 26;
  --bs-light: #f8fafc;
  --bs-light-rgb: 248, 250, 252;
  --bs-dark: #0f172a;
  --bs-dark-rgb: 15, 23, 42;
  --mezocrea-primary: #19577e;
  --mezocrea-secondary: #f3961a;
  --mezocrea-primary-light: #2d6b8e;
  --mezocrea-secondary-light: #f5a839;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

nav.navbar,
nav[class*=navbar] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1050 !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #f1f5f9;
  transform: none !important;
}
nav.navbar .navbar-nav .nav-link,
nav[class*=navbar] .navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease-in-out;
}
nav.navbar .navbar-nav .nav-link:hover,
nav[class*=navbar] .navbar-nav .nav-link:hover {
  background-color: #e3f0f7;
  color: #19577e !important;
}
nav.navbar .navbar-nav .nav-link.active,
nav[class*=navbar] .navbar-nav .nav-link.active {
  color: #19577e !important;
  font-weight: 600;
}
nav.navbar .navbar-brand,
nav[class*=navbar] .navbar-brand {
  max-width: 250px;
  transition: transform 0.3s ease-in-out;
}
nav.navbar .navbar-brand:hover,
nav[class*=navbar] .navbar-brand:hover {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  nav.navbar .navbar-brand,
nav[class*=navbar] .navbar-brand {
    max-width: 300px;
  }
}

nav.navbar {
  padding-inline: 8px;
}

.p-business-card.card {
  transition: all 0.3s ease-in-out;
  border: none;
  position: relative;
  overflow: hidden;
}
.p-business-card.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.p-business-card.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(25, 87, 126, 0.15) !important;
}
.p-business-card.card:hover::before {
  opacity: 1;
}
.p-business-card.card .p-business-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
}
.p-business-card.card .p-business-card__icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}
.p-business-card.card:hover .p-business-card__icon {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  transform: scale(1.1);
}

.p-hero {
  background: linear-gradient(135deg, #e3f0f7 0%, #fef4e6 100%);
  padding-top: 100px;
  position: relative;
}
.p-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(25, 87, 126, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.p-hero .text-primary {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.p-cta {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%) !important;
  position: relative;
}
.p-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(243, 150, 26, 0.1) 60%);
  pointer-events: none;
}

.l-footer {
  background-color: #f8fafc !important;
  color: #1e293b !important;
}
.l-footer .text-white-50 {
  color: #64748b !important;
  transition: color 0.3s ease-in-out;
}
.l-footer .text-white-50:hover {
  color: #19577e !important;
}
.l-footer a {
  color: #64748b;
}
.l-footer a:hover {
  color: #19577e;
}
.l-footer a::after {
  display: none;
}
.l-footer h5 {
  color: #1e293b !important;
}
.l-footer hr {
  border-color: #e2e8f0 !important;
  opacity: 0.5;
}

a {
  color: #19577e;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
a:hover {
  color: #f3961a;
  text-decoration: none;
}
a:not(.btn):not(.navbar-brand):not(.nav-link)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #f3961a;
  transition: width 0.3s ease-in-out;
}
a:not(.btn):not(.navbar-brand):not(.nav-link):hover::after {
  width: 100%;
}

.card a:hover {
  color: #f3961a;
}

img {
  transition: all 0.3s ease-in-out;
}
img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
.card img:hover {
  transform: scale(1.01);
  opacity: 0.95;
}
img.logo:hover, img.icon:hover, .navbar-brand img:hover {
  transform: none;
  opacity: 1;
}

.p-business-card .card-title,
.p-news .card-title,
.card-title {
  transition: color 0.3s ease-in-out;
}
.p-business-card .card-title:hover,
.p-news .card-title:hover,
.card-title:hover {
  color: #19577e;
}

.p-news .card:hover .card-title {
  color: #19577e;
}
.p-news .card:hover .card-text {
  color: #64748b;
}

.service-card:hover .card-title {
  color: #f3961a;
}
.service-card:hover .badge {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%) !important;
}

.btn::after,
.btn-link::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn.btn-outline-secondary {
  border-color: #f3961a;
  color: #f3961a;
}
.btn.btn-outline-secondary:hover {
  background-color: #f3961a;
  border-color: #f3961a;
}
.btn.btn-accent {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  border: none;
  color: white;
}
.btn.btn-accent:hover {
  background: linear-gradient(135deg, #19577e 0%, #f3961a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 150, 26, 0.3);
}

.badge.bg-primary {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%) !important;
}

.list-group-item {
  transition: all 0.3s ease-in-out;
  border: none !important;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-left: 4px solid transparent !important;
  padding: 1rem 1.25rem !important;
}
.list-group-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border-left-color: #f3961a !important;
  background-color: #fef4e6 !important;
}

.display-5,
.display-4 {
  position: relative;
}
.display-5::after,
.display-4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  border-radius: 2px;
}

.p-strength .col-lg-4:nth-child(odd) .h4 {
  color: #19577e;
}
.p-strength .col-lg-4:nth-child(even) .h4 {
  color: #f3961a;
}

@media (min-width: 640px) {
  .display-4 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .display-4 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.text-brand-primary {
  color: #19577e !important;
}

.text-brand-secondary {
  color: #f3961a !important;
}

.bg-brand-primary {
  background-color: #19577e !important;
}

.bg-brand-secondary {
  background-color: #f3961a !important;
}

.bg-brand-gradient {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%) !important;
}

.bg-accent-gradient {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%) !important;
}

.bg-brand-reverse-gradient {
  background: linear-gradient(135deg, #19577e 0%, #f3961a 100%) !important;
}

.border-brand-primary {
  border-color: #19577e !important;
}

.border-brand-secondary {
  border-color: #f3961a !important;
}

.brand-accent-line {
  position: relative;
}
.brand-accent-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  border-radius: 2px;
}
.brand-accent-line.text-center::before {
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand-highlight {
  background: linear-gradient(120deg, transparent 0%, #fef4e6 50%, transparent 100%);
  padding: 2px 8px;
  border-radius: 4px;
}

.brand-icon-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease-in-out;
}
.brand-icon-animated:hover {
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  transform: scale(1.1) rotate(5deg);
}

.card-header-brand {
  background: linear-gradient(135deg, #19577e 0%, #f3961a 100%) !important;
  color: white !important;
  border: none !important;
}
.card-header-brand .card-title {
  margin: 0;
  font-weight: 600;
}

.nav-brand-active {
  background: linear-gradient(45deg, #e3f0f7 0%, #fef4e6 100%) !important;
  border-left: 4px solid #f3961a !important;
  border-radius: 0 8px 8px 0 !important;
}

.btn-floating-brand {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3961a 0%, #f5a839 100%);
  border: none;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(243, 150, 26, 0.4);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}
.btn-floating-brand:hover {
  background: linear-gradient(135deg, #19577e 0%, #f3961a 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(243, 150, 26, 0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
body.is-loaded {
  opacity: 1;
}

@media (min-width: 768px) {
  .table-responsive .table td {
    display: table-cell;
  }
}
@media (max-width: 767px) {
  .table-responsive .table {
    border: none;
  }
  .table-responsive .table tbody tr {
    display: block;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  .table-responsive .table tbody tr:last-child {
    margin-bottom: 0;
  }
  .table-responsive .table tbody tr td {
    display: block;
    border: none !important;
    text-align: left !important;
  }
  .table-responsive .table tbody tr td:first-child {
    background-color: #e3f0f7;
    font-weight: 600;
    color: #19577e;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem;
  }
  .table-responsive .table tbody tr td:last-child {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.625;
  }
}

::-moz-selection {
  background-color: rgba(25, 87, 126, 0.3);
  color: #1e293b;
}

::selection {
  background-color: rgba(25, 87, 126, 0.3);
  color: #1e293b;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}
.fade-in.is-animated {
  opacity: 1;
  transform: translateY(0);
}

body,
.l-main,
main {
  padding-top: 35px;
}