@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

p {
  margin-bottom: 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

.section {
  padding: 6rem 0;
}

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

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

.mb-xl {
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  background-color: #104BA2;
  color: #ffffff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:hover {
  background-color: #EAB308;
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  background: #ffffff;
  color: #104BA2;
  border: 2px solid #104BA2;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-secondary:active {
  transform: translateY(0);
}
.btn-secondary:hover {
  background: #104BA2;
  color: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .section-title {
    margin-bottom: 4rem;
  }
}
.section-title__subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #104BA2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-title__subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.section-title h2 {
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
.section-title h2.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.section-title h2::after {
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 8px;
  width: 100%;
  height: 4px;
  background: #104BA2;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.6s ease-out 0.4s;
}
.section-title h2.animate-in::after {
  transform: scaleX(1);
}
@media (min-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}
.section-title p {
  color: #6b7280;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}
.section-title p.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-down.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scale-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

.slide-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-brightness {
  transition: filter 0.3s ease;
}
.hover-brightness:hover {
  filter: brightness(1.1);
}

.page-transition {
  animation: pageTransitionIn 0.5s ease-out;
}

@keyframes pageTransitionIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 初期状態：改行しない */
.sp-br {
  display: none;
}

/* 画面幅が768px以下のときだけ改行にする */
@media (max-width: 500px) {
  .sp-br {
    display: block;
    /* ブロック要素にして改行 */
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header__container {
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-left: 0px;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__container > .header__logo {
  margin-right: auto;
}
.header__container > .header__nav, .header__container > .header__cta, .header__container > .header__mobile-toggle {
  margin-left: 2rem;
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  max-height: 80px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.header__logo img {
  height: 80px;
}
.header__logo.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.header__link {
  color: #1f2937;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateX(-30px);
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #104BA2;
  transition: width 0.3s ease;
}
.header__link:hover {
  color: #104BA2;
}
.header__link:hover::after {
  width: 100%;
}
.header__link--active {
  color: #104BA2;
}
.header__link--active::after {
  width: 100%;
}
.header__link.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, color 0.2s ease;
}
.header__cta {
  display: none;
  opacity: 0;
  transform: translateX(-30px);
}
@media (min-width: 1024px) {
  .header__cta {
    display: block;
  }
}
.header__cta.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.header__cta .btn-primary {
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.header__cta .btn-primary i {
  font-size: 1.5em;
  margin-right: 5px;
}
.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}
@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}
.header__mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.header__mobile-toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
.header__mobile-toggle--active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__mobile-toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}
.header__mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 3rem 1.5rem;
  overflow-y: auto;
}
.header__mobile-menu--active {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .header__mobile-menu {
    display: none;
  }
}
.header__mobile-nav {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.header__mobile-link {
  color: #1f2937;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.2s ease;
}
.header__mobile-link:hover {
  color: #104BA2;
}
.header__mobile-link--active {
  color: #104BA2;
}
.header__mobile-cta {
  margin-top: 2rem;
}
.header__mobile-cta .btn-primary {
  width: 100%;
}

.header--scrolled {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.page-content {
  margin-top: 80px;
}

.contact-wrapper {
  position: relative;
  overflow: hidden;
}
.contact-wrapper::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ebebeb;
  pointer-events: none;
  z-index: 0;
}

.contact-section {
  margin-top: 100px;
  width: 90%;
  border-top-right-radius: 150px;
  border-bottom-right-radius: 150px;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/footer.png");
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  color: #ffffff;
  z-index: 1;
}
.contact-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .contact-section__container {
    padding: 0 3rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
  }
}
.contact-section__left {
  flex: 0 1 auto;
  white-space: nowrap;
}
.contact-section__subtitle {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.contact-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .contact-section__title {
    font-size: 3.5rem;
  }
}
.contact-section__info {
  display: flex;
  flex-direction: column;
}
.contact-section__info-item {
  display: flex;
  gap: 1.5rem;
}
.contact-section__info-item strong {
  min-width: 80px;
  color: rgba(255, 255, 255, 0.9);
}
.contact-section__info-item span {
  color: #ffffff;
}
.contact-section__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex: 0 1 auto;
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .contact-section__right {
    margin-top: 0px;
  }
}
@media (min-width: 768px) {
  .contact-section__right {
    align-items: center;
  }
}
.contact-section__phone-label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.contact-section__phone {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .contact-section__phone {
    font-size: 2.5rem;
  }
}
.contact-section__phone:hover {
  color: #EAB308;
}
.contact-section__button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #104BA2;
  color: #ffffff;
  padding: 1rem 3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  display: none;
}
@media (min-width: 768px) {
  .contact-section__button {
    display: inline-flex;
  }
}
.contact-section__button i {
  font-size: 1.5rem;
  margin-right: 0.2rem;
}
.contact-section__button:hover {
  background: #EAB308;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #ebebeb;
  color: #1f2937;
  padding: 4rem 0 1.5rem;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 0 3rem;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}
