@charset "UTF-8";
/**
 * IPリッチテーマのメインスタイルシート
 */
:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #3b82f6;
  --accent-blue: #0ea5e9;
  --light-blue: #7dd3fc;
  --dark-blue: #1e40af;
  --extra-light-blue: #e0f2fe;
  --neutral-white: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #64748b;
  --dark-gray: #1e293b;
  --soft-gray: #f1f5f9;
  --extra-dark-gray: #0f172a;
  --border-light: rgba(255, 255, 255, 0.2);
  --border-dark: rgba(30, 58, 138, 0.1);
  --border-color: rgba(30, 58, 138, 0.08);
  --border-hover: rgba(125, 211, 252, 0.3);
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: rgba(30, 41, 59, 0.7);
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-blue: #1e3a8a;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-muted: #f1f5f9;
  --bg-dark: #1e293b;
  --bg-overlay: rgba(30, 58, 138, 0.05);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  --gradient-light: linear-gradient(135deg, var(--extra-light-blue) 0%, var(--neutral-white) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
  --shadow-light: 0 2px 10px rgba(30, 58, 138, 0.08);
  --shadow-medium: 0 8px 25px rgba(30, 58, 138, 0.15);
  --shadow-heavy: 0 20px 60px rgba(30, 58, 138, 0.25);
  --shadow-button: 0 6px 20px rgba(30, 58, 138, 0.3);
  --shadow-button-hover: 0 12px 35px rgba(30, 58, 138, 0.4);
  --radius-small: 6px;
  --radius-medium: 10px;
  --radius-large: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --border-radius: 10px;
  --border-radius-large: 16px;
  --transition-fast: 0.2s ease;
  --transition-standard: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --z-dropdown: 1000;
  --z-header: 1000;
  --z-mobile-menu: 1000;
  --z-overlay: 1001;
  --z-modal: 1002;
  --z-tooltip: 1003;
  --z-toast: 1004;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-base: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.4rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 3.6rem;
  --font-size-5xl: 4.8rem;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  --line-height-loose: 2;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  --container-max: 1200px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 350ms;
  --duration-slower: 500ms;
  --ease-linear: linear;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --btn-padding-sm: 0.8rem 1.6rem;
  --btn-padding-md: 1.2rem 2.4rem;
  --btn-padding-lg: 1.6rem 3.2rem;
  --btn-font-size-sm: 1.4rem;
  --btn-font-size-md: 1.6rem;
  --btn-font-size-lg: 1.8rem;
  --input-border: 1px solid var(--border-color);
  --input-border-focus: 1px solid var(--primary-blue);
  --input-border-error: 1px solid #ef4444;
  --input-padding: 1.2rem 1.6rem;
  --input-border-radius: var(--radius-medium);
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: var(--accent-blue);
  --success-50: #ecfdf5;
  --success-100: #d1fae5;
  --success-500: var(--color-success);
  --success-600: #059669;
  --success-700: #047857;
  --warning-50: #fffbeb;
  --warning-100: #fef3c7;
  --warning-500: var(--color-warning);
  --warning-600: #d97706;
  --warning-700: #b45309;
  --error-50: #fef2f2;
  --error-100: #fee2e2;
  --error-500: var(--color-error);
  --error-600: #dc2626;
  --error-700: #b91c1c;
  --header-height: 80px;
  --header-height-mobile: 70px;
  --header-bg: rgba(255, 255, 255, 0.95);
  --header-bg-scrolled: rgba(255, 255, 255, 0.98);
  --footer-bg: var(--gradient-primary);
  --footer-text: var(--text-white);
  --card-bg: var(--bg-primary);
  --card-border: var(--border-color);
  --card-shadow: var(--shadow-light);
  --card-shadow-hover: var(--shadow-medium);
  --card-border-radius: var(--radius-large);
  --cta-bg: var(--gradient-primary);
  --cta-text: var(--text-white);
  --hero-bg: var(--gradient-light);
  --hero-text: var(--text-primary);
  --hero-height: 100vh;
  --hero-height-subpage: 30vh;
  --hero-height-mobile: 50vh;
  --hero-height-subpage-mobile: 25vh;
}

:root {
  --main-blue: var(--primary-blue);
  --text-color: var(--text-primary);
  --border-radius-sm: var(--radius-small);
}

@media print {
  :root {
    --shadow-light: none;
    --shadow-medium: none;
    --shadow-heavy: none;
    --gradient-primary: var(--primary-blue);
    --gradient-secondary: var(--secondary-blue);
  }
}
@media (prefers-contrast: high) {
  :root {
    --border-color: var(--dark-gray);
    --text-secondary: var(--text-primary);
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: none;
    --transition-standard: none;
    --transition-slow: none;
    --transition-smooth: none;
    --duration-fast: 0ms;
    --duration-normal: 0ms;
    --duration-slow: 0ms;
    --duration-slower: 0ms;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
  }
}
.text-blue {
  color: var(--main-blue);
}

.text-light-blue {
  color: var(--light-blue);
}

.text-white {
  color: var(--text-white);
}

.text-muted {
  color: var(--text-secondary);
}

.bg-blue {
  background: var(--main-blue);
}

.bg-light-blue {
  background: var(--light-blue);
}

.bg-gradient {
  background: var(--gradient-primary);
}

.bg-white {
  background: var(--bg-primary);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(30, 58, 138, 0.08);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(30, 58, 138, 0.06);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 40px rgba(30, 58, 138, 0.12);
  border-bottom-color: rgba(30, 58, 138, 0.1);
}
.header .header-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header .header-inner {
    padding: 1.2rem 1.5rem;
  }
}
.header .header-logo {
  flex-shrink: 0;
  z-index: 1001;
}
.header .header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header .header-logo a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.header .header-logo .logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .header .header-logo .logo-text {
    font-size: 1.6rem;
  }
}
.header .header-logo img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}
.header .header-logo img:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .header .header-logo img {
    height: 45px;
  }
}
.header .header-nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .header .header-nav .nav-list {
    gap: 2.5rem;
  }
}
.header .header-nav .nav-item {
  position: relative;
}
.header .header-nav .nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header-nav .nav-item.has-dropdown .dropdown-icon {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}
.header .header-nav .nav-item.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}
.header .header-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  padding: 1.2rem 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}
.header .header-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header-nav .nav-link:hover {
  color: var(--primary-blue);
}
.header .header-nav .nav-link:hover::after {
  width: 100%;
}
.header .header-nav .nav-link.active {
  color: var(--primary-blue);
}
.header .header-nav .nav-link.active::after {
  width: 100%;
}
.header .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--neutral-white);
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem 0;
  border: 1px solid rgba(30, 58, 138, 0.08);
  z-index: 1002;
}
.header .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 2rem;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--neutral-white);
}
.header .dropdown-menu .dropdown-item {
  margin: 0;
}
.header .dropdown-menu .dropdown-item a {
  display: block;
  padding: 1.2rem 2.5rem;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
}
.header .dropdown-menu .dropdown-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.header .dropdown-menu .dropdown-item a:hover {
  background: var(--light-gray);
  color: var(--primary-blue);
  padding-left: 3rem;
}
.header .dropdown-menu .dropdown-item a:hover::before {
  transform: scaleY(1);
}
.header .header-contact {
  margin-left: 3rem;
}
@media screen and (max-width: 1024px) {
  .header .header-contact {
    display: none;
  }
}
.header .header-contact .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  padding: 1.4rem 2.8rem;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 25px rgba(30, 58, 138, 0.25);
  border: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.header .header-contact .contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.header .header-contact .contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.35);
}
.header .header-contact .contact-btn:hover::before {
  opacity: 1;
}
.header .header-contact .contact-btn:hover .contact-icon {
  transform: rotate(10deg) scale(1.1);
}
.header .header-contact .contact-btn span, .header .header-contact .contact-btn .contact-icon {
  position: relative;
  z-index: 1;
}
.header .header-contact .contact-btn .contact-icon {
  transition: transform 0.3s ease;
}
.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media screen and (max-width: 1024px) {
  .header .mobile-menu-toggle {
    display: flex;
  }
}
.header .mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary-blue);
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform-origin: center;
}
.header .mobile-menu-toggle span:nth-child(1) {
  transform-origin: top left;
}
.header .mobile-menu-toggle span:nth-child(3) {
  transform-origin: bottom left;
}
.header .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px);
}
.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.header .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -2px);
}
.header .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--neutral-white);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}
.header .mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.header .mobile-menu .mobile-nav {
  padding: 10rem 2rem 4rem;
  max-width: 400px;
  margin: 0 auto;
}
.header .mobile-menu .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .mobile-menu .mobile-nav-list .mobile-nav-item {
  margin-bottom: 0.5rem;
}
.header .mobile-menu .mobile-nav-list .mobile-nav-item .mobile-nav-link {
  display: block;
  padding: 2rem 2.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
  position: relative;
}
.header .mobile-menu .mobile-nav-list .mobile-nav-item .mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: height 0.3s ease;
}
.header .mobile-menu .mobile-nav-list .mobile-nav-item .mobile-nav-link:hover, .header .mobile-menu .mobile-nav-list .mobile-nav-item .mobile-nav-link.active {
  background: var(--light-gray);
  color: var(--primary-blue);
  padding-left: 3.5rem;
}
.header .mobile-menu .mobile-nav-list .mobile-nav-item .mobile-nav-link:hover::before, .header .mobile-menu .mobile-nav-list .mobile-nav-item .mobile-nav-link.active::before {
  height: 60%;
}
.header .mobile-menu .mobile-contact {
  margin-top: 4rem;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}
.header .mobile-menu .mobile-contact .mobile-contact-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
}
.header .mobile-menu .mobile-contact .mobile-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.35);
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}
.header body.menu-open {
  overflow: hidden;
}
@-webkit-keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header .header {
  -webkit-animation: headerSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
          animation: headerSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@-webkit-keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.header .header-logo:hover {
  -webkit-animation: logoFloat 0.8s ease-in-out;
          animation: logoFloat 0.8s ease-in-out;
}
.header .page-content {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .header .page-content {
    padding-top: 80px;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .header .nav-link,
.header .mobile-nav-link,
.header .contact-btn {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.page-header {
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .page-header {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .page-header {
    padding-top: 70px;
  }
}

.nav-item.has-dropdown {
  position: relative;
}
.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--neutral-white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
  border: 1px solid rgba(30, 58, 138, 0.1);
}
.dropdown-menu .dropdown-item a {
  display: block;
  padding: 1rem 2rem;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border-radius: 0;
}
.dropdown-menu .dropdown-item a:hover {
  background: var(--light-gray);
  color: var(--primary-blue);
  padding-left: 2.5rem;
}
.dropdown-menu .dropdown-item a::before {
  display: none;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header {
  -webkit-animation: headerSlideDown 0.5s ease-out;
          animation: headerSlideDown 0.5s ease-out;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.header-logo:hover {
  -webkit-animation: logoFloat 0.6s ease-in-out;
          animation: logoFloat 0.6s ease-in-out;
}

.header-simple {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
  padding: 20px 0;
  position: relative;
}
.header-simple .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: static;
}
.header-simple .site-title .main-ttl {
  margin: 0;
}
.header-simple .site-title .main-ttl a {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}
.header-simple .gnav {
  position: static;
}
.header-simple .gnav .header-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.header-simple .gnav .header-list__item {
  margin-left: 20px;
}
.header-simple .gnav .header-list__item a {
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 16px;
  position: relative;
}
.header-simple .gnav .header-list__item a[aria-current=page], .header-simple .gnav .header-list__item a:hover {
  color: var(--accent-blue);
}
.header-simple .gnav .header-list__item a[aria-current=page]::after, .header-simple .gnav .header-list__item a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-blue);
}
.header-simple .drawer-open {
  z-index: 100;
}
.header-simple .drawer-open span {
  background-color: var(--primary-blue);
}

@media screen and (max-width: 768px) {
  .header-simple {
    padding: 15px 0;
  }
  .header-simple .site-title .main-ttl a {
    font-size: 20px;
  }
  .header-simple .drawer-content {
    background-color: #fff;
  }
  .header-simple .drawer-content .drawer-list .list-item a {
    color: var(--dark-gray);
  }
}
.bg_wrapper.subpage {
  min-height: auto;
  background-color: #fff;
}
.bg_wrapper.subpage::before {
  display: none;
}
.bg_wrapper.subpage body::before {
  display: none;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  height: 1px;
  background-color: #e5e7eb;
}

:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

::-moz-selection {
  background-color: rgba(59, 130, 246, 0.2);
  color: #1e3a8a;
}

::selection {
  background-color: rgba(59, 130, 246, 0.2);
  color: #1e3a8a;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 880px) {
  .container {
    padding: 0 15px;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 95%;
    padding: 0 15px;
  }
}

.pc-hidden {
  display: none;
}
@media screen and (max-width: 880px) {
  .pc-hidden {
    display: block;
  }
}

.sp-hidden {
  display: block;
}
@media screen and (max-width: 880px) {
  .sp-hidden {
    display: none;
  }
}

img.w100 {
  width: 100%;
  height: auto;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.subpage-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 30px;
  margin-top: 88px;
}
@media screen and (max-width: 768px) {
  .subpage-hero {
    min-height: 25vh;
  }
}
.subpage-hero .subpage-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.subpage-hero .subpage-hero-bg .subpage-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 50%, rgba(125, 211, 252, 0.7) 100%);
  z-index: 2;
}
.subpage-hero .subpage-hero-bg .subpage-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.subpage-hero .subpage-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 2rem;
}
.subpage-hero .subpage-hero-content .subpage-hero-inner {
  -webkit-animation: fadeInUp 1s ease-out;
          animation: fadeInUp 1s ease-out;
}
.subpage-hero .subpage-hero-content .subpage-hero-title {
  margin-bottom: 1.5rem;
}
.subpage-hero .subpage-hero-content .subpage-hero-title .subpage-hero-subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.subpage-hero .subpage-hero-content .subpage-hero-title .subpage-hero-main-title {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .subpage-hero .subpage-hero-content .subpage-hero-title .subpage-hero-main-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .subpage-hero .subpage-hero-content .subpage-hero-title .subpage-hero-main-title {
    font-size: 2rem;
  }
}
.subpage-hero .subpage-hero-content .subpage-hero-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage-hero .subpage-hero-content .subpage-hero-description {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}
.subpage-hero .subpage-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
.subpage-hero .subpage-scroll-indicator span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}
.subpage-hero .subpage-scroll-indicator .scroll-arrow {
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  position: relative;
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}
.subpage-hero .subpage-scroll-indicator .scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .subpage-hero .subpage-scroll-indicator {
    display: none;
  }
}

