@charset "UTF-8";

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  font-family: "Noto Sans JP Variable", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html.menu-open,
body.menu-open {
  position: fixed;
  width: 100%;
  top: var(--scroll-position);
}

* {
  font-family: "Noto Sans JP Variable", sans-serif;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:focus {
  outline: 2px solid #0abab5;
  outline-offset: 2px;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h1.bc,
h2.bc,
h3.bc,
h4.bc,
h5.bc,
h6.bc {
  color: #0abab5;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p.bc {
  color: #0abab5;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header h2 {
  color: #0abab5;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#0abab5), to(rgba(10, 186, 181, 0.5)));
  background: linear-gradient(90deg, #0abab5, rgba(10, 186, 181, 0.5));
  border-radius: 2px;
}

.section-header h3 {
  color: #4a5568;
  font-weight: 500;
  font-size: 18px;
  margin: 0;
}

.c-titles {
  margin-bottom: 65px;
  border-bottom: 2px solid #0abab5;
  padding-bottom: 10px;
}

.c-titles h2 {
  color: #0abab5;
}

.c-titles h3 {
  color: #0abab5;
}

.information {
  background: linear-gradient(135deg, #f8fdfc 0%, #ffffff 50%, #f0fffe 100%);
  position: relative;
  overflow: hidden;
}

.information::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(10, 186, 181, 0.02) 0%, transparent 70%);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}

.information .inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.information .section-header {
  margin-bottom: 40px;
}

.information .section-header h2 {
  color: #0abab5;
}

.information-intro {
  margin-bottom: 60px;
}

.information-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
  font-weight: 500;
}

.information-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.information-cta .btn {
  min-width: 200px;
}

.information .contact-info {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 40px;
  -webkit-box-shadow: 0 8px 32px rgba(10, 186, 181, 0.1);
  box-shadow: 0 8px 32px rgba(10, 186, 181, 0.1);
  border: 1px solid rgba(10, 186, 181, 0.1);
  display: inline-block;
  position: relative;
}

.information .contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0abab5), to(rgb(16.6163265306, 242.1836734694, 235.7755102041)));
  background: linear-gradient(90deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
  border-radius: 20px 20px 0 0;
}

.information .contact-info .phone-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #0abab5;
  letter-spacing: 0.05em;
}

.information .contact-info .phone-number::before {
  content: "📞";
  font-size: 20px;
}

.information .contact-info .phone-number a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.information .contact-info .phone-number a:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.information .contact-info .business-hours {
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-20px) rotate(180deg);
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-20px) rotate(180deg);
    transform: translateY(-20px) rotate(180deg);
  }
}

.breadcrumb {
  padding: 15px 0;
  background-color: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  color: #666666;
}

.breadcrumb .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb nav {
  display: block;
}

.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #a0aec0;
  font-size: 12px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb a {
  color: #666666;
  text-decoration: none;
  padding: 4px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: #0abab5;
  text-decoration: underline;
}

.breadcrumb .current {
  color: #333333;
  font-weight: 500;
  padding: 4px 0;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb .fa {
  margin-right: 4px;
  font-size: 13px;
  vertical-align: middle;
}

.header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-logo {
  max-width: 70px;
}

.header-logo img {
  width: 100%;
  height: auto;
}

.header .global-menu,
.header #menu-header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .global-menu li,
.header #menu-header-menu li {
  position: relative;
}

.header .global-menu li a,
.header #menu-header-menu li a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
}

.header .global-menu li a:hover,
.header #menu-header-menu li a:hover {
  color: #0abab5;
}

.header .global-menu li.menu-item-has-children > a,
.header #menu-header-menu li.menu-item-has-children > a {
  position: relative;
  padding-right: 24px;
}

.header .global-menu li.menu-item-has-children > a::after,
.header #menu-header-menu li.menu-item-has-children > a::after {
  content: "▼";
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 10px;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .global-menu li.menu-item-has-children:hover > a::after,
.header #menu-header-menu li.menu-item-has-children:hover > a::after {
  color: #0abab5;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.header .global-menu li .sub-menu,
.header #menu-header-menu li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.header .global-menu li .sub-menu li a,
.header #menu-header-menu li .sub-menu li a {
  padding: 12px 20px;
  font-size: 14px;
  color: #333333;
  border-bottom: 1px solid rgba(10, 186, 181, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .global-menu li .sub-menu li a:hover,
.header #menu-header-menu li .sub-menu li a:hover {
  background: #e2e8f0;
  color: #0abab5;
  padding-left: 24px;
}

.header .global-menu li .sub-menu li:last-child a,
.header #menu-header-menu li .sub-menu li:last-child a {
  border-bottom: none;
}

.header .global-menu li:hover .sub-menu,
.header #menu-header-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header-hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1002;
  background: none;
  border: none;
  padding: 0;
  position: relative;
}

.header-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333333;
  border-radius: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
}