.footer__left {
  flex: 1;
  max-width: 400px;
}
.footer__logo {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.footer__address {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 5px;
}
.footer__phone {
  color: #6b7280;
  font-weight: normal;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__phone:hover {
  color: #104BA2;
}
.footer__right {
  flex: 1;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav a {
  color: #6b7280;
  transition: color 0.2s ease;
  display: block;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  white-space: nowrap;
  margin-right: 10px;
}
.footer__nav a:hover {
  color: #104BA2;
}
.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
}
.footer__copyright {
  color: #6b7280;
  font-size: 0.75rem;
  margin: 0;
}

.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  margin-left: 50px;
  overflow: visible;
}
@media (min-width: 768px) {
  .hero {
    height: 80vh;
  }
}
.hero__slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-bottom-left-radius: 8px;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.hero__slides.is-visible {
  opacity: 1;
  transform: scale(1);
}
.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0) 80%);
  z-index: 1;
}
.hero__slide--active {
  opacity: 1;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 1200px;
  padding-left: 20px;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
  margin-top: 250px;
}
.hero__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .hero__content {
    padding: 0 3rem 0 calc(3rem + 1px);
  }
}
.hero__title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}
@media (min-width: 500px) {
  .hero__title {
    padding-bottom: 2rem;
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 3px;
  background: linear-gradient(to right, #104BA2 0 40%, #ffffff 40% 100%);
}
@media (min-width: 768px) {
  .hero__title::after {
    width: 600px;
    height: 4px;
  }
}
.hero__title--highlight {
  color: #0067FF;
  position: relative;
  display: inline-block;
}
.hero__scroll-indicator {
  position: absolute;
  top: 80%;
  left: -30px;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 110;
  opacity: 0;
  animation: fadeInDown 1s ease-out 0.8s forwards;
}
.hero__scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #104BA2;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: #104BA2;
  position: relative;
  transform-origin: top;
  animation: expandDown 1s ease-out 1s forwards, breathe 2s ease-in-out 2s infinite;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #104BA2;
  animation: scrollArrow 1.5s ease-in-out 2s infinite;
}
.hero__indicators {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 1.5rem;
  z-index: 2;
}
.hero__indicator {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.hero__indicator:hover {
  transform: scale(1.1);
}
.hero__indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.hero__indicator-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2;
}
.hero__indicator-ring {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 100.48;
  stroke-dashoffset: 100.48;
  transition: stroke-dashoffset 0.3s ease;
}
.hero__indicator-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.hero__indicator--active .hero__indicator-ring {
  animation: progressRing 5s linear forwards;
}
.hero__indicator--active .hero__indicator-dot {
  background: #ffffff;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}
.hero__indicator--completed .hero__indicator-ring {
  stroke-dashoffset: 0;
}
.hero__indicator--completed .hero__indicator-dot {
  background: #ffffff;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandDown {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes breathe {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.1);
  }
}
@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes progressRing {
  0% {
    stroke-dashoffset: 100.48;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes shadowPulse {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 100px rgba(16, 75, 162, 0.3);
  }
  100% {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 80px rgba(16, 75, 162, 0.2);
  }
}
.services {
  background-color: #104BA2;
  color: #ffffff;
  padding: 6rem 0;
  padding-bottom: 0px;
  overflow: hidden;
  margin-top: 100px;
}
@media (min-width: 768px) {
  .services {
    background: linear-gradient(90deg, #104BA2 0%, #104BA2 95%, #fff 95%, #fff 100%);
  }
}
.services__header {
  text-align: left;
  margin-bottom: 6rem;
  padding: 0 1.5rem;
  width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .services__header {
    padding: 0 3rem;
  }
}
.services__subtitle {
  margin-bottom: 1rem;
  opacity: 0;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.services__subtitle.animate-in {
  opacity: 0.9;
  transform: translateY(0);
}
.services__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
@media (min-width: 768px) {
  .services__title {
    font-size: 3rem;
  }
}
.services__title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.services__description {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0;
  width: 82vw;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}
@media (min-width: 768px) {
  .services__description {
    font-size: 1.125rem;
  }
}
.services__description.animate-in {
  opacity: 0.9;
  transform: translateY(0);
}
.services__carousel {
  position: relative;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 0px;
}
@media (min-width: 768px) {
  .services__carousel {
    padding: 0 150px;
    padding-right: 0px;
  }
}
.services__slider {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 75, 162, 0.3) transparent;
}
.services__slider::-webkit-scrollbar {
  height: 6px;
}
.services__slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.services__slider::-webkit-scrollbar-thumb {
  background: rgba(16, 75, 162, 0.5);
  border-radius: 3px;
}
.services__slider::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 75, 162, 0.7);
}
@media (min-width: 768px) {
  .services__slider {
    overflow: hidden;
  }
}
.services__track {
  display: flex;
  gap: 5px;
  transition: transform 0.5s ease;
}
@media (max-width: 767px) {
  .services__track {
    transition: none;
  }
}
.services__slide {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
}
.services__slide-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 420px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.6s ease;
}
.services__slide-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 80%);
  z-index: 1;
  pointer-events: none;
}
.services__slide-link.shadow-animate {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 80px rgba(16, 75, 162, 0.2);
  animation: shadowPulse 0.8s ease-out forwards;
}
.services__slide-link.image-visible {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.services__slide-link.image-visible .services__slide-image {
  opacity: 1;
  transform: scale(1);
}
.services__slide-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.services__slide-link:hover .services__slide-image {
  transform: scale(1.1);
}
.services__slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.services__slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  transition: background 0.3s ease;
  z-index: 2;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, background 0.3s ease;
}
.services__slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  position: relative;
}
.services__slide-title::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 150px;
  height: 3px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease-out 0.2s;
}
.services__slide-link.text-visible .services__slide-overlay {
  opacity: 1;
  transform: translateX(0);
}
.services__slide-link.text-visible .services__slide-title::after {
  transform: scaleX(1);
}
.services__nav {
  display: none;
}
@media (min-width: 768px) {
  .services__nav {
    display: flex;
    position: absolute;
    bottom: -100px;
    width: 50px;
    height: 50px;
    border-radius: 9999px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
  }
  .services__nav:hover {
    background: #ffffff;
    color: #104BA2;
    transform: scale(1.1);
  }
}
@media (min-width: 768px) {
  .services__nav--prev {
    left: 120px;
  }
}
@media (min-width: 768px) {
  .services__nav--next {
    left: 200px;
  }
}
.services__nav span {
  display: block;
}
.services__cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 0 0 0;
  padding: 0;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.services__cta::before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: transparent;
  z-index: 0;
}
@media (min-width: 768px) {
  .services__cta::before {
    display: block;
  }
}
.services__cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 0;
}
@media (min-width: 768px) {
  .services__cta::after {
    left: 50%;
    width: 50%;
  }
}
.services__cta > * {
  position: relative;
  z-index: 1;
}
.services__cta .btn-primary {
  background: #104BA2;
  color: #ffffff;
  padding: 1.5rem 4rem;
  font-size: 1.125rem;
  border-radius: 9999px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .services__cta .btn-primary {
    margin-right: 25%;
    transform: translateX(50%);
  }
}
.services__cta .btn-primary:hover {
  background: #EAB308;
  color: #ffffff;
  transform: translateX(50%) translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.services__cta .btn-primary--large {
  padding: 1.5rem 6rem;
}
@media (min-width: 768px) {
  .services__cta {
    min-height: 150px;
  }
}

.strengths .container {
  max-width: 1200px;
  padding-left: 0px;
  padding-right: 0px;
}
.strengths__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.strengths__item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease-out;
}
.strengths__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.strengths__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .strengths__item {
    flex-direction: row;
    min-height: 280px;
  }
  .strengths__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.strengths__item-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .strengths__item-content {
    padding: 1.5rem;
  }
}
.strengths__item-number {
  font-size: 5rem;
  font-weight: 700;
  color: #104BA2;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
.strengths__item.animate-in .strengths__item-number {
  opacity: 1;
  transform: translateX(0);
}
.strengths__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
  line-height: 1.3;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}
.strengths__item.animate-in .strengths__item-title {
  opacity: 1;
  transform: translateX(0);
}
.strengths__item-description {
  color: #6b7280;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}
.strengths__item.animate-in .strengths__item-description {
  opacity: 1;
  transform: translateX(0);
}
.strengths__item-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .strengths__item-image {
    width: 55%;
    height: auto;
  }
}
.strengths__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: transform 0.5s ease, opacity 0.8s ease-out 0.3s;
}
.strengths__item-image:hover img {
  transform: scale(1.15);
}
.strengths__item.animate-in .strengths__item-image img {
  opacity: 1;
  transform: scale(1);
}
.strengths__item-badge {
  display: inline-block;
  background: #EAB308;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
}