.ttl_box {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .ttl_box {
    margin-bottom: 4rem;
  }
}
.ttl_box .main-ttl {
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--main-blue);
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}
.ttl_box .main-ttl::after {
  content: attr(data-title);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 100%;
}
.team-section .ttl_box .main-ttl, .process-section .ttl_box .main-ttl, .achievement-section .ttl_box .main-ttl {
  color: #ffffff;
}
.team-section .ttl_box .main-ttl::after, .process-section .ttl_box .main-ttl::after, .achievement-section .ttl_box .main-ttl::after {
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .ttl_box .main-ttl {
    font-size: 3.2rem;
  }
  .ttl_box .main-ttl::after {
    font-size: 1.2rem;
    top: -1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .ttl_box .main-ttl {
    font-size: 2.8rem;
  }
  .ttl_box .main-ttl::after {
    font-size: 1rem;
    top: -1.2rem;
  }
}

.bg_wrapper {
  position: relative;
  width: 100%;
}
.bg_wrapper.subpage {
  min-height: auto;
  background-color: #fff;
}
.bg_wrapper.subpage::before {
  display: none;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-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 bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.preload * {
  transition: none !important;
}

.footer {
  background: var(--gradient-primary);
  color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.1) 0%, transparent 70%);
  z-index: 1;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  z-index: 1;
}
.footer .footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-container {
    padding: 0 1.5rem;
  }
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6rem;
  padding: 8rem 0 6rem;
}
@media screen and (max-width: 1024px) {
  .footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 0 5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 5rem 0 4rem;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer-section.footer-info {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-section.footer-info {
    grid-column: span 1;
  }
}
.footer .footer-info .footer-logo {
  margin-bottom: 3rem;
}
.footer .footer-info .footer-logo .company-name {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--neutral-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .footer .footer-info .footer-logo .company-name {
    font-size: 2rem;
  }
}
.footer .footer-info .footer-logo .company-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer .footer-info .footer-logo .company-description {
    font-size: 1.4rem;
  }
  .footer .footer-info .footer-logo .company-description br {
    display: none;
  }
}
.footer .footer-info .footer-contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.footer .footer-info .footer-contact-info .contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.footer .footer-info .footer-contact-info .contact-item:hover {
  padding-left: 1rem;
  border-bottom-color: rgba(125, 211, 252, 0.3);
}
.footer .footer-info .footer-contact-info .contact-item:hover .contact-icon {
  transform: scale(1.1);
  color: var(--light-blue);
}
.footer .footer-info .footer-contact-info .contact-item .contact-icon {
  flex-shrink: 0;
  color: var(--light-blue);
  transition: all 0.3s ease;
}
.footer .footer-info .footer-contact-info .contact-item span, .footer .footer-info .footer-contact-info .contact-item a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer .footer-info .footer-contact-info .contact-item span:hover, .footer .footer-info .footer-contact-info .contact-item a:hover {
  color: var(--light-blue);
}
@media screen and (max-width: 768px) {
  .footer .footer-info .footer-contact-info .contact-item {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
}
.footer .footer-navigation .footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: 3rem;
  position: relative;
}
.footer .footer-navigation .footer-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--light-blue);
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .footer .footer-navigation .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer .footer-navigation .footer-nav {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-navigation .footer-nav {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer .footer-navigation .footer-nav .nav-column {
  flex: 1;
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item {
  margin-bottom: 1.5rem;
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item:last-child {
  margin-bottom: 0;
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link {
  display: block;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link::before {
    display: none;
  }
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link:hover {
  color: var(--light-blue);
  padding-left: 1.5rem;
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link:hover::before {
  width: 12px;
}
@media screen and (max-width: 768px) {
  .footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link:hover {
    padding-left: 0;
    transform: translateY(-2px);
  }
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link.sub-link {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 1rem;
}
.footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link.sub-link:hover {
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-navigation .footer-nav .nav-column .footer-nav-list .footer-nav-item .footer-nav-link.sub-link:hover {
    padding-left: 1rem;
  }
}
.footer .footer-cta .footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-cta .footer-title {
    margin-bottom: 1.5rem;
  }
}
.footer .footer-cta .footer-cta-text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-cta .footer-cta-text {
    margin-bottom: 2.5rem;
  }
  .footer .footer-cta .footer-cta-text br {
    display: none;
  }
}
.footer .footer-cta .footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn.primary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--neutral-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--neutral-white);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn.primary:hover {
  border-color: var(--neutral-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn.primary:hover::before {
  opacity: 1;
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn.primary:hover span, .footer .footer-cta .footer-cta-buttons .footer-cta-btn.primary:hover svg {
  color: var(--primary-blue);
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--neutral-white);
  border: 2px solid rgba(125, 211, 252, 0.3);
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn.secondary:hover {
  background: rgba(125, 211, 252, 0.2);
  border-color: var(--light-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(125, 211, 252, 0.3);
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn span, .footer .footer-cta .footer-cta-buttons .footer-cta-btn svg {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn svg {
  transition: transform 0.3s ease;
}
.footer .footer-cta .footer-cta-buttons .footer-cta-btn:hover svg {
  transform: scale(1.1) rotate(5deg);
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3rem 0;
}
.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
.footer .footer-bottom .footer-bottom-content .copyright {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 500;
}
.footer .footer-bottom .footer-bottom-content .footer-links {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content .footer-links {
    gap: 2rem;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-links .footer-link {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.footer .footer-bottom .footer-bottom-content .footer-links .footer-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--light-blue);
  transition: width 0.3s ease;
}
.footer .footer-bottom .footer-bottom-content .footer-links .footer-link:hover {
  color: var(--light-blue);
}
.footer .footer-bottom .footer-bottom-content .footer-links .footer-link:hover::after {
  width: 100%;
}

.to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top .to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.to-top .to-top-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.to-top .to-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}
.to-top .to-top-btn:hover::before {
  opacity: 1;
}
.to-top .to-top-btn:hover svg {
  transform: translateY(-2px);
}
.to-top .to-top-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}
.to-top .to-top-btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .to-top .to-top-btn {
    width: 50px;
    height: 50px;
    bottom: 2rem;
    right: 2rem;
  }
  .to-top .to-top-btn svg {
    width: 20px;
    height: 20px;
  }
}

@-webkit-keyframes footerSlideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes footerSlideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.footer-section {
  -webkit-animation: footerSlideUp 0.8s ease-out;
          animation: footerSlideUp 0.8s ease-out;
}
.footer-section:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .footer-nav-link,
.footer-cta-btn,
.company-name {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
/**
 * スクロールアニメーション
 */
body:not(.js-animations-enabled) [data-animate],
body:not(.js-animations-enabled) [data-animate-children] .list-item,
body:not(.js-animations-enabled) [data-animate-children] .service-item,
body:not(.js-animations-enabled) [data-animate-children] .about-item,
body:not(.js-animations-enabled) [data-animate-children] .member-card {
  opacity: 1 !important;
  transform: none !important;
}

.js-animations-enabled [data-animate] {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
}
.js-animations-enabled [data-animate][data-animate=fade-up] {
  transform: translateY(60px);
}
.js-animations-enabled [data-animate][data-animate=scale] {
  transform: scale(0.8);
}
.js-animations-enabled [data-animate][data-animate=slide-left] {
  transform: translateX(-60px);
}
.js-animations-enabled [data-animate][data-animate=slide-right] {
  transform: translateX(60px);
}
.js-animations-enabled [data-animate-stagger] .list-item,
.js-animations-enabled [data-animate-stagger] .service-item,
.js-animations-enabled [data-animate-stagger] .about-item,
.js-animations-enabled [data-animate-stagger] .member-card {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: 0s;
}
.js-animations-enabled [data-animate-children] .list-item,
.js-animations-enabled [data-animate-children] .service-item,
.js-animations-enabled [data-animate-children] .about-item,
.js-animations-enabled [data-animate-children] .member-card {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(20px);
}
.js-animations-enabled .main-ttl[data-animate] {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
.js-animations-enabled .news .news-list .list-item {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(40px);
}
.js-animations-enabled .news .news-list .list-item:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(2) {
  transition-delay: 0.1s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(3) {
  transition-delay: 0.2s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(4) {
  transition-delay: 0.3s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(5) {
  transition-delay: 0.4s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(6) {
  transition-delay: 0.5s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(7) {
  transition-delay: 0.6s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(8) {
  transition-delay: 0.7s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(9) {
  transition-delay: 0.8s;
}
.js-animations-enabled .news .news-list .list-item:nth-child(10) {
  transition-delay: 0.9s;
}
.js-animations-enabled .greeting .txt_wrap p {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0.2s;
}
.js-animations-enabled .greeting .greeting-img {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: scale(0.8) rotate(5deg);
  transition-delay: 0.4s;
}
.js-animations-enabled .service .service-item {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(50px);
}
.js-animations-enabled .service .service-item:nth-child(odd) {
  transform: translateY(50px) translateX(-20px);
}
.js-animations-enabled .service .service-item:nth-child(even) {
  transform: translateY(50px) translateX(20px);
}
.js-animations-enabled .service .service-item:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .service .service-item:nth-child(2) {
  transition-delay: 0.15s;
}
.js-animations-enabled .service .service-item:nth-child(3) {
  transition-delay: 0.3s;
}
.js-animations-enabled .service .service-item:nth-child(4) {
  transition-delay: 0.45s;
}
.js-animations-enabled .service .service-item:nth-child(5) {
  transition-delay: 0.6s;
}
.js-animations-enabled .service .service-item:nth-child(6) {
  transition-delay: 0.75s;
}
.js-animations-enabled .service .service-item:nth-child(7) {
  transition-delay: 0.9s;
}
.js-animations-enabled .service .service-item:nth-child(8) {
  transition-delay: 1.05s;
}
.js-animations-enabled .service .service-item:nth-child(9) {
  transition-delay: 1.2s;
}
.js-animations-enabled .service .service-item:nth-child(10) {
  transition-delay: 1.35s;
}
.js-animations-enabled .about-page .about_table .about-item {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(30px);
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(2) {
  transition-delay: 0.1s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(3) {
  transition-delay: 0.2s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(4) {
  transition-delay: 0.3s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(5) {
  transition-delay: 0.4s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(6) {
  transition-delay: 0.5s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(7) {
  transition-delay: 0.6s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(8) {
  transition-delay: 0.7s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(9) {
  transition-delay: 0.8s;
}
.js-animations-enabled .about-page .about_table .about-item:nth-child(10) {
  transition-delay: 0.9s;
}
.js-animations-enabled .about-page .team-heading {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(40px);
}
.js-animations-enabled .about-page .member-cols .member-card {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(2) {
  transition-delay: 0.15s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(3) {
  transition-delay: 0.3s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(4) {
  transition-delay: 0.45s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(5) {
  transition-delay: 0.6s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(6) {
  transition-delay: 0.75s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(7) {
  transition-delay: 0.9s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(8) {
  transition-delay: 1.05s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(9) {
  transition-delay: 1.2s;
}
.js-animations-enabled .about-page .member-cols .member-card:nth-child(10) {
  transition-delay: 1.35s;
}
.js-animations-enabled .about-page .member-cols .member-card:hover {
  transform: translateY(-5px) scale(1.02);
  transition-duration: 0.3s;
}
.js-animations-enabled .about-page .sns_list .list-item {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateX(-30px);
}
.js-animations-enabled .about-page .sns_list .list-item:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .about-page .sns_list .list-item:nth-child(2) {
  transition-delay: 0.1s;
}
.js-animations-enabled .about-page .sns_list .list-item:nth-child(3) {
  transition-delay: 0.2s;
}
.js-animations-enabled .about-page .sns_list .list-item:nth-child(4) {
  transition-delay: 0.3s;
}
.js-animations-enabled .about-page .sns_list .list-item:nth-child(5) {
  transition-delay: 0.4s;
}
.js-animations-enabled .service02 .check_list .list-item {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(2) {
  transition-delay: 0.08s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(3) {
  transition-delay: 0.16s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(4) {
  transition-delay: 0.24s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(5) {
  transition-delay: 0.32s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(6) {
  transition-delay: 0.4s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(7) {
  transition-delay: 0.48s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(8) {
  transition-delay: 0.56s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(9) {
  transition-delay: 0.64s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(10) {
  transition-delay: 0.72s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(11) {
  transition-delay: 0.8s;
}
.js-animations-enabled .service02 .check_list .list-item:nth-child(12) {
  transition-delay: 0.88s;
}
.js-animations-enabled .service02 .check_list .list-item:hover {
  transform: translateY(-2px) scale(1.02);
  transition-duration: 0.3s;
}
.js-animations-enabled .service02 .point_list .list-item {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(60px) rotateX(10deg);
}
.js-animations-enabled .service02 .point_list .list-item:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .service02 .point_list .list-item:nth-child(2) {
  transition-delay: 0.2s;
}
.js-animations-enabled .service02 .point_list .list-item:nth-child(3) {
  transition-delay: 0.4s;
}
.js-animations-enabled .service02 .point_list .list-item:nth-child(4) {
  transition-delay: 0.6s;
}
.js-animations-enabled .service02 .point_list .list-item:nth-child(5) {
  transition-delay: 0.8s;
}
.js-animations-enabled .service02 .point_list .list-item:nth-child(6) {
  transition-delay: 1s;
}
.js-animations-enabled .service02 .point_list .list-item:nth-child(7) {
  transition-delay: 1.2s;
}
.js-animations-enabled .service02 .point_list .list-item:nth-child(8) {
  transition-delay: 1.4s;
}
.js-animations-enabled .service02 .point_list .list-item:hover {
  transform: translateY(-10px) rotateX(0deg) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition-duration: 0.4s;
}
.js-animations-enabled .service02 .point_list .list-item .icon_box {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  transition-delay: 0.1s;
}
.js-animations-enabled .service02 .point_list .list-item .icon_box img {
  transition: transform 0.3s ease;
}
.js-animations-enabled .service02 .point_list .list-item:hover .icon_box img {
  transform: scale(1.1) rotate(5deg);
}
.js-animations-enabled .service02 .point_list .list-item .dot_list .list-item {
  opacity: 0;
  transform: translateX(-20px);
  transition-delay: 0.3s;
}
.js-animations-enabled .service02 .point_list .list-item .dot_list .list-item:nth-child(1) {
  transition-delay: 0.3s;
}
.js-animations-enabled .service02 .point_list .list-item .dot_list .list-item:nth-child(2) {
  transition-delay: 0.35s;
}
.js-animations-enabled .service02 .point_list .list-item .dot_list .list-item:nth-child(3) {
  transition-delay: 0.4s;
}
.js-animations-enabled .service02 .point_list .list-item .dot_list .list-item:nth-child(4) {
  transition-delay: 0.45s;
}
.js-animations-enabled .service02 .point_list .list-item .dot_list .list-item:nth-child(5) {
  transition-delay: 0.5s;
}
.js-animations-enabled .service02 .catch h3 {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}
.js-animations-enabled .strength .strength-anchor-link-list li {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateX(-40px);
}
.js-animations-enabled .strength .strength-anchor-link-list li:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .strength .strength-anchor-link-list li:nth-child(2) {
  transition-delay: 0.1s;
}
.js-animations-enabled .strength .strength-anchor-link-list li:nth-child(3) {
  transition-delay: 0.2s;
}
.js-animations-enabled .strength .strength-anchor-link-list li:nth-child(4) {
  transition-delay: 0.3s;
}
.js-animations-enabled .strength .strength-anchor-link-list li:nth-child(5) {
  transition-delay: 0.4s;
}
.js-animations-enabled .strength .strength-anchor-link-list li:nth-child(6) {
  transition-delay: 0.5s;
}
.js-animations-enabled .strength .strength-anchor-link-list li a {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  display: block;
  padding: 10px 15px;
  border-radius: 5px;
}
.js-animations-enabled .strength .strength-anchor-link-list li a:hover {
  transform: translateX(10px);
  background-color: rgba(0, 124, 186, 0.1);
  transition-duration: 0.3s;
}
.js-animations-enabled .strength .strength-support-list ul li {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(1) {
  transition-delay: 0s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(2) {
  transition-delay: 0.05s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(3) {
  transition-delay: 0.1s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(4) {
  transition-delay: 0.15s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(5) {
  transition-delay: 0.2s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(6) {
  transition-delay: 0.25s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(7) {
  transition-delay: 0.3s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(8) {
  transition-delay: 0.35s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(9) {
  transition-delay: 0.4s;
}
.js-animations-enabled .strength .strength-support-list ul li:nth-child(10) {
  transition-delay: 0.45s;
}
.js-animations-enabled .strength .strength-support-list ul li:hover {
  transform: translateY(-2px) scale(1.02);
  transition-duration: 0.3s;
}
.js-animations-enabled .strength h3[data-animate=slide-left] {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateX(-80px);
}
.js-animations-enabled .strength h3[data-animate=slide-left].animate-in {
  border-left: 4px solid #007cba;
  padding-left: 20px;
}
.js-animations-enabled .strength h4[data-animate=slide-left] {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateX(-60px);
}
.js-animations-enabled .strength h4[data-animate=slide-left].animate-in {
  border-left: 2px solid #007cba;
  padding-left: 15px;
}
.js-animations-enabled .strength img[data-animate=scale] {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: scale(0.7) rotate(3deg);
}
.js-animations-enabled .strength img[data-animate=scale]:hover {
  transform: scale(1.05) rotate(0deg);
  transition-duration: 0.4s;
}
.js-animations-enabled .strength .strength-cta .strength-cta-text {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: scale(0.8);
}
.js-animations-enabled .strength .strength-cta .strength-button {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(30px);
}
.js-animations-enabled .strength .strength-cta .strength-button a {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  display: inline-block;
}
.js-animations-enabled .strength .strength-cta .strength-button a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 124, 186, 0.3);
  transition-duration: 0.3s;
}

.animate-in {
  opacity: 1 !important;
}
.animate-in.animate-fade-up {
  transform: translateY(0) !important;
}
.animate-in.animate-scale {
  transform: scale(1) !important;
}
.animate-in.animate-slide-left {
  transform: translateX(0) !important;
}
.animate-in.animate-slide-right {
  transform: translateX(0) !important;
}

.js-animations-enabled [data-animate-stagger] .list-item.animate-in,
.js-animations-enabled [data-animate-stagger] .service-item.animate-in,
.js-animations-enabled [data-animate-stagger] .about-item.animate-in,
.js-animations-enabled [data-animate-stagger] .member-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.js-animations-enabled [data-animate-children] .list-item.animate-in,
.js-animations-enabled [data-animate-children] .service-item.animate-in,
.js-animations-enabled [data-animate-children] .about-item.animate-in,
.js-animations-enabled [data-animate-children] .member-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.main-ttl {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}
.main-ttl.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.news .ttl_box {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.news .news-list .list-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.greeting .txt_wrap p.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.greeting .greeting-img.animate-in {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.service .service-item.animate-in {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.about-page .about_table .about-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.about-page .team-heading.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.about-page .member-cols .member-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.about-page .sns_list .list-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.service02 .check_list .list-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service02 .point_list .list-item.animate-in {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.service02 .point_list .list-item.animate-in .dot_list .list-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.service02 .catch h3.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.strength .strength-anchor-link-list li.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.strength .strength-support-list ul li.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.strength h3.animate-in,
.strength h4.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.strength img.animate-in {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.strength .strength-cta-text.animate-in {
  opacity: 1;
  transform: scale(1);
}
.strength .strength-button.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 880px) {
  .js-animations-enabled [data-animate] {
    transition-duration: 0.6s;
  }
  .js-animations-enabled [data-animate][data-animate=fade-up] {
    transform: translateY(30px);
  }
  .js-animations-enabled [data-animate][data-animate=slide-left], .js-animations-enabled [data-animate][data-animate=slide-right] {
    transform: translateX(0);
  }
  .js-animations-enabled .service .service-item:nth-child(odd), .js-animations-enabled .service .service-item:nth-child(even) {
    transform: translateY(30px);
  }
  .js-animations-enabled .about-page .member-cols .member-card {
    transform: translateY(30px) scale(0.98);
  }
  .js-animations-enabled .about-page .member-cols .member-card:hover {
    transform: translateY(-2px) scale(1.01);
  }
  .js-animations-enabled .service02 .point_list .list-item {
    transform: translateY(40px);
  }
  .js-animations-enabled .service02 .point_list .list-item:hover {
    transform: translateY(-5px) scale(1.02);
  }
  .js-animations-enabled .service02 .check_list .list-item {
    transform: translateY(20px) scale(0.98);
  }
  .js-animations-enabled .strength h3[data-animate=slide-left],
.js-animations-enabled .strength h4[data-animate=slide-left] {
    transform: translateY(30px);
  }
  .js-animations-enabled .strength img[data-animate=scale] {
    transform: scale(0.9);
  }
  .js-animations-enabled .strength .strength-anchor-link-list li {
    transform: translateY(20px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-animations-enabled [data-animate],
.animate-in {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-in {
  -webkit-animation: fadeIn 0.8s ease-out;
          animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
  -webkit-animation: fadeInUp 0.8s ease-out;
          animation: fadeInUp 0.8s ease-out;
}

.fade-in-down {
  -webkit-animation: fadeInDown 0.8s ease-out;
          animation: fadeInDown 0.8s ease-out;
}

.fade-in-left {
  -webkit-animation: fadeInLeft 0.8s ease-out;
          animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
  -webkit-animation: fadeInRight 0.8s ease-out;
          animation: fadeInRight 0.8s ease-out;
}

.scale-in {
  -webkit-animation: scaleIn 0.6s ease-out;
          animation: scaleIn 0.6s ease-out;
}

.pulse {
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

.bounce {
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}

.spin {
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

.hover-lift {
  transition: transform var(--transition-medium);
}
.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform var(--transition-medium);
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow var(--transition-medium);
}
.hover-glow:hover {
  box-shadow: var(--shadow-medium);
}

.delay-100 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay-200 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-300 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-400 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-500 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #3b82f6;
  --accent-blue: #0ea5e9;
  --light-blue: #7dd3fc;
  --dark-blue: #1e40af;
  --neutral-white: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #64748b;
  --dark-gray: #1e293b;
  --soft-gray: #f1f5f9;
  --gold-accent: #f59e0b;
  --success-green: #10b981;
  --warning-orange: #f97316;
  --shadow-light: rgba(30, 58, 138, 0.08);
  --shadow-medium: rgba(30, 58, 138, 0.15);
  --shadow-heavy: rgba(30, 58, 138, 0.25);
  --shadow-blue: rgba(59, 130, 246, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  --gradient-light: linear-gradient(135deg, var(--light-gray) 0%, var(--neutral-white) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(14, 165, 233, 0.75) 50%, rgba(59, 130, 246, 0.65) 100%);
  --border-radius: 15px;
  --border-radius-large: 25px;
  --border-color: rgba(30, 58, 138, 0.1);
  --transition-standard: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: -1;
}
.hero-section .hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--neutral-white);
  max-width: 1200px;
  padding: 0 2rem;
}
.hero-section .hero-title {
  margin-bottom: 3.5rem;
}
.hero-section .hero-subtitle {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.9);
}
.hero-section .hero-main-title {
  display: block;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}
@media screen and (max-width: 768px) {
  .hero-section .hero-main-title {
    font-size: 3.4rem;
  }
}
.hero-section .hero-description {
  font-size: 1.9rem;
  line-height: 1.7;
  margin-bottom: 4.5rem;
  opacity: 0.95;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .hero-section .hero-description {
    font-size: 1.6rem;
    margin-bottom: 3.5rem;
  }
}
.hero-section .hero-actions {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-section .hero-cta {
  display: inline-block;
  padding: 2rem 4rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.hero-section .hero-cta.primary {
  background: var(--gradient-primary);
  color: var(--neutral-white);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}
.hero-section .hero-cta.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-section .hero-cta.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}
.hero-section .hero-cta.primary:hover::before {
  opacity: 1;
}
.hero-section .hero-cta.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--neutral-white);
  border: 2px solid rgba(125, 211, 252, 0.4);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.hero-section .hero-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(125, 211, 252, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}
.hero-section .hero-cta span {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero-section .hero-cta {
    padding: 1.6rem 3.2rem;
    font-size: 1.4rem;
  }
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(125, 211, 252, 0.8);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
}
.hero-section .scroll-indicator span {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-section .scroll-arrow {
  width: 2px;
  height: 35px;
  background: linear-gradient(180deg, var(--light-blue) 0%, transparent 100%);
  margin: 0 auto;
  position: relative;
  -webkit-animation: scrollBounce 2.5s infinite;
          animation: scrollBounce 2.5s infinite;
}
.hero-section .scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--light-blue);
  border-bottom: 2px solid var(--light-blue);
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .hero-section {
    height: 85vh;
    min-height: 600px;
    margin-top: 60px;
  }
  .hero-section .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .hero-section .hero-cta {
    width: 100%;
    max-width: 320px;
  }
  .hero-section .scroll-indicator {
    bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .hero-section .hero-main-title {
    font-size: 2.8rem;
  }
  .hero-section .hero-description {
    font-size: 1.4rem;
  }
  .hero-section .hero-actions {
    gap: 1.5rem;
  }
}

.front-page__gallery-sp {
  margin-top: 50px;
}

.gallery-swiper__wrapper {
  transition-timing-function: linear !important;
}

.gallery-swiper__slide {
  max-width: 250px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-swiper__item {
  max-width: 250px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.gallery-swiper__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-swiper-a {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .gallery-swiper__slide {
    width: 200px;
    height: 200px;
  }
  .gallery-swiper__item {
    width: 200px;
    height: 200px;
  }
}
.section-base, .top-service, .greeting, .news {
  position: relative;
  z-index: 10;
  border-radius: 25px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}
.section-base::before, .top-service::before, .greeting::before, .news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}
.section-base .inner, .top-service .inner, .greeting .inner, .news .inner {
  max-width: 152rem;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .section-base .inner, .top-service .inner, .greeting .inner, .news .inner {
    flex-direction: column;
    max-width: 130rem;
  }
}
@media screen and (max-width: 880px) {
  .section-base .inner, .top-service .inner, .greeting .inner, .news .inner {
    width: 95%;
  }
}
@media screen and (max-width: 1024px) {
  .section-base .ttl_box, .top-service .ttl_box, .greeting .ttl_box, .news .ttl_box {
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 880px) {
  .section-base .ttl_box, .top-service .ttl_box, .greeting .ttl_box, .news .ttl_box {
    margin-bottom: 6.8181818182vw;
  }
}
.section-base .main-ttl, .top-service .main-ttl, .greeting .main-ttl, .news .main-ttl {
  font-size: 5.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}
.section-base .main-ttl::before, .top-service .main-ttl::before, .greeting .main-ttl::before, .news .main-ttl::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 4px;
  box-shadow: 0 4px 10px var(--shadow-blue);
}
.section-base .main-ttl::after, .top-service .main-ttl::after, .greeting .main-ttl::after, .news .main-ttl::after {
  content: attr(data-title);
  font-size: 1.7rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 880px) {
  .section-base .main-ttl, .top-service .main-ttl, .greeting .main-ttl, .news .main-ttl {
    font-size: 5.4545454545vw;
  }
  .section-base .main-ttl::before, .top-service .main-ttl::before, .greeting .main-ttl::before, .news .main-ttl::before {
    left: -1rem;
    height: 50px;
    width: 6px;
  }
  .section-base .main-ttl::after, .top-service .main-ttl::after, .greeting .main-ttl::after, .news .main-ttl::after {
    font-size: 3.1818181818vw;
  }
}
@media screen and (max-width: 880px) {
  .section-base, .top-service, .greeting, .news {
    border-radius: 20px;
  }
}

.news {
  margin-top: 11.8rem;
  margin-bottom: 29.2rem;
  background: var(--gradient-primary);
}
.news::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(125, 211, 252, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.news .inner {
  color: var(--neutral-white);
}
.news .main-ttl {
  color: var(--neutral-white);
}
.news .main-ttl::after {
  opacity: 0.85;
  color: var(--light-blue);
}
.news .news-list {
  max-width: 86.6rem;
  width: 57%;
}
@media screen and (max-width: 1024px) {
  .news .news-list {
    width: 100%;
    margin: 0 auto;
    max-width: 130rem;
  }
}
@media screen and (max-width: 880px) {
  .news .news-list {
    max-width: 100%;
  }
}
.news .list-item {
  display: flex;
  padding: 3rem 2.5rem;
  border-bottom: 1px solid rgba(125, 211, 252, 0.2);
  margin-bottom: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.news .list-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(15px);
  box-shadow: 0 15px 35px var(--shadow-blue);
  border-color: var(--light-blue);
}
.news .list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.news .list-item:hover::before {
  height: 70%;
}
.news .list-item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 880px) {
  .news .list-item {
    flex-direction: column;
    padding: 2.5rem;
    border-radius: 12px;
  }
  .news .list-item:hover {
    transform: translateY(-5px);
  }
}
.news .news-date {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  width: 30%;
  font-weight: 600;
  color: var(--light-blue);
  background: rgba(125, 211, 252, 0.15);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(125, 211, 252, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media screen and (max-width: 1024px) {
  .news .news-date {
    width: 45%;
    font-size: 2rem;
  }
}
@media screen and (max-width: 880px) {
  .news .news-date {
    font-size: 3.1818181818vw;
    margin-bottom: 2.8409090909vw;
    width: auto;
    display: inline-block;
  }
}
.news .content_box {
  width: 70%;
  padding-left: 2.5rem;
}
@media screen and (max-width: 880px) {
  .news .content_box {
    width: 100%;
    padding-left: 0;
  }
}
.news .news-title {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-weight: 600;
  color: var(--neutral-white);
}
@media screen and (max-width: 1024px) {
  .news .news-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 880px) {
  .news .news-title {
    font-size: 3.1818181818vw;
  }
}
.news .news-txt p {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 3.2rem;
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 1024px) {
  .news .news-txt p {
    font-size: 2rem;
    line-height: 3.5rem;
  }
}
@media screen and (max-width: 880px) {
  .news .news-txt p {
    font-size: 3.1818181818vw;
    line-height: 4.8863636364vw;
  }
}
.news .list-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 880px) {
  .news {
    margin-top: 0;
    margin-bottom: 22.7272727273vw;
  }
}

.greeting {
  margin-bottom: 24.3rem;
  background: var(--neutral-white);
  border: 1px solid rgba(59, 130, 246, 0.1);
}
.greeting::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 70%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.greeting .inner {
  color: var(--dark-gray);
}
.greeting .main-ttl {
  color: var(--primary-blue);
}
.greeting .main-ttl::after {
  color: var(--medium-gray);
}
.greeting .txt_wrap {
  max-width: 86.6rem;
  width: 57%;
}
@media screen and (max-width: 1024px) {
  .greeting .txt_wrap {
    width: 60%;
  }
}
@media screen and (max-width: 880px) {
  .greeting .txt_wrap {
    width: 100%;
    max-width: 100%;
  }
}
.greeting .txt_wrap p {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 3.6rem;
  margin-bottom: 3rem;
  color: var(--dark-gray);
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .greeting .txt_wrap p {
    font-size: 2rem;
    line-height: 3.9rem;
  }
}
@media screen and (max-width: 880px) {
  .greeting .txt_wrap p {
    font-size: 3.1818181818vw;
    line-height: 4.8863636364vw;
  }
}
.greeting .txt_wrap .tar {
  display: flex;
  margin-bottom: 3.4rem;
  align-items: end;
  flex-direction: column;
}
.greeting .txt_wrap .tar p {
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--primary-blue);
}
.greeting .txt_wrap .link-item {
  max-width: 24rem;
  width: 100%;
  text-align: center;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  line-height: 5.5rem;
  margin: 0 0 0 auto;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 25px var(--shadow-blue);
  overflow: hidden;
}
.greeting .txt_wrap .link-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.greeting .txt_wrap .link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-blue);
}
.greeting .txt_wrap .link-item:hover::before {
  opacity: 1;
}
.greeting .txt_wrap .link-item::after {
  content: "";
  position: absolute;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22right-chevron%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228.895%22%20height%3D%2214.396%22%20viewBox%3D%220%200%208.895%2014.396%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_814%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20814%22%20transform%3D%22translate(0%200)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_657%22%20data-name%3D%22%E3%83%91%E3%82%B9%20657%22%20d%3D%22M1.7%2C14.4%2C0%2C12.7%2C5.5%2C7.2%2C0%2C1.7%2C1.7%2C0%2C8.9%2C7.2Z%22%20fill%3D%22%23ffffff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/contain;
  right: 2.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 1.6rem;
  z-index: 1;
}
@media screen and (max-width: 880px) {
  .greeting .txt_wrap .link-item::after {
    height: 3.4090909091vw;
    width: 2.0454545455vw;
  }
}
.greeting .txt_wrap .link-item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 880px) {
  .greeting .txt_wrap .link-item {
    max-width: 56.8181818182vw;
    line-height: 11.3636363636vw;
    border-radius: 2.2727272727vw;
  }
}
@media screen and (max-width: 880px) {
  .greeting {
    margin-bottom: 22.7272727273vw;
  }
}

.top-service {
  background: var(--gradient-light);
  border: 1px solid rgba(59, 130, 246, 0.1);
}
.top-service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 70%;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.top-service .inner {
  margin-left: auto;
  margin-right: 0;
  max-width: 172rem;
  width: 94.5%;
  color: var(--dark-gray);
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .top-service .inner {
    max-width: 130rem;
    margin: 0 auto;
    width: 90%;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.top-service .ttl_box {
  flex-shrink: 0;
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .top-service .ttl_box {
    width: 100%;
  }
}
.top-service .main-ttl {
  color: var(--primary-blue);
}
.top-service .main-ttl::after {
  color: var(--medium-gray);
}
.top-service .top-service_list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .top-service .top-service_list {
    width: 100%;
    margin-left: 0;
    gap: 3rem 2rem;
  }
}
@media screen and (max-width: 880px) {
  .top-service .top-service_list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.top-service .top-service-item {
  display: flex;
}
@media screen and (max-width: 880px) {
  .top-service {
    margin-bottom: 22.7272727273vw;
  }
}

.top-service-card {
  width: 100%;
  background: var(--neutral-white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 130, 246, 0.08);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.08);
  position: relative;
}
.top-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.top-service-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 35px 70px rgba(30, 58, 138, 0.15);
  border-color: rgba(59, 130, 246, 0.15);
}
.top-service-card:hover::before {
  opacity: 1;
}
.top-service-card:hover .top-service-image img {
  transform: scale(1.1);
}
.top-service-card:hover .top-service-overlay {
  opacity: 1;
}
.top-service-card:hover .top-service-icon {
  transform: translateY(0);
}
.top-service-card:hover .top-service-index::before {
  opacity: 1;
}

.top-service-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.top-service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 880px) {
  .top-service-image {
    height: 200px;
  }
}

.top-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.top-service-icon {
  color: var(--neutral-white);
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-service-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.top-service-content {
  padding: 3.5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 880px) {
  .top-service-content {
    padding: 2.8rem 2.4rem 2.4rem;
  }
}

.top-service-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.top-service-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  border-radius: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
}
.top-service-index::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 880px) {
  .top-service-index {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    border-radius: 16px;
  }
}

.top-service-title-group {
  flex: 1;
}

.top-service-title {
  font-size: 2.4rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-service-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 880px) {
  .top-service-title {
    font-size: 2.2rem;
  }
}

.top-service-subtitle {
  font-size: 1.3rem;
  color: var(--medium-gray);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
@media screen and (max-width: 880px) {
  .top-service-subtitle {
    font-size: 1.2rem;
  }
}

.top-service-text p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--dark-gray);
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-service-text p {
    font-size: 1.7rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 880px) {
  .top-service-text p {
    font-size: 1.5rem;
  }
}

.top-service-footer {
  text-align: center;
}

.top-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 2.8rem;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
  border: none;
}
.top-service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.top-service-btn span, .top-service-btn svg {
  position: relative;
  z-index: 1;
}
.top-service-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}
.top-service-btn:hover::before {
  opacity: 1;
}
.top-service-btn:hover svg {
  transform: translateX(5px) translateY(-5px);
}
@media screen and (max-width: 880px) {
  .top-service-btn {
    padding: 1.4rem 2.4rem;
    font-size: 1.4rem;
  }
}

.greeting-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  aspect-ratio: 201/268;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px var(--shadow-light);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid var(--neutral-white);
  flex: 1;
}
.greeting-img:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 25px 50px var(--shadow-medium);
}
.greeting-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.greeting-txt-right {
  text-align: right;
}

@-webkit-keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  40% {
    transform: translateY(-15px);
    opacity: 1;
  }
  60% {
    transform: translateY(-8px);
    opacity: 0.95;
  }
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  40% {
    transform: translateY(-15px);
    opacity: 1;
  }
  60% {
    transform: translateY(-8px);
    opacity: 0.95;
  }
}
.home {
  background: var(--gradient-light);
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .hero-main-title,
.main-ttl,
.news-title {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.main-visual {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  overflow: hidden;
}
.main-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.3) 0%, transparent 70%);
  z-index: 1;
  -webkit-animation: float 20s ease-in-out infinite;
          animation: float 20s ease-in-out infinite;
}
.main-visual::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
  z-index: 1;
  animation: float 25s ease-in-out infinite reverse;
}
.main-visual .mv-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: var(--neutral-white);
  padding: 2rem;
}
.main-visual .mv-content .mv-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.main-visual .mv-content .mv-title .highlight {
  color: var(--light-blue);
  display: block;
  font-size: 0.8em;
  margin-bottom: 1rem;
}
.main-visual .mv-content .mv-subtitle {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 4rem;
  opacity: 0.9;
}
.main-visual .mv-content .mv-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.main-visual .mv-content .mv-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 3.5rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-large);
  color: var(--neutral-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.6rem;
  transition: var(--transition-standard);
}
.main-visual .mv-content .mv-cta .cta-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.main-visual .mv-content .mv-cta .cta-button.primary {
  background: var(--neutral-white);
  color: var(--primary-blue);
}
.main-visual .mv-content .mv-cta .cta-button.primary:hover {
  background: var(--light-gray);
  transform: translateY(-3px) scale(1.05);
}
@media screen and (max-width: 768px) {
  .main-visual {
    min-height: 80vh;
  }
  .main-visual .mv-content .mv-cta {
    flex-direction: column;
    align-items: center;
  }
  .main-visual .mv-content .mv-cta .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

.cta-section {
  position: relative;
  padding: 12rem 0;
  background: var(--gradient-primary);
  overflow: hidden;
}
.cta-section .cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-section .cta-background .cta-gradient-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  -webkit-animation: float 20s ease-in-out infinite;
          animation: float 20s ease-in-out infinite;
}
.cta-section .cta-background .cta-gradient-orb.cta-orb-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.cta-section .cta-background .cta-gradient-orb.cta-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.cta-section .cta-background .cta-pattern-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}
.cta-section .cta-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .cta-section .cta-container {
    padding: 0 1.5rem;
  }
}
.cta-section .cta-header-section {
  text-align: center;
  margin-bottom: 6rem;
}
.cta-section .cta-header-section .cta-badge {
  display: inline-block;
  margin-bottom: 2rem;
}
.cta-section .cta-header-section .cta-badge span {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--neutral-white);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cta-section .cta-header-section .cta-main-title {
  margin-bottom: 2.5rem;
}
.cta-section .cta-header-section .cta-main-title .title-primary {
  display: block;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--neutral-white);
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.cta-section .cta-header-section .cta-description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cta-section .cta-header-section .cta-description {
    font-size: 1.6rem;
  }
  .cta-section .cta-header-section .cta-description br {
    display: none;
  }
}
.cta-section .cta-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-section .cta-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-large);
  padding: 4rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: var(--transition-standard);
}
.cta-section .cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.cta-section .cta-card.email-card {
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(30, 58, 138, 0.15);
}
.cta-section .cta-card.email-card:hover {
  border-color: rgba(30, 58, 138, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(30, 58, 138, 0.2);
}
.cta-section .cta-card .card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}
.cta-section .cta-card .card-background .card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  -webkit-animation: shine 3s ease-in-out infinite;
          animation: shine 3s ease-in-out infinite;
}
.cta-section .cta-card .card-icon-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}
.cta-section .cta-card .card-icon-wrapper .icon-background {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}
.cta-section .cta-card .card-icon-wrapper .icon-background .icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--neutral-white);
}
.cta-section .cta-card .card-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-section .cta-card .card-content .card-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  line-height: 1.3;
}
.cta-section .cta-card .card-content .contact-info {
  margin-bottom: 2rem;
}
.cta-section .cta-card .card-content .contact-info .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: var(--transition-standard);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
  margin-bottom: 1rem;
}
.cta-section .cta-card .card-content .contact-info .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
}
.cta-section .cta-card .card-content .contact-info .contact-link svg {
  transition: transform var(--transition-standard);
}
.cta-section .cta-card .card-content .contact-info .contact-link:hover svg {
  transform: translate(3px, -3px);
}
.cta-section .cta-card .card-content .contact-info .email-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background: var(--gradient-primary);
  color: var(--neutral-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: var(--transition-standard);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
  margin-bottom: 1rem;
  border: none;
  cursor: pointer;
}
.cta-section .cta-card .card-content .contact-info .email-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}
.cta-section .cta-card .card-content .contact-info .email-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}
.cta-section .cta-card .card-content .contact-info .email-button svg {
  transition: transform var(--transition-standard);
  width: 16px;
  height: 16px;
}
.cta-section .cta-card .card-content .contact-info .email-button:hover svg {
  transform: translate(3px, -3px);
}
.cta-section .cta-card .card-content .contact-info .contact-time {
  display: block;
  font-size: 1.3rem;
  color: var(--medium-gray);
  font-weight: 500;
  margin-top: 0.5rem;
}
.cta-section .cta-card .card-content .card-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--medium-gray);
}
@media screen and (max-width: 768px) {
  .cta-section .cta-card .card-content .card-description br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .cta-section .cta-card {
    padding: 3rem 2rem;
  }
  .cta-section .cta-card .card-content .card-title {
    font-size: 2rem;
  }
  .cta-section .cta-card .card-content .contact-info .contact-link {
    padding: 1.3rem 2.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .cta-section {
    padding: 8rem 0;
  }
  .cta-section .cta-header-section {
    margin-bottom: 4rem;
  }
}

@-webkit-keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(5deg);
  }
  66% {
    transform: translateY(20px) rotate(-3deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(5deg);
  }
  66% {
    transform: translateY(20px) rotate(-3deg);
  }
}
@-webkit-keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
.service-section {
  padding: 12rem 0;
  background: var(--gradient-light);
}
.service-section .section-header {
  text-align: center;
  margin-bottom: 8rem;
}
.service-section .section-header .section-title {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  position: relative;
}
.service-section .section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.service-section .section-header .section-description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}
.service-section .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .service-section .service-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
}
.service-section .service-item {
  background: var(--neutral-white);
  border-radius: var(--border-radius-large);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: var(--transition-standard);
}
.service-section .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-medium);
}
.service-section .service-item .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-white);
  font-size: 3rem;
}
.service-section .service-item .service-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}
.service-section .service-item .service-description {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}
.service-section .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  transition: var(--transition-standard);
}
.service-section .service-item .service-link:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}
@media screen and (max-width: 768px) {
  .service-section {
    padding: 8rem 0;
  }
  .service-section .section-header {
    margin-bottom: 5rem;
  }
  .service-section .service-item {
    padding: 3rem 2rem;
  }
}

.about-page {
  min-height: 100vh;
  background: var(--gradient-light);
}
.about-page .company-overview {
  padding: 12rem 0 8rem;
  background: var(--gradient-light);
}
.about-page .company-overview .about_table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--main-blue);
  border-radius: var(--radius-large);
  padding: 4rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}
@media screen and (max-width: 768px) {
  .about-page .company-overview .about_table {
    padding: 3rem 2rem;
    margin: 0 2rem;
  }
}
.about-page .company-overview .about-item {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem 0;
  transition: var(--transition-medium);
}
.about-page .company-overview .about-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-page .company-overview .about-item:first-child {
  padding-top: 0;
}
.about-page .company-overview .about-item:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--radius-medium);
}
.about-page .company-overview .about-item dt {
  flex: 0 0 180px;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-white);
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .about-page .company-overview .about-item dt {
    flex: 0 0 120px;
    margin-right: 2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .about-page .company-overview .about-item dt {
    flex: 1 1 auto;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.about-page .company-overview .about-item dd {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--text-white);
}
@media screen and (max-width: 768px) {
  .about-page .company-overview .about-item dd {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .about-page .company-overview .about-item {
    flex-direction: column;
  }
}
.about-page .company-overview .sns_list {
  display: flex;
  gap: 2rem;
}
.about-page .company-overview .sns_list .list-item a {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--gradient-secondary);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.4rem;
  transition: var(--transition-medium);
}
.about-page .company-overview .sns_list .list-item a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}
@media screen and (max-width: 480px) {
  .about-page .company-overview .sns_list {
    flex-direction: column;
    gap: 1rem;
  }
}
.about-page .company-overview .map-content {
  max-width: 900px;
  margin: 4rem auto 0;
}
@media screen and (max-width: 768px) {
  .about-page .company-overview .map-content {
    margin: 3rem 2rem 0;
  }
}
.about-page .company-overview .map-content .map-container .map-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}
.about-page .company-overview .map-content .map-container .map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-large);
}
@media screen and (max-width: 768px) {
  .about-page .company-overview .map-content .map-container .map-responsive {
    padding-bottom: 70%;
  }
}
.about-page .team-section {
  padding: 8rem 0;
  background: var(--gradient-primary);
  color: var(--text-white);
}
.about-page .team-section .main-ttl {
  color: var(--text-white);
}
.about-page .team-section .main-ttl::after {
  color: var(--text-muted);
}
.about-page .team-section .team-content {
  max-width: 1200px;
  margin: 0 auto;
}
.about-page .team-section .team-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 6rem 0 4rem;
  text-align: center;
  color: var(--text-white);
  position: relative;
}
.about-page .team-section .team-heading::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--border-muted);
  border-radius: 2px;
}
.about-page .team-section .team-heading:first-of-type {
  margin-top: 4rem;
}
.about-page .team-section .member-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .about-page .team-section .member-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
.about-page .team-section .member-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  padding: 3rem;
  transition: var(--transition-slow);
}
.about-page .team-section .member-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-heavy);
}
.about-page .team-section .member-card .member-prof {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
}
@media screen and (max-width: 480px) {
  .about-page .team-section .member-card .member-prof {
    flex-direction: column;
    text-align: center;
  }
}
.about-page .team-section .member-card .member-title {
  flex: 1;
}
.about-page .team-section .member-card .member-pos {
  margin-bottom: 1rem;
}
.about-page .team-section .member-card .member-pos .member-pos-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.about-page .team-section .member-card .member-pos .member-pos-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.about-page .team-section .member-card .member-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0;
}
.about-page .team-section .member-card .member-image {
  flex: 0 0 130px;
}
.about-page .team-section .member-card .member-image img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid var(--border-light);
}
@media screen and (max-width: 480px) {
  .about-page .team-section .member-card .member-image {
    flex: none;
    align-self: center;
  }
}
.about-page .team-section .member-card .member-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #fff;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .about-page .team-section .member-card {
    padding: 2.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .about-page .page_contents .inner {
    flex-direction: column;
  }
  .about-page .page_contents .inner .ttl_box {
    margin-bottom: 6rem;
  }
}
.about-page .page_contents .inner .main-ttl {
  font-size: 5.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.7rem;
}
@media screen and (max-width: 880px) {
  .about-page .page_contents .inner .main-ttl {
    font-size: 5.4545454545vw;
  }
}
.about-page .page_contents .inner .main-ttl::after {
  content: attr(data-title);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 880px) {
  .about-page .page_contents .inner .main-ttl::after {
    font-size: 2.7272727273vw;
  }
}
.about-page .page_contents .inner .about_table {
  max-width: 86.6rem;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  .about-page .page_contents .inner .about_table {
    max-width: 130rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.c-backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--main-blue);
  z-index: 1000;
}
.c-backToTop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.c-backToTop a svg {
  transform: rotate(-90deg);
  width: 2.4rem;
  height: 2.4rem;
}
.c-backToTop a svg path {
  fill: var(--text-white);
}

.service-page {
  min-height: 100vh;
  background: var(--gradient-light);
}
.service-page .service-overview {
  padding: 12rem 0 8rem;
  background: var(--gradient-light);
}
.service-page .service-overview .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .service-page .service-overview .service-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .service-page .service-overview .service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
}
.service-page .service-overview .service-card {
  background: var(--bg-primary, #ffffff);
  border-radius: var(--radius-large, 20px);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-light, 0 10px 30px rgba(0, 0, 0, 0.08));
  border: 1px solid var(--border-dark, rgba(0, 0, 0, 0.05));
  transition: var(--transition-slow, all 0.4s ease);
  position: relative;
  overflow: hidden;
}
.service-page .service-overview .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary, linear-gradient(90deg, var(--main-blue) 0%, var(--light-blue) 100%));
  border-radius: var(--radius-large, 20px) var(--radius-large, 20px) 0 0;
}
.service-page .service-overview .service-card.primary-service {
  border: 2px solid var(--light-blue, #7dd3fc);
  transform: scale(1.02);
}
.service-page .service-overview .service-card.primary-service::before {
  height: 6px;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}
.service-page .service-overview .service-card.primary-service .service-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.service-page .service-overview .service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium, 0 20px 50px rgba(59, 130, 246, 0.15));
}
.service-page .service-overview .service-card:hover .service-icon {
  transform: scale(1.1);
}
.service-page .service-overview .service-card .service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary, linear-gradient(135deg, var(--main-blue) 0%, var(--light-blue) 100%));
  border-radius: var(--radius-large, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--text-white, #ffffff);
  transition: var(--transition-medium, all 0.3s ease);
}
.service-page .service-overview .service-card .service-icon svg {
  transition: var(--transition-medium, all 0.3s ease);
}
.service-page .service-overview .service-card .service-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--main-blue, #1e3a8a);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.service-page .service-overview .service-card .service-description {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-secondary, #666666);
  margin-bottom: 2rem;
}
.service-page .service-overview .service-card .service-features {
  list-style: none;
}
.service-page .service-overview .service-card .service-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--text-primary, #333333);
}
.service-page .service-overview .service-card .service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--light-blue, #7dd3fc);
  font-weight: bold;
  font-size: 1.2rem;
}
.service-page .service-overview .service-card .service-features li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .service-page .service-overview .service-card {
    padding: 3rem 2rem;
  }
  .service-page .service-overview .service-card .service-title {
    font-size: 2rem;
  }
  .service-page .service-overview .service-card .service-description {
    font-size: 1.4rem;
  }
  .service-page .service-overview .service-card .service-features li {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  .service-page .service-overview .service-card {
    padding: 2.5rem 1.5rem;
  }
  .service-page .service-overview .service-card .service-icon {
    width: 70px;
    height: 70px;
  }
  .service-page .service-overview .service-card .service-title {
    font-size: 1.8rem;
  }
  .service-page .service-overview .service-card .service-description {
    font-size: 1.3rem;
  }
}
.service-page .process-section {
  padding: 8rem 0;
  background: var(--gradient-primary, linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%));
  color: var(--text-white, #ffffff);
  position: relative;
}
.service-page .process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.service-page .process-section .inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service-page .process-section .main-ttl {
  color: var(--text-white, #ffffff);
  text-align: center;
  margin-bottom: 4rem;
}
.service-page .process-section .main-ttl::after {
  color: #fff;
}
.service-page .process-section .process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .service-page .process-section .process-flow {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .service-page .process-section .process-flow {
    gap: 2rem;
  }
}
.service-page .process-section .process-step {
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large, 20px);
  padding: 3rem 2rem;
  transition: var(--transition-medium, all 0.3s ease);
}
.service-page .process-section .process-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.service-page .process-section .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -2rem;
  width: 4rem;
  height: 2px;
  background: var(--border-light, rgba(255, 255, 255, 0.3));
}
@media screen and (max-width: 768px) {
  .service-page .process-section .process-step:not(:last-child)::after {
    display: none;
  }
}
.service-page .process-section .process-step .step-number {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--border-light, rgba(255, 255, 255, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-white, #ffffff);
  margin: 0 auto 2rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: var(--transition-medium, all 0.3s ease);
}
.service-page .process-section .process-step .step-number:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
@media screen and (max-width: 480px) {
  .service-page .process-section .process-step .step-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}
.service-page .process-section .process-step .step-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white, #ffffff);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.service-page .process-section .process-step .step-description {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .service-page .process-section .process-step {
    padding: 2.5rem 1.5rem;
  }
  .service-page .process-section .process-step .step-title {
    font-size: 1.8rem;
  }
  .service-page .process-section .process-step .step-description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .service-page .process-section .process-step {
    padding: 2rem 1rem;
  }
  .service-page .process-section .process-step .step-title {
    font-size: 1.6rem;
  }
  .service-page .process-section .process-step .step-description {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .service-page .process-section {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 480px) {
  .service-page .process-section {
    padding: 4rem 0;
  }
}

.strength-page {
  min-height: 100vh;
  background: var(--hero-bg);
}
.strength-page .strength-hero {
  position: relative;
  overflow: hidden;
}
.strength-page .strength-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 2;
}
.strength-page .strength-hero .subpage-hero-content {
  position: relative;
  z-index: 3;
}
.strength-page .section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
}
@media screen and (max-width: 768px) {
  .strength-page .section-subtitle {
    font-size: var(--font-size-base);
  }
}
.strength-page .strength-overview {
  padding: var(--space-3xl) 0;
  background: var(--hero-bg);
  position: relative;
}
.strength-page .strength-overview::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 30%;
  height: 60%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.strength-page .strength-overview::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 25%;
  height: 40%;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
}
.strength-page .strength-overview .inner {
  position: relative;
  z-index: 2;
}
.strength-page .strength-overview .strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}
@media screen and (max-width: 1024px) {
  .strength-page .strength-overview .strength-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
  }
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
  }
}
.strength-page .strength-overview .strength-card {
  background: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: 0;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.strength-page .strength-overview .strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}