.header-hamburger span:nth-child(1) {
  top: 9px;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.header-hamburger span:nth-child(2) {
  top: 14px;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.header-hamburger span:nth-child(3) {
  top: 19px;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.header-hamburger.is-active span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.header-hamburger.is-active span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(248, 253, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding-top: 100px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
}

.header-mobile-menu.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.header-mobile-menu .mobile-menu-list {
  list-style: none;
  padding: 0 20px;
  margin: 0;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.header-mobile-menu .mobile-menu-list li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(10, 186, 181, 0.1);
}

.header-mobile-menu .mobile-menu-list li:last-child {
  border-bottom: none;
}

.header-mobile-menu .mobile-menu-list li a {
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: block;
  padding: 20px 25px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 12px;
  margin: 8px 0;
}

.header-mobile-menu .mobile-menu-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #0abab5, rgba(10, 186, 181, 0.8));
  border-radius: 12px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  z-index: -1;
}

.header-mobile-menu .mobile-menu-list li a:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  color: white;
}

.header-mobile-menu .mobile-menu-list li a:active::before {
  width: 100%;
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children > a {
  position: relative;
  cursor: pointer;
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children > a::after {
  content: "▼";
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children.is-open > a::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children .sub-menu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background: #e2e8f0;
  border-radius: 8px;
  margin: 8px 0;
  list-style: none;
  padding: 0;
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children .sub-menu.is-open {
  max-height: 400px;
  padding: 8px 0;
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children .sub-menu li {
  border-bottom: none;
  margin: 0;
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children .sub-menu li a {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children .sub-menu li a::before {
  display: none;
}

.header-mobile-menu .mobile-menu-list li.menu-item-has-children .sub-menu li a:active {
  background: #ffffff;
  color: #0abab5;
  padding-left: 24px;
}

.header-mobile-menu .mobile-menu-list li.current-menu-item a,
.header-mobile-menu .mobile-menu-list li.current_page_item a {
  background: linear-gradient(135deg, rgba(10, 186, 181, 0.1), #e2e8f0);
  color: #0abab5;
  font-weight: 700;
}

.header-mobile-menu .mobile-menu-list li.current-menu-item a::after,
.header-mobile-menu .mobile-menu-list li.current_page_item a::after {
  content: "●";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 8px;
  color: #0abab5;
}

.header-mobile-menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: -webkit-gradient(linear, left bottom, left top, from(#e2e8f0), to(transparent));
  background: linear-gradient(to top, #e2e8f0, transparent);
  pointer-events: none;
}

.footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0abab5), to(rgb(16.6163265306, 242.1836734694, 235.7755102041)));
  background: linear-gradient(90deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
}

.footer .inner {
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info .footer-logo {
  margin-bottom: 20px;
  max-width: 60px;
}

.footer-info .footer-logo img {
  width: 100%;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.footer-info .footer-company h3 {
  color: #0abab5;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.footer-info .footer-company p {
  color: #cbd5e0;
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

.footer-contact h4,
.footer-nav h4,
.footer-social h4 {
  color: #0abab5;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.footer-contact h4::after,
.footer-nav h4::after,
.footer-social h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #0abab5;
  border-radius: 1px;
}

.footer-contact .contact-item {
  margin-bottom: 15px;
}

.footer-contact .contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact .contact-item .contact-label {
  font-size: 12px;
  color: #a0aec0;
  margin-bottom: 5px;
  font-weight: 500;
}

.footer-contact .contact-item .contact-value {
  font-size: 14px;
  color: #ffffff;
}

.footer-contact .contact-item .contact-value a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-contact .contact-item .contact-value a:hover {
  color: #0abab5;
  text-decoration: underline;
}

.footer-nav .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav .footer-menu li {
  margin-bottom: 12px;
}

.footer-nav .footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-nav .footer-menu li a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-nav .footer-menu li a:hover {
  color: #0abab5;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.footer-social .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer-social .social-links .social-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 16px;
  background: linear-gradient(135deg, #0abab5, rgb(12.4030612245, 230.6969387755, 224.4954081633));
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(10, 186, 181, 0.1);
  box-shadow: 0 2px 8px rgba(10, 186, 181, 0.1);
}

.footer-social .social-links .social-link:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom .footer-copy p {
  color: #a0aec0;
  font-size: 12px;
  margin: 0;
  font-weight: 400;
}

.footer-bottom .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-bottom .footer-links a:hover {
  color: #0abab5;
  text-decoration: underline;
}

.btn,
.cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 180px;
  padding: 16px 24px 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::before,
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.btn::after,
.cta-button::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 3;
}

.btn:hover::before,
.cta-button:hover::before {
  left: 100%;
}

.btn:hover,
.cta-button:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.btn:hover::after,
.cta-button:hover::after {
  -webkit-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}

.btn span,
.cta-button span {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  padding-right: 50px;
}

.btn.btn-primary,
.cta-button {
  background: linear-gradient(135deg, #0abab5, rgb(12.4030612245, 230.6969387755, 224.4954081633));
  color: white;
}

.btn.btn-primary:hover,
.cta-button:hover {
  background: linear-gradient(135deg, rgb(9.2, 171.12, 166.52), #0abab5);
}

.btn.btn-secondary,
.btn-secondary.cta-button {
  background: transparent;
  color: #0abab5;
  border: 2px solid #0abab5;
}

.btn.btn-secondary:hover,
.btn-secondary.cta-button:hover {
  background: #0abab5;
  color: white;
}

.btn.btn-outline,
.btn-outline.cta-button {
  background: #f8fdfc;
  color: #0abab5;
  border: 1px solid rgba(10, 186, 181, 0.1);
}

.btn.btn-outline:hover,
.btn-outline.cta-button:hover {
  background: #0abab5;
  color: white;
  border-color: #0abab5;
}

.cta-button .button-text {
  position: relative;
  z-index: 2;
}

.cta-button .button-arrow {
  display: none;
}

@media screen and (min-width: 491px) {
  .header-mobile-menu {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  .inner {
    max-width: 95%;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1152px) {
  html {
    font-size: 15px;
  }

  .inner {
    max-width: 100%;
    padding: 0 20px;
  }

  section {
    padding: 80px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 17px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h3 {
    font-size: 17px;
  }

  .information-intro {
    margin-bottom: 50px;
  }

  .information-intro p {
    font-size: 17px;
  }

  .information .contact-info .phone-number {
    font-size: 22px;
  }

  .information .contact-info .phone-number::before {
    font-size: 18px;
  }

  .information .contact-info .business-hours {
    font-size: 13px;
  }

  .header {
    padding: 15px 0;
  }

  .header-inner {
    padding: 0 15px;
  }

  .header-logo {
    max-width: 60px;
  }

  .header .global-menu,
  .header #menu-header-menu {
    gap: 15px;
  }

  .header .global-menu li a,
  .header #menu-header-menu li a {
    font-size: 15px;
    padding: 6px 10px;
  }

  .footer .inner {
    padding: 50px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-info .footer-company h3 {
    font-size: 18px;
  }

  .footer-contact h4,
  .footer-nav h4,
  .footer-social h4 {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .btn span,
  .cta-button span {
    padding-right: 45px;
  }

  .btn,
  .cta-button {
    min-width: 160px;
    padding: 14px 20px 14px 28px;
    font-size: 15px;
  }

  .btn::after,
  .cta-button::after {
    right: 16px;
    font-size: 16px;
  }
}

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

  .inner {
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    margin-bottom: 12px;
  }

  .section-header h2::after {
    bottom: -6px;
    width: 50px;
    height: 2px;
  }

  .section-header h3 {
    font-size: 15px;
  }

  .information-intro {
    margin-bottom: 40px;
  }

  .information-intro p {
    font-size: 16px;
  }

  .information-intro p br {
    display: none;
  }

  .information-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }

  .information-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .information .contact-info {
    padding: 25px 30px;
    width: 100%;
    max-width: 350px;
  }

  .information .contact-info .phone-number {
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .information .contact-info .phone-number::before {
    font-size: 16px;
  }

  .information .contact-info .business-hours {
    font-size: 12px;
  }

  .breadcrumb {
    padding: 12px 0;
    font-size: 13px;
  }

  .breadcrumb .container {
    padding: 0 15px;
  }

  .breadcrumb ol {
    gap: 6px;
  }

  .breadcrumb li:not(:last-child)::after {
    margin: 0 6px;
    font-size: 11px;
  }

  .breadcrumb .fa {
    font-size: 12px;
    margin-right: 3px;
  }

  .header {
    padding: 12px 0;
  }

  .header-inner {
    padding: 0 12px;
  }

  .header-logo {
    max-width: 50px;
  }

  .header nav,
  .header .menu-header-menu-container {
    display: none;
  }

  .header-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer .inner {
    padding: 40px 15px 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer-info .footer-logo {
    max-width: 50px;
  }

  .footer-info .footer-company h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-info .footer-company p {
    font-size: 13px;
  }

  .footer-contact h4,
  .footer-nav h4,
  .footer-social h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-contact .contact-item {
    margin-bottom: 12px;
  }

  .footer-contact .contact-item .contact-label {
    font-size: 11px;
  }

  .footer-contact .contact-item .contact-value {
    font-size: 13px;
  }

  .footer-nav .footer-menu li {
    margin-bottom: 10px;
  }

  .footer-nav .footer-menu li a {
    font-size: 13px;
  }

  .footer-social .social-links .social-link {
    font-size: 12px;
    padding: 8px 14px;
  }

  .footer-bottom .footer-copy p {
    font-size: 11px;
  }

  .footer-bottom .footer-links {
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-bottom .footer-links a {
    font-size: 11px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header-mobile-menu .mobile-menu-list li a:hover {
    color: white;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 25px rgba(10, 186, 181, 0.1);
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.1);
  }

  .header-mobile-menu .mobile-menu-list li a:hover::before {
    width: 100%;
  }

  .header-mobile-menu .mobile-menu-list li.menu-item-has-children .sub-menu li a:hover {
    background: #ffffff;
    color: #0abab5;
    -webkit-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 24px;
  }
}
/*# sourceMappingURL=style.css.map */