.testimonials {
  background: #104BA2;
  padding: 6rem 0;
}
.testimonials .section-title h2,
.testimonials .section-title p {
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.testimonials .section-title h2.animate-in,
.testimonials .section-title p.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.testimonials .section-title p {
  transition-delay: 0.2s;
}
.testimonials__grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.testimonials__card {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.testimonials__card.animate-in {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 767px) {
  .testimonials__card {
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .testimonials__card {
    gap: 4rem;
  }
}
.testimonials__card:hover {
  transform: translateX(0);
  box-shadow: none;
}
.testimonials__card-avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 9999px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .testimonials__card-avatar {
    width: 120px;
    height: 120px;
    min-width: 120px;
  }
}
.testimonials__card-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials__card-content {
  flex: 1;
  color: #ffffff;
}
@media (max-width: 767px) {
  .testimonials__card-content {
    display: contents;
  }
}
.testimonials__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .testimonials__card-header {
    flex: 1;
    margin-bottom: 0;
  }
}
.testimonials__card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .testimonials__card-title {
    font-size: 1.125rem;
  }
}
.testimonials__card-badge {
  display: inline-block;
  background: rgba(234, 179, 8, 0.2);
  color: #EAB308;
  padding: 0.5rem 2rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 2px solid rgba(234, 179, 8, 0.7);
}
@media (min-width: 768px) {
  .testimonials__card-badge {
    font-size: 0.875rem;
  }
}
.testimonials__card-text {
  color: #ffffff;
  line-height: 1.8;
  font-size: 0.875rem;
  margin: 0;
}
@media (max-width: 767px) {
  .testimonials__card-text {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .testimonials__card-text {
    font-size: 0.95rem;
    line-height: 1.9;
  }
}

.contact-page {
  background: #ffffff;
}
.contact-page__top {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.contact-page__top > * {
  flex-shrink: 0;
}
.contact-page__header {
  background: #104BA2;
  padding: 6rem 3rem;
  border-bottom-right-radius: 100px;
  flex: 1;
}
@media (max-width: 768px) {
  .contact-page__header {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-right: 50px;
  }
}
.contact-page__header h1 {
  margin-bottom: 0;
  text-align: left;
}
.contact-page__subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.8;
  text-align: left;
  margin-bottom: 0.5rem;
}
.contact-page__breadcrumb {
  color: #1f2937;
  margin-right: 60px;
  margin-left: 40px;
}
.contact-page__breadcrumb a {
  color: #0067FF;
}
.contact-page__breadcrumb__link {
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.contact-page__breadcrumb__link:hover {
  opacity: 1;
  text-decoration: underline;
}
.contact-page__breadcrumb__separator {
  opacity: 0.6;
}
.contact-page__breadcrumb__current {
  opacity: 1;
  font-weight: 600;
}
@media (max-width: 768px) {
  .contact-page__breadcrumb {
    order: -1;
    width: 100%;
    display: none;
  }
}
.contact-page__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.contact-form__title {
  font-size: 1rem;
  font-weight: normal;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: left;
}
.contact-form__group {
  margin-bottom: 2rem;
}
.contact-form__field {
  margin-bottom: 1.5rem;
}
.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1f2937;
}
.contact-form__label--required::after {
  content: "*";
  color: #ef4444;
  margin-left: 0.25rem;
}
.contact-form__input, .contact-form__textarea, .contact-form__select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.contact-form__input:focus, .contact-form__textarea:focus, .contact-form__select:focus {
  outline: none;
  border-color: #104BA2;
  box-shadow: 0 0 0 3px rgba(16, 75, 162, 0.1);
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder, .contact-form__select::-moz-placeholder {
  color: #6b7280;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder, .contact-form__select::placeholder {
  color: #6b7280;
}
.contact-form__input--error, .contact-form__textarea--error, .contact-form__select--error {
  border-color: #ef4444;
}
.contact-form__input--error:focus, .contact-form__textarea--error:focus, .contact-form__select--error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form__error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}
.contact-form__help {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}
.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-form__checkbox input[type=checkbox] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.contact-form__checkbox label {
  flex: 1;
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
}
.contact-form__checkbox label a {
  color: #104BA2;
  text-decoration: underline;
}
.contact-form__checkbox label a:hover {
  color: #0067FF;
}
.contact-form__submit {
  text-align: center;
  margin-top: 3rem;
  width: 100%;
}
.contact-form__submit .btn-primary {
  padding: 1.5rem 4rem;
  border-radius: 0px;
  font-size: 1.125rem;
  width: 100%;
}
.contact-form__submit .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-form__submit .btn-primary:disabled:hover {
  transform: none;
}

.contact-success {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
  padding: 6rem 2rem;
}
.contact-success:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.contact-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: #10b981;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 2.5rem;
}
.contact-success h2 {
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.contact-success p {
  color: #6b7280;
  margin-bottom: 3rem;
}
.contact-success .btn-primary {
  padding: 1.5rem 3rem;
}

.contact-form-wrapper .wpcf7 {
  margin: 0;
}
.contact-form-wrapper .wpcf7-form p {
  margin-bottom: 2rem;
}
.contact-form-wrapper .wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1f2937;
  font-size: 1rem;
}
.contact-form-wrapper .wpcf7-form label .wpcf7-form-control-wrap::before {
  display: none;
}
.contact-form-wrapper .wpcf7-form .wpcf7-text,
.contact-form-wrapper .wpcf7-form .wpcf7-email,
.contact-form-wrapper .wpcf7-form .wpcf7-tel,
.contact-form-wrapper .wpcf7-form .wpcf7-date,
.contact-form-wrapper .wpcf7-form .wpcf7-number {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.contact-form-wrapper .wpcf7-form .wpcf7-text:focus,
.contact-form-wrapper .wpcf7-form .wpcf7-email:focus,
.contact-form-wrapper .wpcf7-form .wpcf7-tel:focus,
.contact-form-wrapper .wpcf7-form .wpcf7-date:focus,
.contact-form-wrapper .wpcf7-form .wpcf7-number:focus {
  outline: none;
  border-color: #104BA2;
  box-shadow: 0 0 0 3px rgba(16, 75, 162, 0.1);
}
.contact-form-wrapper .wpcf7-form .wpcf7-text::-moz-placeholder, .contact-form-wrapper .wpcf7-form .wpcf7-email::-moz-placeholder, .contact-form-wrapper .wpcf7-form .wpcf7-tel::-moz-placeholder, .contact-form-wrapper .wpcf7-form .wpcf7-date::-moz-placeholder, .contact-form-wrapper .wpcf7-form .wpcf7-number::-moz-placeholder {
  color: #6b7280;
}
.contact-form-wrapper .wpcf7-form .wpcf7-text::placeholder,
.contact-form-wrapper .wpcf7-form .wpcf7-email::placeholder,
.contact-form-wrapper .wpcf7-form .wpcf7-tel::placeholder,
.contact-form-wrapper .wpcf7-form .wpcf7-date::placeholder,
.contact-form-wrapper .wpcf7-form .wpcf7-number::placeholder {
  color: #6b7280;
}
.contact-form-wrapper .wpcf7-form .wpcf7-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
  background-color: #ffffff;
}
.contact-form-wrapper .wpcf7-form .wpcf7-select:focus {
  outline: none;
  border-color: #104BA2;
  box-shadow: 0 0 0 3px rgba(16, 75, 162, 0.1);
}
.contact-form-wrapper .wpcf7-form .wpcf7-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  min-height: 150px;
  resize: vertical;
  transition: all 0.2s ease;
}
.contact-form-wrapper .wpcf7-form .wpcf7-textarea:focus {
  outline: none;
  border-color: #104BA2;
  box-shadow: 0 0 0 3px rgba(16, 75, 162, 0.1);
}
.contact-form-wrapper .wpcf7-form .wpcf7-textarea::-moz-placeholder {
  color: #6b7280;
}
.contact-form-wrapper .wpcf7-form .wpcf7-textarea::placeholder {
  color: #6b7280;
}
.contact-form-wrapper .wpcf7-form .wpcf7-list-item {
  margin: 0 0 0.5rem 0;
}
.contact-form-wrapper .wpcf7-form .wpcf7-list-item label {
  display: inline;
  margin-left: 0.5rem;
  font-weight: normal;
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
}
.contact-form-wrapper .wpcf7-form .wpcf7-list-item input[type=checkbox],
.contact-form-wrapper .wpcf7-form .wpcf7-list-item input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.contact-form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  flex: 1;
}
.contact-form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label a {
  color: #104BA2;
  text-decoration: underline;
}
.contact-form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label a:hover {
  color: #0067FF;
}
.contact-form-wrapper .wpcf7-form .wpcf7-submit {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  background-color: #104BA2;
  color: #ffffff;
  padding: 1.5rem 4rem;
  border-radius: 0;
  font-size: 1.125rem;
  width: 100%;
  border: none;
  cursor: pointer;
}
.contact-form-wrapper .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.contact-form-wrapper .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
.contact-form-wrapper .wpcf7-form .wpcf7-submit:hover {
  background-color: #EAB308;
}
.contact-form-wrapper .wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-form-wrapper .wpcf7-form .wpcf7-submit:disabled:hover {
  transform: none;
}
.contact-form-wrapper .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.contact-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}
.contact-form-wrapper .wpcf7-form .wpcf7-not-valid {
  border-color: #ef4444 !important;
}
.contact-form-wrapper .wpcf7-form .wpcf7-not-valid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}
.contact-form-wrapper .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1.5rem;
  border: 2px solid;
  border-radius: 0;
  font-size: 0.875rem;
}
.contact-form-wrapper .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
  color: #ef4444;
}
.contact-form-wrapper .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
  color: #10b981;
}
.contact-form-wrapper .wpcf7-response-output.wpcf7-mail-sent-ng {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
  color: #ef4444;
}
.contact-form-wrapper .wpcf7-spinner {
  margin-left: 1rem;
  vertical-align: middle;
}