.strength-page .strength-overview .strength-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}
.strength-page .strength-overview .strength-card:hover::before {
  transform: scaleX(1);
}
.strength-page .strength-overview .strength-card:hover .strength-icon {
  transform: scale(1.1) rotate(5deg);
}
.strength-page .strength-overview .strength-card.featured {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}
.strength-page .strength-overview .strength-card.featured::before {
  transform: scaleX(1);
  background: var(--gradient-secondary);
}
.strength-page .strength-overview .strength-card.featured .strength-badge {
  background: var(--primary-blue);
  color: var(--text-white);
}
.strength-page .strength-overview .strength-card.featured .strength-icon.primary {
  background: var(--gradient-primary);
  color: var(--text-white);
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-card:hover {
    transform: translateY(-4px);
  }
}
.strength-page .strength-overview .strength-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-xl) var(--space-md);
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-card-header {
    padding: var(--space-lg) var(--space-lg) var(--space-md);
  }
}
.strength-page .strength-overview .strength-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-large);
  transition: all var(--transition-smooth);
  position: relative;
}
.strength-page .strength-overview .strength-icon.primary {
  background: var(--extra-light-blue);
  color: var(--primary-blue);
}
.strength-page .strength-overview .strength-icon.secondary {
  background: var(--light-gray);
  color: var(--secondary-blue);
}
.strength-page .strength-overview .strength-icon.accent {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-blue);
}
.strength-page .strength-overview .strength-icon.success {
  background: var(--success-100);
  color: var(--success-600);
}
.strength-page .strength-overview .strength-icon.warning {
  background: var(--warning-100);
  color: var(--warning-600);
}
.strength-page .strength-overview .strength-icon.info {
  background: rgba(125, 211, 252, 0.2);
  color: var(--light-blue);
}
.strength-page .strength-overview .strength-icon svg {
  transition: transform var(--transition-standard);
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-icon {
    width: 60px;
    height: 60px;
  }
  .strength-page .strength-overview .strength-icon svg {
    width: 32px;
    height: 32px;
  }
}
.strength-page .strength-overview .strength-badge {
  background: var(--soft-gray);
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border-color);
  transition: all var(--transition-standard);
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-badge {
    padding: 0.5rem 1.2rem;
    font-size: 1.1rem;
  }
}
.strength-page .strength-overview .strength-card-content {
  padding: 0 var(--space-xl) var(--space-xl);
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-card-content {
    padding: 0 var(--space-lg) var(--space-lg);
  }
}
.strength-page .strength-overview .strength-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
  }
}
.strength-page .strength-overview .strength-description {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-description {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
  }
}
.strength-page .strength-overview .strength-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.strength-page .strength-overview .strength-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}
.strength-page .strength-overview .strength-features li:last-child {
  margin-bottom: 0;
}
.strength-page .strength-overview .strength-features li svg {
  flex-shrink: 0;
  color: var(--color-success);
  stroke-width: 2.5;
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview .strength-features li {
    font-size: var(--font-size-xs);
    gap: 0.8rem;
  }
  .strength-page .strength-overview .strength-features li svg {
    width: 14px;
    height: 14px;
  }
}
.strength-page .achievement-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  position: relative;
}
.strength-page .achievement-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(30, 58, 138, 0.02) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.02) 0%, transparent 50%);
  z-index: 1;
}
.strength-page .achievement-section .inner {
  position: relative;
  z-index: 2;
}
.strength-page .achievement-section .achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
  }
}
@media screen and (max-width: 480px) {
  .strength-page .achievement-section .achievement-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}