.contact-form-notice {
  padding: 3rem;
  background-color: rgba(16, 75, 162, 0.05);
  border: 2px solid #104BA2;
  border-radius: 0;
  text-align: center;
}
.contact-form-notice p {
  margin-bottom: 1rem;
  color: #1f2937;
}
.contact-form-notice p:last-child {
  margin-bottom: 0;
}
.contact-form-notice--error {
  background-color: rgba(239, 68, 68, 0.05);
  border-color: #ef4444;
}
.contact-form-notice--error strong {
  color: #ef4444;
}

.company-page__top {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.company-page__top > * {
  flex-shrink: 0;
}
.company-page__header {
  background: #104BA2;
  padding: 6rem 3rem;
  border-bottom-right-radius: 100px;
  flex: 1;
}
@media (max-width: 768px) {
  .company-page__header {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-right: 50px;
  }
}
.company-page__header h1 {
  margin-bottom: 0;
  text-align: left;
}
.company-page__subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.8;
  text-align: left;
  margin-bottom: 0.5rem;
}
.company-page__breadcrumb {
  color: #1f2937;
  margin-right: 60px;
  margin-left: 40px;
}
.company-page__breadcrumb a {
  color: #0067FF;
}
.company-page__breadcrumb__separator {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .company-page__breadcrumb {
    display: none;
    order: -1;
    width: 100%;
  }
}

.president-message {
  background: #ffffff;
  padding-top: 0px;
}
.president-message__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  padding-left: 24px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {
  .president-message__container {
    padding: 6rem 3rem;
  }
}
@media (min-width: 768px) {
  .president-message__container {
    padding-left: 0px;
    padding-bottom: 0px;
  }
}
.president-message__container .section-title {
  text-align: left;
  padding-left: 48px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .president-message__container .section-title {
    padding-left: 0px;
  }
}
.president-message__container .section-title p {
  margin-bottom: 0;
}
.president-message__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .president-message__content {
    grid-template-columns: 50% 1fr;
    gap: 40px;
  }
}
.president-message__image {
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInFromLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.president-message__image img {
  width: 100%;
  height: auto;
  display: block;
}
.president-message__image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #104BA2 0%, #EAB308 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 4rem;
}
.president-message__text {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInFromRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.president-message__text h2 {
  font-size: 2rem;
  color: #1f2937;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpSmooth 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
.president-message__text-role {
  color: #104BA2;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.president-message__text p {
  color: #6b7280;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(15px);
}
.president-message__text p:nth-child(2) {
  animation: fadeInUpSmooth 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}
.president-message__text p:nth-child(3) {
  animation: fadeInUpSmooth 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
.president-message__text p:nth-child(4) {
  animation: fadeInUpSmooth 1s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.president-message__text-signature {
  margin-top: 3rem;
  text-align: right;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.company-overview {
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {
  .company-overview {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.company-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  padding-top: 0px;
}
@media (min-width: 768px) {
  .company-overview__container {
    padding: 6rem 3rem;
  }
}
@media (min-width: 768px) {
  .company-overview__container {
    padding-top: 0px;
  }
}
.company-overview__container .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.company-overview__container .section-title p {
  margin-bottom: 0;
}
.company-overview__table {
  overflow-x: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.company-overview__table table {
  width: 100%;
  border-collapse: collapse;
}
.company-overview__table table tr {
  border-bottom: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateX(-20px);
}
.company-overview__table table tr:first-child {
  border-top: 1px solid #e5e7eb;
  animation: slideInTableRow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.company-overview__table table tr:nth-child(2) {
  animation: slideInTableRow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
.company-overview__table table tr:nth-child(3) {
  animation: slideInTableRow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}
.company-overview__table table tr:nth-child(4) {
  animation: slideInTableRow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
.company-overview__table table tr:nth-child(5) {
  animation: slideInTableRow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.company-overview__table table tr:nth-child(6) {
  animation: slideInTableRow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}
.company-overview__table table th,
.company-overview__table table td {
  padding: 1.5rem;
  text-align: left;
}
@media (min-width: 768px) {
  .company-overview__table table th,
  .company-overview__table table td {
    padding: 2rem;
  }
}
.company-overview__table table th {
  background: #104BA2;
  color: #ffffff;
  font-weight: 600;
  width: 120px;
  vertical-align: top;
}
@media (min-width: 768px) {
  .company-overview__table table th {
    width: 250px;
  }
}
.company-overview__table table td {
  color: #6b7280;
  line-height: 1.8;
}

.company-access {
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {
  .company-access {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.company-access__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {
  .company-access__container {
    padding: 6rem 3rem;
  }
}
@media (min-width: 768px) {
  .company-access__container {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.company-access__container .section-title {
  margin-bottom: 24px;
  text-align: left;
}
.company-access__container .section-title p {
  margin-bottom: 0;
}
.company-access__content {
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.company-access__map {
  padding: 0;
  overflow: hidden;
  min-height: 400px;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
  animation: zoomInFade 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.company-access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}
.company-access__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 28px;
  flex-wrap: nowrap;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
@media (min-width: 768px) {
  .company-access__info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.company-access__address {
  flex: 1;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}
.company-access__address p {
  margin: 0;
  color: #1f2937;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .company-access__address p {
    font-size: 1.125rem;
  }
}
.company-access__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #104BA2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 150px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.9);
  animation: bounceInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}
@media (min-width: 768px) {
  .company-access__map-link {
    font-size: 1rem;
    padding: 1.5rem 3rem;
  }
}
.company-access__map-link i {
  font-size: 1.1rem;
}
.company-access__map-link:hover {
  background: #0067FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bounceInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUpSmooth {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInTableRow {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.services-page__top {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.services-page__top > * {
  flex-shrink: 0;
}
.services-page__header {
  background: #104BA2;
  padding: 6rem 3rem;
  border-bottom-right-radius: 100px;
  flex: 1;
}
@media (max-width: 768px) {
  .services-page__header {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-right: 50px;
  }
}
.services-page__header h1 {
  margin-bottom: 0;
  text-align: left;
}
.services-page__subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.8;
  text-align: left;
  margin-bottom: 0.5rem;
}
.services-page__breadcrumb {
  color: #1f2937;
  margin-left: 40px;
  margin-right: 60px;
}
@media (max-width: 768px) {
  .services-page__breadcrumb {
    order: -1;
    width: 100%;
    display: none;
  }
}
.services-page__breadcrumb a {
  color: #0067FF;
}
.services-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .services-page__container {
    padding: 6rem 3rem;
  }
}
@media (max-width: 768px) {
  .services-page__container {
    padding-top: 20px;
  }
}
.services-page__layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services-page__layout {
    grid-template-columns: 250px 1fr;
  }
}

.services-sidebar {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: calc(80px + 1.5rem);
}
@media (max-width: 768px) {
  .services-sidebar {
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 3rem;
  }
}
.services-sidebar__title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
  color: #1f2937;
}
.services-sidebar__slider {
  overflow: visible;
}
@media (max-width: 768px) {
  .services-sidebar__slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 75, 162, 0.3) transparent;
  }
  .services-sidebar__slider::-webkit-scrollbar {
    height: 6px;
  }
  .services-sidebar__slider::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
  }
  .services-sidebar__slider::-webkit-scrollbar-thumb {
    background: rgba(16, 75, 162, 0.5);
    border-radius: 3px;
  }
  .services-sidebar__slider::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 75, 162, 0.7);
  }
}
.services-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .services-sidebar__nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    white-space: normal;
    flex-wrap: wrap;
  }
}
.services-sidebar__controls {
  display: none;
}
.services-sidebar__nav-btn {
  display: none;
}
.services-sidebar__image-wrapper {
  display: none;
}
@media (max-width: 768px) {
  .services-sidebar__image-wrapper {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    transition: border-color 0.2s ease;
  }
}
.services-sidebar__image {
  padding: 18px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-sidebar__link {
  padding: 16px 0px;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  color: #1f2937;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 768px) {
  .services-sidebar__link {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: transparent;
    border: none;
    min-width: 100px;
    gap: 0;
  }
}
.services-sidebar__link:hover {
  transform: translateX(8px);
}
@media (max-width: 768px) {
  .services-sidebar__link:hover {
    transform: translateY(-2px);
  }
}
.services-sidebar__link:hover .services-sidebar__indicator-ring {
  stroke: #104BA2;
  stroke-dashoffset: 0;
}
.services-sidebar__link:hover .services-sidebar__indicator-dot {
  background: #104BA2;
  box-shadow: 0 0 8px rgba(16, 75, 162, 0.4);
}
@media (max-width: 768px) {
  .services-sidebar__link:hover .services-sidebar__image-wrapper {
    border-color: #104BA2;
  }
}
.services-sidebar__link--active {
  color: #104BA2;
}
.services-sidebar__link--active .services-sidebar__indicator-ring {
  stroke: #104BA2;
  stroke-dashoffset: 0;
}
.services-sidebar__link--active .services-sidebar__indicator-dot {
  background: #104BA2;
  box-shadow: 0 0 8px rgba(16, 75, 162, 0.4);
}
@media (max-width: 768px) {
  .services-sidebar__link--active .services-sidebar__image-wrapper {
    border-color: #104BA2;
    box-shadow: 0 0 8px rgba(16, 75, 162, 0.3);
  }
}
.services-sidebar__indicator-progress {
  position: relative;
  flex-shrink: 0;
  transform: rotate(-90deg);
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .services-sidebar__indicator-progress {
    display: none;
  }
}
.services-sidebar__indicator-bg {
  fill: none;
  stroke: transparent;
  stroke-width: 2;
}
.services-sidebar__indicator-ring {
  fill: none;
  stroke: rgba(107, 114, 128, 0.3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 100.48;
  stroke-dashoffset: 100.48;
  transition: stroke-dashoffset 0.5s ease, stroke 0.3s ease;
}
@media (max-width: 768px) {
  .services-sidebar__indicator-ring {
    display: none;
  }
}
.services-sidebar__indicator-dot {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(107, 114, 128, 0.5);
  transition: all 0.3s ease;
  pointer-events: none;
}
@media (max-width: 768px) {
  .services-sidebar__indicator-dot {
    display: none;
  }
}
.services-sidebar__text {
  flex: 1;
}
@media (max-width: 768px) {
  .services-sidebar__text {
    flex: none;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 0;
    white-space: nowrap;
  }
}

.services-content {
  position: relative;
  min-height: 600px;
}
.services-content__section {
  display: none;
  opacity: 0;
}
.services-content__section--active {
  display: block;
  animation: slideInRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.services-content__section--active .service-detail__header,
.services-content__section--active .service-detail__image,
.services-content__section--active .service-detail__description,
.services-content__section--active .service-detail__features,
.services-content__section--active .service-detail__pricing,
.services-content__section--active .service-detail__cta {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: smoothFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.services-content__section--active .service-detail__header {
  animation-delay: 0.2s;
  text-align: left;
}
.services-content__section--active .service-detail__header h2 {
  display: inline-block;
  animation: slideInFromLeft 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}
.services-content__section--active .service-detail__image {
  animation-delay: 0.5s;
}
.services-content__section--active .service-detail__image img {
  animation: zoomIn 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  opacity: 0;
}
.services-content__section--active .service-detail__description {
  animation-delay: 0.8s;
}
.services-content__section--active .service-detail__description h3 {
  animation: slideInFromLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  opacity: 0;
}
.services-content__section--active .service-detail__description p {
  animation: smoothFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.services-content__section--active .service-detail__description p:nth-child(2) {
  animation-delay: 1.05s;
}
.services-content__section--active .service-detail__description p:nth-child(3) {
  animation-delay: 1.25s;
}
.services-content__section--active .service-detail__features {
  animation-delay: 1.1s;
}
.services-content__section--active .service-detail__features-item {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInFromLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.services-content__section--active .service-detail__features-item:nth-child(1) {
  animation-delay: 1.3s;
}
.services-content__section--active .service-detail__features-item:nth-child(2) {
  animation-delay: 1.5s;
}
.services-content__section--active .service-detail__features-item:nth-child(3) {
  animation-delay: 1.7s;
}
.services-content__section--active .service-detail__features-item:nth-child(4) {
  animation-delay: 1.9s;
}
.services-content__section--active .service-detail__features-item:nth-child(5) {
  animation-delay: 2.1s;
}
.services-content__section--active .service-detail__features-item:nth-child(6) {
  animation-delay: 2.3s;
}
.services-content__section--active .service-detail__pricing {
  animation-delay: 1.2s;
}
.services-content__section--active .service-detail__pricing h3 {
  animation: slideInFromLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
  opacity: 0;
}
.services-content__section--active .service-detail__pricing table {
  animation: smoothFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
  opacity: 0;
}
.services-content__section--active .service-detail__cta {
  animation-delay: 1.7s;
}
.services-content__section--active .service-detail__cta h3 {
  animation: slideInFromLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 1.85s forwards;
  opacity: 0;
}
.services-content__section--active .service-detail__cta p {
  animation: smoothFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 2.05s forwards;
  opacity: 0;
}
.services-content__section--active .service-detail__cta a {
  animation: bounceIn 1s cubic-bezier(0.16, 1, 0.3, 1) 2.25s forwards;
  opacity: 0;
}
.services-content__section--fade-out {
  animation: slideOutLeft 0.4s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
.services-content__section--fade-out .service-detail__header,
.services-content__section--fade-out .service-detail__image,
.services-content__section--fade-out .service-detail__description,
.services-content__section--fade-out .service-detail__features,
.services-content__section--fade-out .service-detail__pricing,
.services-content__section--fade-out .service-detail__cta {
  animation: fadeOutUp 0.3s cubic-bezier(0.7, 0, 0.84, 0) forwards;
  animation-delay: 0s !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes smoothFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.service-detail__header {
  text-align: center;
}
.service-detail__header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #104BA2;
  text-align: left;
}
.service-detail__header p {
  color: #6b7280;
  font-size: 1.125rem;
  text-align: left;
  margin-bottom: 0;
}
.service-detail__image {
  width: 100%;
  height: 400px;
  border-bottom-left-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
.service-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-detail__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 75, 162, 0.1) 0%, rgba(234, 179, 8, 0.1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #104BA2;
  font-size: 4rem;
}
.service-detail__description {
  margin-bottom: 3rem;
}
.service-detail__description h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.service-detail__description p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-detail__features {
  margin-bottom: 3rem;
}
.service-detail__features h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.service-detail__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service-detail__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-detail__features-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ebebeb;
  border-radius: 0.5rem;
  align-items: flex-start;
}
.service-detail__features-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #104BA2;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.service-detail__features-item-content {
  flex: 1;
}
.service-detail__features-item-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.service-detail__features-item-content p {
  color: #6b7280;
  margin: 0;
}
.service-detail__pricing {
  margin-bottom: 3rem;
}
.service-detail__pricing h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.service-detail__pricing-table {
  background: #ebebeb;
  border-radius: 1rem;
  overflow: hidden;
}
.service-detail__pricing-table table {
  width: 100%;
  border-collapse: collapse;
}
.service-detail__pricing-table table thead {
  background: #104BA2;
  color: #ffffff;
}
.service-detail__pricing-table table thead th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}
.service-detail__pricing-table table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}
.service-detail__pricing-table table tbody tr:last-child {
  border-bottom: none;
}
.service-detail__pricing-table table tbody td {
  padding: 1.5rem;
}
.service-detail__pricing-table table tbody td:first-child {
  color: #1f2937;
  font-weight: 500;
}
.service-detail__pricing-table table tbody td:last-child {
  color: #104BA2;
  font-weight: 700;
  font-size: 1.125rem;
}
.service-detail__pricing-note {
  margin-top: 1.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  border-left: 4px solid #EAB308;
}
.service-detail__cta {
  text-align: center;
  padding: 3rem 0.5rem;
  background: linear-gradient(135deg, rgba(16, 75, 162, 0.1) 0%, rgba(234, 179, 8, 0.1) 100%);
  border-radius: 1rem;
}
.service-detail__cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.service-detail__cta p {
  color: #6b7280;
  margin-bottom: 2rem;
}
.service-detail__cta .btn-primary {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

.products-page__top {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.products-page__top > * {
  flex-shrink: 0;
}
.products-page__header {
  background: #104BA2;
  padding: 6rem 3rem;
  border-bottom-right-radius: 100px;
  flex: 1;
}
@media (max-width: 768px) {
  .products-page__header {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-right: 50px;
  }
}
.products-page__header h1 {
  margin-bottom: 0;
  text-align: left;
}
.products-page__subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.8;
  text-align: left;
  margin-bottom: 0.5rem;
}
.products-page__breadcrumb {
  color: #1f2937;
  margin-left: 40px;
  margin-right: 60px;
}
.products-page__breadcrumb a {
  color: #0067FF;
}
@media (max-width: 768px) {
  .products-page__breadcrumb {
    order: -1;
    width: 100%;
    display: none;
  }
}
.products-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .products-page__container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.products-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.products-tabs::-webkit-scrollbar {
  height: 4px;
}
.products-tabs::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 0.25rem;
}
.products-tabs::-webkit-scrollbar-thumb {
  background: #104BA2;
  border-radius: 0.25rem;
}
.products-tabs__button {
  padding: 1rem 2rem;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  color: #1f2937;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.products-tabs__button:hover {
  border-color: #104BA2;
  color: #104BA2;
  transform: translateY(-2px);
}
.products-tabs__button--active {
  background: #104BA2;
  color: #ffffff;
  border-color: #104BA2;
}
.products-tabs__button--active:hover {
  background: #0067FF;
  border-color: #0067FF;
  transform: translateY(-2px);
}

.products-grid {
  display: none;
  animation: fadeIn 0.5s ease ease-in;
}
.products-grid--active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .products-grid--active {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products-grid--active {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  width: 300px;
  border: 1px solid #DBDEE5;
  background-color: #F8FAFC;
  padding-bottom: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card__image {
  width: 100%;
  height: 250px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 75, 162, 0.1) 0%, rgba(234, 179, 8, 0.1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #104BA2;
  font-size: 3rem;
}
.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #EAB308;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__category {
  color: #104BA2;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-card__title {
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 0px;
  color: #1f2937;
  text-align: center;
  font-weight: normal;
}
.product-card__description {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.6;
}
.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.product-card__specs-item {
  padding: 0.25rem 1rem;
  background: #ebebeb;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.product-card__footer {
  padding-top: 1.5rem;
  text-align: center;
}
.product-card__price {
  font-size: 1rem;
}
.product-card__price span {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 400;
}
.product-card__button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  background-color: #104BA2;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.product-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.product-card__button:active {
  transform: translateY(0);
}
.product-card__button:hover {
  background-color: #EAB308;
}
.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.product-modal--active {
  display: flex;
}
.product-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.product-modal__container {
  background: #ffffff;
  border-radius: 1rem;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 2;
  animation: modalSlideIn 0.5s ease ease-out;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.product-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #104BA2;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  pointer-events: auto;
}
.product-modal__close span {
  display: block;
  transform: translateY(-2px);
}
.product-modal__close:hover {
  background: #0067FF;
  transform: rotate(90deg);
}
.product-modal__content {
  padding: 3rem;
  padding-top: calc(3rem + 40px);
}
@media (min-width: 768px) {
  .product-modal__content {
    padding: 4rem;
    padding-top: calc(4rem + 40px);
  }
}
@media (max-width: 768px) {
  .product-modal__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product-modal__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .product-modal__layout {
    grid-template-columns: 1fr 1fr;
  }
}
.product-modal__gallery {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
}
.product-modal__gallery-main {
  width: 100%;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  max-width: 100%;
}
@media (min-width: 768px) {
  .product-modal__gallery-main {
    height: 400px;
  }
}
.product-modal__gallery-main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.2s ease;
  max-width: 100%;
}
.product-modal__gallery-thumbnails-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 5px;
}
.product-modal__gallery-thumbnails-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
  max-width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  pointer-events: none;
}
.product-modal__gallery-thumbnails {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  max-width: 100%;
  pointer-events: auto;
  padding-top: 5px;
  -webkit-overflow-scrolling: touch;
}
.product-modal__gallery-thumbnails::-webkit-scrollbar {
  display: none;
}
.product-modal__gallery-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 2px solid #104BA2;
  background: #ffffff;
  color: #104BA2;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 50;
  position: relative;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .product-modal__gallery-nav {
    display: none;
  }
}
.product-modal__gallery-nav:hover:not(:disabled) {
  background: #104BA2;
  color: #ffffff;
  transform: scale(1.1);
}
.product-modal__gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #e5e7eb;
  color: #e5e7eb;
}
.product-modal__gallery-nav span {
  display: block;
}
.product-modal__gallery-thumbnail {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid #e5e7eb;
  transition: all 0.2s ease;
  position: relative;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  pointer-events: auto;
}
.product-modal__gallery-thumbnail:hover {
  border-color: #104BA2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.product-modal__gallery-thumbnail--active {
  border-color: #104BA2;
  border-width: 3px;
  box-shadow: 0 0 0 2px rgba(16, 75, 162, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
}
.product-modal__gallery-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.product-modal__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-modal__title {
  font-size: 1.5rem;
  margin: 0;
  color: #1f2937;
}
@media (min-width: 768px) {
  .product-modal__title {
    font-size: 1.75rem;
  }
}
.product-modal__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #104BA2;
}
.product-modal__price-unit {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
  margin-left: 0.5rem;
}
.product-modal__price-contact {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
}
.product-modal__description {
  color: #6b7280;
  line-height: 1.8;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.product-modal__description p {
  margin: 0;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.product-modal__description p:last-child {
  margin-bottom: 0;
}
.product-modal__specs h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.product-modal__specs-table {
  width: 100%;
  border-collapse: collapse;
}
.product-modal__specs-table tr {
  border-bottom: 1px solid #e5e7eb;
}
.product-modal__specs-table tr:last-child {
  border-bottom: none;
}
.product-modal__specs-table th,
.product-modal__specs-table td {
  padding: 1rem 0;
  text-align: left;
}
.product-modal__specs-table th {
  font-weight: 600;
  color: #1f2937;
  width: 40%;
  font-size: 0.875rem;
}
.product-modal__specs-table td {
  color: #6b7280;
  font-size: 0.875rem;
}
.product-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .product-modal__actions {
    flex-direction: row;
  }
}
.product-modal__actions .btn-primary,
.product-modal__actions .btn-secondary {
  flex: 1;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: none;
}
@media (min-width: 768px) {
  .product-modal__actions .btn-primary,
  .product-modal__actions .btn-secondary {
    font-size: 0.875rem;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateX(-50px);
  transition: none;
}
.animate-on-scroll.is-visible {
  animation: slideInFromLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

.stagger-5 {
  animation-delay: 0.5s;
}

.stagger-6 {
  animation-delay: 0.6s;
}

.stagger-7 {
  animation-delay: 0.7s;
}

.stagger-8 {
  animation-delay: 0.8s;
}

.stagger-9 {
  animation-delay: 0.9s;
}

.stagger-10 {
  animation-delay: 1s;
}

.category-header {
  background: #ffffff;
  padding: 3rem 0;
  margin-bottom: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.category-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.category-header h2 {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 1rem;
}
.category-header p {
  color: #6b7280;
  font-size: 1.125rem;
}

.products-list-page .products-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .products-list-page .products-page__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.products-list-page .products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .products-list-page .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products-list-page .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products-list-page .product-card {
  width: 100%;
  max-width: 100%;
}

.category-carousel {
  position: sticky;
  top: calc(80px + 1rem);
  background: #ffffff;
  padding: 3rem;
  padding-top: 0;
  z-index: 100;
  position: relative;
  margin: 0 auto;
  margin-bottom: 150px;
  overflow: visible;
}
@media (max-width: 768px) {
  .category-carousel {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.category-carousel__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .category-carousel__title {
    font-size: 1.75rem;
  }
}
.category-carousel__slider {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #104BA2 transparent;
  padding-bottom: 10px;
}
.category-carousel__slider::-webkit-scrollbar {
  height: 6px;
}
.category-carousel__slider::-webkit-scrollbar-track {
  background: transparent;
  margin: 0 1.5rem;
}
.category-carousel__slider::-webkit-scrollbar-thumb {
  background: #104BA2;
  border-radius: 9999px;
}
.category-carousel__slider::-webkit-scrollbar-thumb:hover {
  background: #0067FF;
}
@media (max-width: 768px) {
  .category-carousel__slider {
    scrollbar-width: none;
  }
  .category-carousel__slider::-webkit-scrollbar {
    display: none;
  }
}
.category-carousel__controls,
.category-carousel .animate-on-scroll.stagger-8.is-visible {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .category-carousel__controls,
  .category-carousel .animate-on-scroll.stagger-8.is-visible {
    display: none !important;
  }
}
.category-carousel__track {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 10px;
  margin-top: 10px;
}
.category-carousel__slide {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .category-carousel__slide {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    flex: 0 0 160px;
  }
}
@media (min-width: 1024px) {
  .category-carousel__slide {
    width: 170px;
    min-width: 170px;
    max-width: 170px;
    flex: 0 0 170px;
  }
}
.category-carousel__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  background: #ffffff;
  border: none;
  padding: 0;
  font: inherit;
  width: 100%;
}
.category-carousel__card:hover {
  transform: translateY(-4px);
}
.category-carousel__card:hover .category-carousel__image-wrapper {
  border-color: #104BA2;
  box-shadow: 0 4px 12px rgba(16, 75, 162, 0.15);
}
.category-carousel__card:hover .category-carousel__label {
  color: #104BA2;
}
.category-carousel__card--active .category-carousel__image-wrapper {
  border-color: #104BA2;
  background: rgba(16, 75, 162, 0.05);
  box-shadow: 0 4px 12px rgba(16, 75, 162, 0.3);
}
.category-carousel__card--active .category-carousel__label {
  color: #104BA2;
  font-weight: 700;
}
.category-carousel__image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}
.category-carousel__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-carousel__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  transition: all 0.2s ease;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .category-carousel__label {
    font-size: 0.9rem;
  }
}
.category-carousel__nav {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  border: 2px solid #104BA2;
  background: #ffffff;
  color: #104BA2;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-carousel__nav:hover {
  background: #104BA2;
  color: #ffffff;
  transform: scale(1.1);
}
.category-carousel__nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.category-carousel__nav:disabled:hover {
  background: #ffffff;
  color: #104BA2;
  transform: none;
}
.category-carousel__nav span {
  display: block;
}

.products-section {
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 2px solid #e5e7eb;
  scroll-margin-top: calc(80px + 6rem);
}
@media (max-width: 768px) {
  .products-section {
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
}
.products-section__header {
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .products-section__header {
    text-align: left;
  }
}
.products-section__title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.products-section__title {
  font-size: 2rem;
  margin-bottom: 0;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .products-section__title {
    font-size: 2.5rem;
  }
}
.products-section__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #104BA2;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 2px solid #104BA2;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.products-section__view-all:hover {
  background: #104BA2;
  color: #ffffff;
  transform: translateY(-2px);
}
.products-section__view-all::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.products-section__view-all:hover::after {
  transform: translateX(4px);
}
.products-section__description {
  color: #6b7280;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .products-section__description {
    font-size: 1.125rem;
  }
}
.products-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .products-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products-section__slider-wrapper {
  position: relative;
  overflow: visible;
}
.products-section__slider {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #104BA2 transparent;
  padding-bottom: 16px;
}
.products-section__slider::-webkit-scrollbar {
  height: 6px;
}
.products-section__slider::-webkit-scrollbar-track {
  background: transparent;
  margin: 0 1.5rem;
}
.products-section__slider::-webkit-scrollbar-thumb {
  background: #104BA2;
  border-radius: 9999px;
}
.products-section__slider::-webkit-scrollbar-thumb:hover {
  background: #0067FF;
}
@media (max-width: 768px) {
  .products-section__slider {
    scrollbar-width: none;
  }
  .products-section__slider::-webkit-scrollbar {
    display: none;
  }
}
.products-section__track {
  display: flex;
  gap: 2rem;
}
.products-section__slide {
  min-width: 300px;
  max-width: 300px;
  flex: 0 0 300px;
}
.products-section__controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .products-section__controls {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .products-section__controls {
    display: none;
  }
}
.products-section__nav {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  border: 2px solid #104BA2;
  background: #ffffff;
  color: #104BA2;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products-section__nav:hover {
  background: #104BA2;
  color: #ffffff;
  transform: scale(1.1);
}
.products-section__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.products-section__nav:disabled:hover {
  background: #ffffff;
  color: #104BA2;
  transform: none;
}
.products-section__nav span {
  display: block;
}

.privacy-page {
  background: #ffffff;
}
.privacy-page__top {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.privacy-page__top > * {
  flex-shrink: 0;
}
.privacy-page__header {
  background: #104BA2;
  padding: 6rem 3rem;
  border-bottom-right-radius: 100px;
  flex: 1;
}
@media (max-width: 768px) {
  .privacy-page__header {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-right: 50px;
  }
}
.privacy-page__header h1 {
  margin-bottom: 0;
  text-align: left;
}
.privacy-page__subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.8;
  text-align: left;
  margin-bottom: 0.5rem;
}
.privacy-page__breadcrumb {
  color: #1f2937;
  margin-right: 60px;
  margin-left: 40px;
}
.privacy-page__breadcrumb a {
  color: #0067FF;
}
@media (max-width: 768px) {
  .privacy-page__breadcrumb {
    display: none;
  }
}
.privacy-page__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .privacy-page__container {
    padding: 6rem 3rem;
  }
}

.privacy-content {
  background: #ffffff;
}
.privacy-content__updated {
  text-align: right;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 3rem;
  padding: 1rem 1.5rem;
  background: rgba(16, 75, 162, 0.05);
  border-radius: 0.25rem;
  border-left: 3px solid #104BA2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
@media (min-width: 768px) {
  .privacy-content__updated {
    text-align: right;
  }
}
.privacy-content__intro {
  margin-bottom: 6rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(16, 75, 162, 0.05) 0%, rgba(0, 103, 255, 0.05) 100%);
  border-left: 4px solid #104BA2;
  border-radius: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.privacy-content__intro p {
  color: #1f2937;
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .privacy-content__intro p {
    font-size: 1.0625rem;
  }
}
.privacy-content__section {
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(30px);
}
.privacy-content__section:nth-child(3) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.privacy-content__section:nth-child(4) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
.privacy-content__section:nth-child(5) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
.privacy-content__section:nth-child(6) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}
.privacy-content__section:nth-child(7) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}
.privacy-content__section:nth-child(8) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
.privacy-content__section:nth-child(9) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}
.privacy-content__section:nth-child(10) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.privacy-content__section:nth-child(11) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}
.privacy-content__section:nth-child(12) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}
.privacy-content__section:nth-child(13) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.7s forwards;
}
.privacy-content__section:nth-child(14) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}
.privacy-content__section:last-child {
  margin-bottom: 0;
}
.privacy-content__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #104BA2;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .privacy-content__section-title {
    font-size: 1.75rem;
  }
}
.privacy-content__text {
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .privacy-content__text {
    font-size: 1rem;
  }
}
.privacy-content__text:last-child {
  margin-bottom: 0;
}
.privacy-content__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.privacy-content__list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
  line-height: 1.8;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .privacy-content__list li {
    font-size: 1rem;
  }
}
.privacy-content__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #104BA2;
  border-radius: 9999px;
}
.privacy-content__list li:last-child {
  margin-bottom: 0;
}
.privacy-content__numbered-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  counter-reset: item;
}
.privacy-content__numbered-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
  line-height: 1.8;
  font-size: 0.9375rem;
  counter-increment: item;
}
@media (min-width: 768px) {
  .privacy-content__numbered-list li {
    font-size: 1rem;
  }
}
.privacy-content__numbered-list li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #104BA2;
  font-size: 1rem;
}
.privacy-content__numbered-list li:last-child {
  margin-bottom: 0;
}
.privacy-content__highlight {
  padding: 2rem;
  background: rgba(0, 103, 255, 0.05);
  border: 2px solid rgba(0, 103, 255, 0.2);
  border-radius: 0.5rem;
  margin: 3rem 0;
}
.privacy-content__highlight p {
  color: #1f2937;
  line-height: 1.8;
  margin: 0;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .privacy-content__highlight p {
    font-size: 1rem;
  }
}
.privacy-content__highlight p + p {
  margin-top: 1.5rem;
}
.privacy-content__note {
  padding: 1.5rem 2rem;
  background: rgba(234, 179, 8, 0.08);
  border-left: 4px solid #EAB308;
  border-radius: 0.25rem;
  margin: 2rem 0;
}
.privacy-content__note p {
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .privacy-content__note p {
    font-size: 0.9375rem;
  }
}
.privacy-content__contact {
  margin-top: 6rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(16, 75, 162, 0.08) 0%, rgba(0, 103, 255, 0.08) 100%);
  border-radius: 1rem;
  border: 2px solid rgba(16, 75, 162, 0.15);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.privacy-content__contact h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #104BA2;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(16, 75, 162, 0.2);
}
@media (min-width: 768px) {
  .privacy-content__contact h3 {
    font-size: 1.5rem;
  }
}
.privacy-content__contact h3::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #104BA2;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.privacy-content__contact-details {
  padding: 2rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.privacy-content__contact-details p {
  color: #1f2937;
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  display: flex;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .privacy-content__contact-details p {
    font-size: 1rem;
  }
}
.privacy-content__contact-details p:last-child {
  margin-bottom: 0;
}
.privacy-content__contact-details p strong {
  color: #104BA2;
  font-weight: 700;
  min-width: 80px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .privacy-content__contact-details p strong {
    min-width: 100px;
  }
}
.privacy-content__contact-details p a {
  color: #0067FF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.privacy-content__contact-details p a:hover {
  color: #104BA2;
  text-decoration: underline;
}
.privacy-content__footer {
  margin-top: 6rem;
  padding: 3rem;
  background: rgba(16, 75, 162, 0.03);
  border-top: 2px solid rgba(16, 75, 162, 0.1);
  border-radius: 0.5rem;
  text-align: center;
}
.privacy-content__footer p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .privacy-content__footer p {
    font-size: 0.9375rem;
  }
}
.privacy-content__footer p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #1f2937;
  margin-top: 1.5rem;
  font-size: 1rem;
}
.privacy-content__footer p strong {
  color: #104BA2;
  font-weight: 700;
}
.privacy-content__table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
@media (min-width: 768px) {
  .privacy-content__table {
    display: table;
  }
}
.privacy-content__table table {
  width: 100%;
  min-width: 500px;
}
.privacy-content__table th,
.privacy-content__table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 768px) {
  .privacy-content__table th,
  .privacy-content__table td {
    padding: 2rem;
  }
}
.privacy-content__table th {
  background: #104BA2;
  color: #ffffff;
  font-weight: 600;
  width: 200px;
  vertical-align: top;
}
.privacy-content__table td {
  color: #6b7280;
  line-height: 1.8;
  font-size: 0.9375rem;
}
.privacy-content__table tr:first-child th,
.privacy-content__table tr:first-child td {
  border-top: 1px solid #e5e7eb;
}
.privacy-content__table tr:last-child th,
.privacy-content__table tr:last-child td {
  border-bottom: 2px solid #104BA2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.privacy-page__breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #1f2937;
  white-space: nowrap;
}
.privacy-page__breadcrumb .breadcrumb__link {
  color: #0067FF;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.privacy-page__breadcrumb .breadcrumb__link:hover {
  opacity: 0.7;
}
.privacy-page__breadcrumb .breadcrumb__separator {
  opacity: 0.6;
}
.privacy-page__breadcrumb .breadcrumb__current {
  opacity: 1;
  font-weight: 600;
}

@media (max-width: 768px) {
  .privacy-content__section-title {
    font-size: 1.25rem;
  }
  .privacy-content__contact {
    padding: 2rem;
  }
  .privacy-content__contact h3 {
    font-size: 1.125rem;
  }
}/*# sourceMappingURL=style.css.map */