.strength-page .achievement-section .achievement-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--card-bg);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.strength-page .achievement-section .achievement-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gradient-light);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 1;
}
.strength-page .achievement-section .achievement-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.strength-page .achievement-section .achievement-item:hover::before {
  opacity: 1;
}
.strength-page .achievement-section .achievement-item:hover .achievement-icon {
  transform: scale(1.2);
  color: var(--primary-blue);
}
.strength-page .achievement-section .achievement-item:hover .achievement-number {
  color: var(--primary-blue);
}
.strength-page .achievement-section .achievement-item > * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .achievement-item {
    padding: var(--space-lg);
  }
}
.strength-page .achievement-section .achievement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--extra-light-blue);
  border-radius: var(--radius-large);
  color: var(--secondary-blue);
  transition: all var(--transition-smooth);
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .achievement-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-sm);
  }
  .strength-page .achievement-section .achievement-icon svg {
    width: 24px;
    height: 24px;
  }
}
.strength-page .achievement-section .achievement-number {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1;
  display: block;
  transition: color var(--transition-standard);
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .achievement-number {
    font-size: var(--font-size-4xl);
  }
}
@media screen and (max-width: 480px) {
  .strength-page .achievement-section .achievement-number {
    font-size: var(--font-size-3xl);
  }
}
.strength-page .achievement-section .achievement-label {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .achievement-label {
    font-size: var(--font-size-sm);
  }
}
.strength-page .achievement-section .achievement-suffix {
  display: inline;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--accent-blue);
  margin-left: 0.2rem;
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .achievement-suffix {
    font-size: var(--font-size-2xl);
  }
}
.strength-page .achievement-section .achievement-details {
  margin-top: var(--space-3xl);
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .achievement-details {
    margin-top: var(--space-2xl);
  }
}
.strength-page .achievement-section .achievement-timeline {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: var(--space-2xl);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .achievement-timeline {
    padding: var(--space-xl);
  }
}
.strength-page .achievement-section .timeline-title {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  position: relative;
}
.strength-page .achievement-section .timeline-title::after {
  content: "";
  position: absolute;
  bottom: -var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .timeline-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-lg);
  }
}
.strength-page .achievement-section .timeline-items {
  position: relative;
}
.strength-page .achievement-section .timeline-items::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .timeline-items::before {
    left: 40px;
  }
}
.strength-page .achievement-section .timeline-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
}
.strength-page .achievement-section .timeline-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .timeline-item {
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }
}
.strength-page .achievement-section .timeline-year {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  background: var(--extra-light-blue);
  padding: var(--space-sm) var(--space-xs);
  border-radius: var(--radius-medium);
  position: relative;
  z-index: 2;
}
.strength-page .achievement-section .timeline-year::after {
  content: "";
  position: absolute;
  right: -var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .timeline-year::after {
    right: -var(--space-md);
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .timeline-year {
    width: 60px;
    font-size: var(--font-size-base);
    padding: 0.6rem 0.4rem;
  }
}
.strength-page .achievement-section .timeline-content {
  flex: 1;
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
}
@media screen and (max-width: 768px) {
  .strength-page .achievement-section .timeline-content {
    font-size: var(--font-size-sm);
  }
}
@-webkit-keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.strength-page [data-animate=scale] {
  -webkit-animation: fadeInScale 0.6s ease-out;
          animation: fadeInScale 0.6s ease-out;
}
@media screen and (max-width: 1024px) {
  .strength-page .strength-overview {
    padding: var(--space-2xl) 0;
  }
  .strength-page .achievement-section {
    padding: var(--space-2xl) 0;
  }
}
@media screen and (max-width: 768px) {
  .strength-page .strength-overview {
    padding: var(--space-xl) 0;
  }
  .strength-page .achievement-section {
    padding: var(--space-xl) 0;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .strength-page .strength-title,
.strength-page .achievement-number,
.strength-page .timeline-title {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media (prefers-reduced-motion: reduce) {
  .strength-page .strength-card,
.strength-page .achievement-item,
.strength-page .strength-icon {
    transition: none;
  }
  .strength-page .strength-card:hover,
.strength-page .achievement-item:hover {
    transform: none;
  }
  .strength-page [data-animate=scale] {
    -webkit-animation: none;
            animation: none;
  }
}

.contact-page {
  min-height: 100vh;
  background: var(--hero-bg);
}
.contact-page .contact-hero {
  position: relative;
  overflow: hidden;
}
.contact-page .contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 2;
}
.contact-page .contact-hero .subpage-hero-content {
  position: relative;
  z-index: 3;
}
.contact-page .section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
}
@media screen and (max-width: 768px) {
  .contact-page .section-subtitle {
    font-size: var(--font-size-base);
  }
}
.contact-page .contact-form-section {
  padding: var(--space-3xl) 0;
  background: var(--hero-bg);
  position: relative;
}
.contact-page .contact-form-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 30%;
  height: 60%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.contact-page .contact-form-section::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 25%;
  height: 40%;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
}
.contact-page .contact-form-section .inner {
  position: relative;
  z-index: 2;
}
.contact-page .contact-form-container {
  margin-top: var(--space-3xl);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form-container {
    margin-top: var(--space-2xl);
  }
}
.contact-page .contact-form-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .contact-page .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}
.contact-page .contact-form-content {
  background: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: var(--space-3xl);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.contact-page .contact-form-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form-content {
    padding: var(--space-2xl) var(--space-xl);
  }
}
.contact-page .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.contact-page .wpcf7 .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: 0;
  position: relative;
}
.contact-page .wpcf7 .form-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: -var(--space-sm);
  right: -var(--space-sm);
  bottom: 0;
  background: rgba(59, 130, 246, 0.02);
  border-radius: var(--radius-medium);
  opacity: 0;
  transition: opacity var(--transition-standard);
  z-index: 0;
}
.contact-page .wpcf7 .form-group:focus-within::before {
  opacity: 1;
}
.contact-page .wpcf7 .form-group > * {
  position: relative;
  z-index: 1;
}
.contact-page .wpcf7 label {
  display: block;
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-xs);
  border-left: 3px solid var(--primary-blue);
  padding-left: var(--space-sm);
}
@media screen and (max-width: 768px) {
  .contact-page .wpcf7 label {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
  }
}
.contact-page .wpcf7 .required-mark {
  color: var(--danger-500);
  font-weight: var(--font-weight-bold);
  margin-left: 0.2rem;
}
.contact-page .wpcf7 input[type=text],
.contact-page .wpcf7 input[type=email],
.contact-page .wpcf7 textarea,
.contact-page .wpcf7 .form-control {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  border: 3px solid var(--border-color);
  border-radius: var(--radius-large);
  font-size: var(--font-size-base);
  font-family: inherit;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all var(--transition-standard);
  outline: none;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}
.contact-page .wpcf7 input[type=text]::-moz-placeholder, .contact-page .wpcf7 input[type=email]::-moz-placeholder, .contact-page .wpcf7 textarea::-moz-placeholder, .contact-page .wpcf7 .form-control::-moz-placeholder {
  color: var(--text-placeholder);
  font-style: italic;
  opacity: 0.7;
}
.contact-page .wpcf7 input[type=text]::placeholder,
.contact-page .wpcf7 input[type=email]::placeholder,
.contact-page .wpcf7 textarea::placeholder,
.contact-page .wpcf7 .form-control::placeholder {
  color: var(--text-placeholder);
  font-style: italic;
  opacity: 0.7;
}
.contact-page .wpcf7 input[type=text]:focus,
.contact-page .wpcf7 input[type=email]:focus,
.contact-page .wpcf7 textarea:focus,
.contact-page .wpcf7 .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: var(--card-bg);
}
.contact-page .wpcf7 input[type=text]:hover:not(:focus),
.contact-page .wpcf7 input[type=email]:hover:not(:focus),
.contact-page .wpcf7 textarea:hover:not(:focus),
.contact-page .wpcf7 .form-control:hover:not(:focus) {
  border-color: var(--secondary-blue);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.contact-page .wpcf7 input[type=text].wpcf7-not-valid,
.contact-page .wpcf7 input[type=email].wpcf7-not-valid,
.contact-page .wpcf7 textarea.wpcf7-not-valid,
.contact-page .wpcf7 .form-control.wpcf7-not-valid {
  border-color: var(--danger-500);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15), 0 2px 8px rgba(239, 68, 68, 0.1);
  background: rgba(239, 68, 68, 0.02);
}
.contact-page .wpcf7 input[type=text].wpcf7-not-valid:focus,
.contact-page .wpcf7 input[type=email].wpcf7-not-valid:focus,
.contact-page .wpcf7 textarea.wpcf7-not-valid:focus,
.contact-page .wpcf7 .form-control.wpcf7-not-valid:focus {
  border-color: var(--danger-500);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2), 0 4px 12px rgba(239, 68, 68, 0.15);
}
@media screen and (max-width: 768px) {
  .contact-page .wpcf7 input[type=text],
.contact-page .wpcf7 input[type=email],
.contact-page .wpcf7 textarea,
.contact-page .wpcf7 .form-control {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-sm);
    border-width: 2px;
  }
}
.contact-page .wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
  line-height: var(--line-height-relaxed);
}
@media screen and (max-width: 768px) {
  .contact-page .wpcf7 textarea {
    min-height: 120px;
  }
}
.contact-page .wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.contact-page .wpcf7 .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-large);
  pointer-events: none;
  transition: all var(--transition-standard);
}
.contact-page .wpcf7 .privacy-notice {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background: var(--extra-light-blue);
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-light);
}
.contact-page .wpcf7 .privacy-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  margin-bottom: 0;
}
.contact-page .wpcf7 .privacy-label input[type=checkbox] {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary-blue);
}
@media screen and (max-width: 768px) {
  .contact-page .wpcf7 .privacy-label input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
}
.contact-page .wpcf7 .privacy-label .privacy-text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}
.contact-page .wpcf7 .privacy-label .privacy-text a {
  color: var(--primary-blue);
  text-decoration: underline;
}
.contact-page .wpcf7 .privacy-label .privacy-text a:hover {
  color: var(--secondary-blue);
}
.contact-page .wpcf7 .form-submit {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}
@media screen and (max-width: 768px) {
  .contact-page .wpcf7 .form-submit {
    margin-top: var(--space-md);
  }
}
.contact-page .wpcf7 input[type=submit],
.contact-page .wpcf7 .submit-button {
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  padding: var(--space-lg) var(--space-3xl);
  border-radius: var(--radius-medium);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-standard);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.025em;
  min-width: 200px;
}
.contact-page .wpcf7 input[type=submit]::before,
.contact-page .wpcf7 .submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-smooth);
}
.contact-page .wpcf7 input[type=submit]:hover,
.contact-page .wpcf7 .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}
.contact-page .wpcf7 input[type=submit]:hover::before,
.contact-page .wpcf7 .submit-button:hover::before {
  left: 100%;
}
.contact-page .wpcf7 input[type=submit]:active,
.contact-page .wpcf7 .submit-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-medium);
}
.contact-page .wpcf7 input[type=submit]:disabled,
.contact-page .wpcf7 .submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.contact-page .wpcf7 input[type=submit]:disabled:hover,
.contact-page .wpcf7 .submit-button:disabled:hover {
  transform: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .contact-page .wpcf7 input[type=submit],
.contact-page .wpcf7 .submit-button {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
    width: 100%;
    min-width: auto;
  }
}
.contact-page .wpcf7 .wpcf7-not-valid-tip {
  color: var(--danger-500);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.contact-page .wpcf7 .wpcf7-not-valid-tip::before {
  content: "⚠";
  font-size: var(--font-size-base);
}
.contact-page .wpcf7 .wpcf7-response-output {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-medium);
  font-weight: var(--font-weight-medium);
}
.contact-page .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: var(--success-100);
  color: var(--success-700);
  border: 1px solid var(--success-200);
}
.contact-page .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok::before {
  content: "✓ ";
  font-weight: var(--font-weight-bold);
  color: var(--success-600);
}
.contact-page .wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .contact-page .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: var(--danger-100);
  color: var(--danger-700);
  border: 1px solid var(--danger-200);
}
.contact-page .wpcf7 .wpcf7-response-output.wpcf7-validation-errors::before, .contact-page .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng::before {
  content: "⚠ ";
  font-weight: var(--font-weight-bold);
  color: var(--danger-600);
}
.contact-page .wpcf7 .wpcf7-spinner {
  margin-left: var(--space-sm);
  vertical-align: middle;
}
.contact-page .contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
@media screen and (max-width: 1024px) {
  .contact-page .contact-info-sidebar {
    grid-column: 1;
    grid-row: 1;
  }
}
.contact-page .contact-info-card {
  background: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: var(--space-2xl);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-info-card {
    padding: var(--space-xl);
  }
}
.contact-page .contact-info-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-info-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
  }
}
.contact-page .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.contact-page .contact-info-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-info-item {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
}
.contact-page .contact-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--extra-light-blue);
  border-radius: var(--radius-medium);
  color: var(--primary-blue);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-info-icon {
    width: 36px;
    height: 36px;
  }
  .contact-page .contact-info-icon svg {
    width: 18px;
    height: 18px;
  }
}
.contact-page .contact-info-content {
  flex: 1;
}
.contact-page .contact-info-content strong {
  display: block;
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-base);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-info-content strong {
    font-size: var(--font-size-sm);
  }
}
.contact-page .contact-info-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-info-content p {
    font-size: var(--font-size-xs);
  }
}
.contact-page .line-qr-section {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, #00B900 0%, #00A000 100%);
  border-radius: var(--radius-large);
  box-shadow: 0 8px 25px rgba(0, 185, 0, 0.2), 0 4px 10px rgba(0, 185, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.contact-page .line-qr-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, -20px) rotate(180deg);
  }
}
@media screen and (max-width: 768px) {
  .contact-page .line-qr-section {
    padding: var(--space-lg);
    margin-top: var(--space-lg);
  }
}
.contact-page .line-qr-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .contact-page .line-qr-header {
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
  }
}
.contact-page .line-qr-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-medium);
  color: white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.contact-page .line-qr-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  .contact-page .line-qr-icon {
    width: 40px;
    height: 40px;
  }
  .contact-page .line-qr-icon svg {
    width: 20px;
    height: 20px;
  }
}
.contact-page .line-qr-title {
  flex: 1;
}
.contact-page .line-qr-title strong {
  display: block;
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .contact-page .line-qr-title strong {
    font-size: var(--font-size-base);
  }
}
.contact-page .line-qr-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .contact-page .line-qr-title p {
    font-size: var(--font-size-xs);
  }
}
.contact-page .line-qr-code {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .contact-page .line-qr-code {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
}
.contact-page .qr-image-container {
  flex-shrink: 0;
  position: relative;
}
.contact-page .qr-image-container::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: white;
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.contact-page .qr-image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-small);
  position: relative;
  z-index: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  .contact-page .qr-image {
    width: 100px;
    height: 100px;
  }
}
.contact-page .qr-instructions {
  flex: 1;
}
.contact-page .qr-instructions p {
  margin: 0 0 var(--space-md) 0;
  color: white;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .contact-page .qr-instructions p {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-sm);
  }
}
.contact-page .line-add-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-medium);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  transition: all var(--transition-standard);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.contact-page .line-add-button::before {
  content: "📱";
  margin-right: var(--space-xs);
}
.contact-page .line-add-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.contact-page .line-add-button:active {
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .contact-page .line-add-button {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
    width: auto;
    justify-content: center;
  }
}
.contact-page .contact-cta-card {
  background: var(--gradient-light);
  border-radius: var(--card-border-radius);
  padding: var(--space-2xl);
  border: 1px solid var(--card-border);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-cta-card {
    padding: var(--space-xl);
  }
}
.contact-page .contact-cta-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-cta-title {
    font-size: var(--font-size-lg);
  }
}
.contact-page .contact-cta-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-cta-description {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
  }
}
.contact-page .contact-cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--primary-blue);
  color: var(--text-white);
  text-decoration: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-medium);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-standard);
  font-size: var(--font-size-base);
}
.contact-page .contact-cta-button:hover {
  background: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.contact-page .contact-cta-button:active {
  transform: translateY(0);
}
.contact-page .contact-cta-button svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-cta-button {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .contact-page .contact-form-section {
    padding: var(--space-2xl) 0;
  }
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form-section {
    padding: var(--space-xl) 0;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .contact-page .contact-info-title,
.contact-page .contact-cta-title,
.contact-page .wpcf7 label {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-page .contact-form-content,
.contact-page .contact-info-card,
.contact-page .contact-cta-card,
.contact-page .wpcf7 input,
.contact-page .wpcf7 textarea,
.contact-page .contact-cta-button,
.contact-page .line-qr-section {
    transition: none;
  }
  .contact-page .wpcf7 input[type=submit]:hover,
.contact-page .contact-cta-button:hover,
.contact-page .line-add-button:hover {
    transform: none;
  }
  .contact-page .line-qr-section::before {
    -webkit-animation: none;
            animation: none;
  }
}
.contact-page .contact-cta-button:focus-visible,
.contact-page .wpcf7 input:focus-visible,
.contact-page .wpcf7 textarea:focus-visible,
.contact-page .wpcf7 input[type=submit]:focus-visible,
.contact-page .line-add-button:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}
@media print {
  .contact-page .contact-form-section {
    background: white;
  }
  .contact-page .contact-form-section::before, .contact-page .contact-form-section::after {
    display: none;
  }
  .contact-page .contact-form-content,
.contact-page .contact-info-card,
.contact-page .contact-cta-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  .contact-page .contact-cta-button,
.contact-page .line-add-button {
    background: #333 !important;
    color: white !important;
  }
  .contact-page .line-qr-section {
    background: #ddd !important;
  }
  .contact-page .line-qr-section::before {
    display: none;
  }
  .contact-page .line-qr-title strong,
.contact-page .line-qr-title p,
.contact-page .qr-instructions p {
    color: #333 !important;
  }
}

.privacy-page {
  background: var(--hero-bg);
  min-height: 100vh;
}
.privacy-page .privacy-hero {
  position: relative;
  overflow: hidden;
}
.privacy-page .privacy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 2;
}
.privacy-page .privacy-hero .subpage-hero-content {
  position: relative;
  z-index: 3;
}
.privacy-page .privacy-intro-section {
  padding: var(--space-3xl) 0;
  background: var(--hero-bg);
  position: relative;
}
.privacy-page .privacy-intro-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.privacy-page .privacy-intro-section .inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-intro-section {
    padding: var(--space-2xl) 0;
  }
}
.privacy-page .privacy-intro-content {
  margin-top: var(--space-2xl);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-intro-content {
    margin-top: var(--space-xl);
  }
}
.privacy-page .privacy-intro-text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-intro-text {
    font-size: var(--font-size-base);
  }
}
.privacy-page .privacy-details-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  position: relative;
}
.privacy-page .privacy-details-section::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 30%;
  height: 60%;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
}
.privacy-page .privacy-details-section .inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-details-section {
    padding: var(--space-2xl) 0;
  }
}
.privacy-page .privacy-item {
  background: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.privacy-page .privacy-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.privacy-page .privacy-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-item {
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
}
.privacy-page .privacy-item-title {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-item-title {
    font-size: var(--font-size-lg);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }
}
.privacy-page .privacy-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: var(--radius-large);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-number {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-base);
  }
}
.privacy-page .privacy-item-content {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}
.privacy-page .privacy-item-content p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
}
.privacy-page .privacy-item-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-item-content p {
    font-size: var(--font-size-sm);
  }
}
.privacy-page .privacy-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0 0;
}
.privacy-page .privacy-list li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}
.privacy-page .privacy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-blue);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}
.privacy-page .privacy-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-list li {
    font-size: var(--font-size-sm);
    padding-left: var(--space-lg);
  }
  .privacy-page .privacy-list li::before {
    font-size: var(--font-size-base);
  }
}
.privacy-page .privacy-contact-section {
  padding: var(--space-3xl) 0;
  background: var(--extra-light-blue);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-contact-section {
    padding: var(--space-2xl) 0;
  }
}
.privacy-page .privacy-contact-card {
  background: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: var(--space-3xl);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.privacy-page .privacy-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-contact-card {
    padding: var(--space-2xl);
  }
}
.privacy-page .privacy-contact-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2xl);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-contact-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
  }
}
.privacy-page .privacy-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-contact-info {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}
.privacy-page .privacy-contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: var(--extra-light-blue);
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-light);
}
.privacy-page .privacy-contact-item strong {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.privacy-page .privacy-contact-item span {
  font-size: var(--font-size-base);
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-contact-item span {
    font-size: var(--font-size-sm);
  }
}
.privacy-page .privacy-revision-section {
  padding: var(--space-3xl) 0;
  background: var(--hero-bg);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-revision-section {
    padding: var(--space-2xl) 0;
  }
}
.privacy-page .privacy-revision-card {
  background: var(--card-bg);
  border-radius: var(--card-border-radius);
  padding: var(--space-3xl);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.privacy-page .privacy-revision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-revision-card {
    padding: var(--space-2xl);
  }
}
.privacy-page .privacy-revision-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-revision-title {
    font-size: var(--font-size-lg);
  }
}
.privacy-page .privacy-revision-text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-revision-text {
    font-size: var(--font-size-sm);
  }
}
.privacy-page .privacy-revision-date {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin: 0;
}
.privacy-page .privacy-revision-date strong {
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-revision-date {
    font-size: var(--font-size-xs);
  }
}
@media screen and (max-width: 1024px) {
  .privacy-page .privacy-intro-section,
.privacy-page .privacy-details-section,
.privacy-page .privacy-contact-section,
.privacy-page .privacy-revision-section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}
@media screen and (max-width: 768px) {
  .privacy-page .privacy-intro-section,
.privacy-page .privacy-details-section,
.privacy-page .privacy-contact-section,
.privacy-page .privacy-revision-section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .privacy-page .privacy-item-title,
.privacy-page .privacy-contact-title,
.privacy-page .privacy-revision-title {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media (prefers-reduced-motion: reduce) {
  .privacy-page .privacy-item,
.privacy-page .privacy-contact-card,
.privacy-page .privacy-revision-card {
    transition: none;
  }
}
.privacy-page .privacy-contact-item:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}
@media print {
  .privacy-page .privacy-page {
    background: white;
  }
  .privacy-page .privacy-page .privacy-intro-section::before,
.privacy-page .privacy-page .privacy-details-section::after {
    display: none;
  }
  .privacy-page .privacy-item,
.privacy-page .privacy-contact-card,
.privacy-page .privacy-revision-card {
    box-shadow: none;
    border: 1px solid #ddd;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
  .privacy-page .privacy-number {
    background: #333 !important;
    color: white !important;
  }
  .privacy-page .privacy-contact-item {
    background: #f8f9fa !important;
  }
}
.privacy-page .privacy-item {
  opacity: 0;
  transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease-out forwards;
          animation: fadeInUp 0.6s ease-out forwards;
}
.privacy-page .privacy-item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.privacy-page .privacy-item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.privacy-page .privacy-item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.privacy-page .privacy-item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.privacy-page .privacy-item:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.privacy-page .privacy-item:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.privacy-page .privacy-item:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.privacy-page .privacy-item:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.privacy-page .privacy-item:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.privacy-page .privacy-item:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.privacy-page .privacy-item {
  transition: all var(--transition-standard);
}
.privacy-page .privacy-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}
.privacy-page .privacy-contact-item {
  transition: all var(--transition-standard);
}
.privacy-page .privacy-contact-item:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.patent-attorney-page {
  min-height: 100vh;
  background: var(--gradient-light);
}
.patent-attorney-page .team-section {
  padding: 8rem 0;
  background: var(--gradient-primary);
  color: var(--text-white);
}
.patent-attorney-page .team-section .main-ttl {
  color: var(--text-white);
}
.patent-attorney-page .team-section .main-ttl::after {
  color: var(--text-muted);
}
.patent-attorney-page .team-section .team-content {
  max-width: 1200px;
  margin: 0 auto;
}
.patent-attorney-page .team-section .team-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 6rem 0 4rem;
  text-align: center;
  color: var(--text-white);
  position: relative;
}
.patent-attorney-page .team-section .team-heading::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--border-muted);
  border-radius: 2px;
}
.patent-attorney-page .team-section .team-heading:first-of-type {
  margin-top: 4rem;
}
.patent-attorney-page .team-section .member-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .patent-attorney-page .team-section .member-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
.patent-attorney-page .team-section .member-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  padding: 3rem;
  transition: var(--transition-slow);
}
.patent-attorney-page .team-section .member-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-heavy);
}
.patent-attorney-page .team-section .member-card .member-prof {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
}
@media screen and (max-width: 480px) {
  .patent-attorney-page .team-section .member-card .member-prof {
    flex-direction: column;
    text-align: center;
  }
}
.patent-attorney-page .team-section .member-card .member-title {
  flex: 1;
}
.patent-attorney-page .team-section .member-card .member-pos {
  margin-bottom: 1rem;
}
.patent-attorney-page .team-section .member-card .member-pos .member-pos-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.patent-attorney-page .team-section .member-card .member-pos .member-pos-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.patent-attorney-page .team-section .member-card .member-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0;
}
.patent-attorney-page .team-section .member-card .member-image {
  flex: 0 0 130px;
}
.patent-attorney-page .team-section .member-card .member-image img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid var(--border-light);
}
@media screen and (max-width: 480px) {
  .patent-attorney-page .team-section .member-card .member-image {
    flex: none;
    align-self: center;
  }
}
.patent-attorney-page .team-section .member-card .member-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #fff;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .patent-attorney-page .team-section .member-card {
    padding: 2.5rem;
  }
}
.patent-attorney-page .subpage-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.patent-attorney-page .subpage-hero .subpage-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.patent-attorney-page .subpage-hero .subpage-hero-bg .subpage-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(35, 122, 252, 0.8), rgba(78, 155, 255, 0.8));
  z-index: 2;
}
.patent-attorney-page .subpage-hero .subpage-hero-bg .subpage-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.patent-attorney-page .subpage-hero .subpage-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-white);
}
.patent-attorney-page .subpage-hero .subpage-hero-content .subpage-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.patent-attorney-page .subpage-hero .subpage-hero-content .subpage-hero-title {
  margin-bottom: 2rem;
}
.patent-attorney-page .subpage-hero .subpage-hero-content .subpage-hero-title .subpage-hero-subtitle {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.patent-attorney-page .subpage-hero .subpage-hero-content .subpage-hero-title .subpage-hero-main-title {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .patent-attorney-page .subpage-hero .subpage-hero-content .subpage-hero-title .subpage-hero-main-title {
    font-size: 3.5rem;
  }
}
.patent-attorney-page .subpage-hero .subpage-hero-content .subpage-hero-description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .patent-attorney-page .subpage-hero .subpage-hero-content .subpage-hero-description {
    font-size: 1.6rem;
  }
}
.patent-attorney-page .subpage-hero .subpage-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-white);
  text-align: center;
}
.patent-attorney-page .subpage-hero .subpage-scroll-indicator span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.patent-attorney-page .subpage-hero .subpage-scroll-indicator .scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--text-white);
  margin: 0 auto;
  position: relative;
}
.patent-attorney-page .subpage-hero .subpage-scroll-indicator .scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--text-white);
}