@charset "UTF-8";
@keyframes fadeInUp {
  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);
  }
}
@keyframes fadeInLeft {
  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);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kineticText {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  50% {
    opacity: 0.5;
    transform: translateY(10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}
@keyframes gearRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes countUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-down.animate {
  opacity: 1;
  transform: translateY(0);
}

.kinetic-text {
  display: inline-block;
  animation: kineticText 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.kinetic-text:nth-child(1) {
  animation-delay: 0.1s;
}
.kinetic-text:nth-child(2) {
  animation-delay: 0.2s;
}
.kinetic-text:nth-child(3) {
  animation-delay: 0.3s;
}
.kinetic-text:nth-child(4) {
  animation-delay: 0.4s;
}
.kinetic-text:nth-child(5) {
  animation-delay: 0.5s;
}
.kinetic-text:nth-child(6) {
  animation-delay: 0.6s;
}
.kinetic-text:nth-child(7) {
  animation-delay: 0.7s;
}
.kinetic-text:nth-child(8) {
  animation-delay: 0.8s;
}
.kinetic-text:nth-child(9) {
  animation-delay: 0.9s;
}
.kinetic-text:nth-child(10) {
  animation-delay: 1s;
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}
.float-animation.float-delay-1 {
  animation-delay: 0s;
}
.float-animation.float-delay-2 {
  animation-delay: 2s;
}
.float-animation.float-delay-3 {
  animation-delay: 4s;
}

.gear-animation .gear {
  animation: gearRotate 10s linear infinite;
}
.gear-animation .gear.gear-1 {
  animation-duration: 8s;
}
.gear-animation .gear.gear-2 {
  animation-duration: 12s;
  animation-direction: reverse;
}
.gear-animation .gear.gear-3 {
  animation-duration: 10s;
}

.count-up-animation {
  animation: countUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-scale:hover {
  transform: scale(1.05);
}

.loading-animation .loading-circle {
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  animation: loadingCircle 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes loadingCircle {
  0% {
    stroke-dashoffset: 251.2;
  }
  50% {
    stroke-dashoffset: 125.6;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-trigger.in-view {
  opacity: 1;
  transform: translateY(0);
}

.text-reveal {
  overflow: hidden;
}
.text-reveal .text-line {
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.text-reveal .text-line.reveal {
  transform: translateY(0);
}

.particle-effect {
  position: relative;
  overflow: hidden;
}
.particle-effect .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: rgba(0, 153, 70, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}
.particle-effect .particle:nth-child(1) {
  left: 58%;
  animation-delay: 1s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(2) {
  left: 8%;
  animation-delay: 5s;
  animation-duration: 6s;
}
.particle-effect .particle:nth-child(3) {
  left: 60%;
  animation-delay: 7s;
  animation-duration: 5s;
}
.particle-effect .particle:nth-child(4) {
  left: 91%;
  animation-delay: 3s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(5) {
  left: 7%;
  animation-delay: 3s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(6) {
  left: 26%;
  animation-delay: 1s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(7) {
  left: 48%;
  animation-delay: 5s;
  animation-duration: 8s;
}
.particle-effect .particle:nth-child(8) {
  left: 26%;
  animation-delay: 2s;
  animation-duration: 8s;
}
.particle-effect .particle:nth-child(9) {
  left: 39%;
  animation-delay: 8s;
  animation-duration: 6s;
}
.particle-effect .particle:nth-child(10) {
  left: 91%;
  animation-delay: 5s;
  animation-duration: 6s;
}
.particle-effect .particle:nth-child(11) {
  left: 38%;
  animation-delay: 5s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(12) {
  left: 2%;
  animation-delay: 8s;
  animation-duration: 5s;
}
.particle-effect .particle:nth-child(13) {
  left: 82%;
  animation-delay: 2s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(14) {
  left: 75%;
  animation-delay: 8s;
  animation-duration: 6s;
}
.particle-effect .particle:nth-child(15) {
  left: 11%;
  animation-delay: 3s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(16) {
  left: 27%;
  animation-delay: 4s;
  animation-duration: 5s;
}
.particle-effect .particle:nth-child(17) {
  left: 16%;
  animation-delay: 4s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(18) {
  left: 88%;
  animation-delay: 8s;
  animation-duration: 8s;
}
.particle-effect .particle:nth-child(19) {
  left: 65%;
  animation-delay: 6s;
  animation-duration: 7s;
}
.particle-effect .particle:nth-child(20) {
  left: 70%;
  animation-delay: 3s;
  animation-duration: 6s;
}

.gradient-animation {
  background: linear-gradient(45deg, #009946, #1e3a8a, #f59e0b);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.border-animation {
  position: relative;
}
.border-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #009946;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.border-animation:hover::before {
  width: 100%;
}

.shadow-animation {
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shadow-animation:hover {
  box-shadow: 0 10px 30px rgba(0, 153, 70, 0.2);
}

/* ページ全体のローディングオーバーレイ */
.page-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 90, 66, 0.95) 0%, rgba(15, 122, 90, 0.9) 50%, rgba(11, 90, 66, 0.95) 100%);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* メインローディングスピナー */
.main-loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  /* 外側のリング */
  /* 内側のリング */
}
.main-loading-spinner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: #f59e0b;
  animation: spin 1.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.main-loading-spinner::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: rgba(255, 255, 255, 0.6);
  animation: spin 0.8s cubic-bezier(0.16, 1, 0.3, 1) infinite reverse;
}

/* ローディングテキスト */
.loading-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
}
.loading-text::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #f59e0b;
  margin-left: 4px;
  animation: blink 1.5s ease-in-out infinite;
}

/* 画像ローディングプレースホルダー */
.image-loading-placeholder {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 90, 66, 0.1) 0%, rgba(15, 122, 90, 0.05) 50%, rgba(11, 90, 66, 0.1) 100%);
  border-radius: 8px;
  overflow: hidden;
}
.image-loading-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: shimmer 1.5s ease-in-out infinite;
}
.image-loading-placeholder.loaded::before {
  display: none;
}

/* セクションローディング状態 */
.section-loading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* カードローディング状態 */
.card-loading {
  position: relative;
  overflow: hidden;
}
.card-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s ease-in-out infinite;
  z-index: 1;
}
.card-loading.loaded::before {
  display: none;
}

/* アニメーション定義 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .main-loading-spinner::before,
  .main-loading-spinner::after {
    animation: none;
  }
  .loading-text::after {
    animation: none;
  }
  .image-loading-placeholder::before,
  .card-loading::before {
    animation: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
}
.header.slide-out {
  transform: translateY(-100%);
}
body.menu-open .header {
  transform: translateY(0) !important;
}
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 1024px) {
  .header-container {
    height: 70px;
  }
}
@media (min-width: 1024px) {
  .header-container {
    max-width: 100%;
    padding: 0 3rem;
  }
}
.header-left {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1280px) {
  .header-left {
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .header-left .header-logo {
    margin-left: 0;
    display: flex;
    align-items: center;
  }
  .header-left .header-nav {
    display: flex;
    align-items: center;
  }
}
.header-right {
  display: flex;
  align-items: center;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo .logo-title {
  margin-bottom: 0;
}
.header-logo .logo {
  height: 28px;
  width: auto;
  transition: all 0.3s ease;
  filter: none;
}
.header-logo .logo:hover {
  transform: scale(1.05);
}
.header.scrolled .header-logo .logo {
  filter: none;
}
.header-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-nav .nav-list {
    gap: 1rem; /* タブレット用の間隔調整 */
    padding-right: 60px; /* MENUボタンとの間隔確保 */
  }
}
.header-nav .nav-list .nav-item {
  position: relative;
}
.header-nav .nav-list .nav-link {
  text-decoration: none;
  color: #262946;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  display: block;
  letter-spacing: 0.05em;
  outline: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  background: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-nav .nav-list .nav-link {
    font-size: 0.8rem; /* タブレット用のフォントサイズ */
  }
}
.header-nav .nav-list .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #009946;
  transition: width 0.3s ease;
}
.header-nav .nav-list .nav-link:hover {
  color: #009946;
}
.header-nav .nav-list .nav-link:hover::after {
  width: 100%;
}
.header-nav .nav-list .nav-link.active {
  color: #009946;
}
.header-nav .nav-list .nav-link.active::after {
  width: 100%;
  background-color: #009946;
}
.header.scrolled .header-nav .nav-list .nav-link {
  color: #262946;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.header.scrolled .header-nav .nav-list .nav-link::after {
  background-color: #009946;
}
.header.scrolled .header-nav .nav-list .nav-link:hover {
  color: #009946;
}
.header.scrolled .header-nav .nav-list .nav-link.active {
  color: #009946;
}
.header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  outline: none;
}
@media (max-width: 768px) {
  .header .mobile-menu-btn {
    display: flex;
  }
}
.header .mobile-menu-btn .hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header .mobile-menu-btn .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #262946;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.header .mobile-menu-btn .menu-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: #262946;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header .mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header .mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header.scrolled .mobile-menu-btn .hamburger-line {
  background-color: #262946;
}
.header.scrolled .mobile-menu-btn .menu-text {
  color: #262946;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-content {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}
.mobile-menu .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu .mobile-nav-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}
.mobile-menu .mobile-nav-item:nth-child(1) {
  transition-delay: 0.2s;
}
.mobile-menu .mobile-nav-item:nth-child(2) {
  transition-delay: 0.3s;
}
.mobile-menu .mobile-nav-item:nth-child(3) {
  transition-delay: 0.4s;
}
.mobile-menu .mobile-nav-item:nth-child(4) {
  transition-delay: 0.5s;
}
.mobile-menu.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu .mobile-nav-link {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}
.mobile-menu .mobile-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.mobile-menu .mobile-nav-link:hover {
  color: white;
}
.mobile-menu .mobile-nav-link:hover::after {
  width: 100%;
}

@keyframes headerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes navItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes highlightSection {
  0% {
    background-color: rgba(0, 153, 70, 0.1);
  }
  100% {
    background-color: transparent;
  }
}
.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.005) 0%, rgba(0, 0, 0, 0.01) 30%, rgba(0, 0, 0, 0.02) 60%, rgba(0, 0, 0, 0.04) 85%, rgba(0, 0, 0, 0.08) 100%);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  padding: 4rem 0 2rem;
  position: relative;
  margin-top: 40px;
}
.footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.01) 30%, rgba(0, 0, 0, 0.02) 60%, rgba(0, 0, 0, 0.04) 85%, rgba(0, 0, 0, 0.08) 100%);
  border-radius: 0 0 50% 50%/0 0 120px 120px;
  z-index: -1;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .footer-container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    padding: 0 3rem;
  }
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}
.footer-company-info .footer-brand {
  margin-bottom: 2rem;
}
.footer-company-info .footer-brand .footer-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-company-info .footer-brand .footer-logo-container .footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) saturate(100%);
}
.footer-company-info .footer-brand .footer-logo-container .footer-company-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.02em;
}
.footer-company-info .footer-brand .footer-catchphrase {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .footer-company-info .footer-brand .footer-catchphrase {
    font-size: 2rem;
  }
}
.footer-company-info .footer-brand .footer-message {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 400;
}
.footer-company-info .footer-contact .footer-contact-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-company-info .footer-contact .footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-company-info .footer-contact .footer-contact-list li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.footer-company-info .footer-contact .footer-contact-list li strong {
  color: #333;
  font-weight: 600;
}
.footer-navigation .footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-navigation .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.footer-navigation .footer-nav-grid .footer-nav-category .footer-nav-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}
.footer-navigation .footer-nav-grid .footer-nav-category .footer-nav-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #009946;
}
.footer-navigation .footer-nav-grid .footer-nav-category .footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-navigation .footer-nav-grid .footer-nav-category .footer-nav-list li {
  margin-bottom: 0.5rem;
}
.footer-navigation .footer-nav-grid .footer-nav-category .footer-nav-list li a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  line-height: 1.4;
}
.footer-navigation .footer-nav-grid .footer-nav-category .footer-nav-list li a:hover {
  color: #009946;
}
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 2rem;
}
.footer-bottom .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer-bottom .footer-legal {
    flex-direction: row;
    gap: 2rem;
  }
}
.footer-bottom .footer-legal .footer-legal-link {
  color: #999;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.footer-bottom .footer-legal .footer-legal-link:hover {
  color: #666;
}
.footer-bottom .footer-copyright {
  color: #999;
  font-size: 0.75rem;
  margin: 0;
  font-weight: 400;
}

.menu-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem; /* 右端から1remに調整 */
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(38, 41, 70, 0.3);
  border-radius: 4px;
  color: #262946;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  --menu-hover-bg: rgba($text-dark, 0.05);
  --menu-hover-border: rgba($text-dark, 0.5);
}
.menu-toggle:hover {
  background: var(--menu-hover-bg);
  border-color: var(--menu-hover-border);
  transform: translateY(-1px);
}
.menu-toggle:focus {
  outline: 2px solid #009946;
  outline-offset: 2px;
}
.nav-morph.active ~ .header-container .menu-toggle {
  outline: none;
}
.header.scrolled .menu-toggle {
  border-color: rgba(38, 41, 70, 0.4);
  color: #262946;
}

.menu-toggle__text {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-weight: 600;
}

.menu-toggle__icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.menu-toggle.active {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(20px);
}

[data-dynamic-color=white] {
  color: #ffffff !important;
}

[data-dynamic-color=dark] {
  color: #262946 !important;
}

.header-nav .nav-list .nav-link[data-dynamic-color=white] {
  color: #ffffff !important;
}

.header-nav .nav-list .nav-link[data-dynamic-color=dark] {
  color: #262946 !important;
}

.header-nav .nav-list .nav-item[data-dynamic-color=white] {
  color: #ffffff !important;
}

.header-nav .nav-list .nav-item[data-dynamic-color=dark] {
  color: #262946 !important;
}

.header.scrolled .header-nav .nav-list .nav-link[data-dynamic-color=white] {
  color: #ffffff !important;
}

.header.scrolled .header-nav .nav-list .nav-link[data-dynamic-color=dark] {
  color: #262946 !important;
}

.header.scrolled .header-nav .nav-list .nav-item[data-dynamic-color=white] {
  color: #ffffff !important;
}

.header.scrolled .header-nav .nav-list .nav-item[data-dynamic-color=dark] {
  color: #262946 !important;
}

.breadcrumb-text[data-dynamic-color=white] {
  color: #ffffff !important;
  --breadcrumb-color: #ffffff !important;
}

.breadcrumb-text[data-dynamic-color=dark] {
  color: #2d3748 !important;
  --breadcrumb-color: #2d3748 !important;
}

.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(38, 41, 70, 0.98);
  backdrop-filter: blur(20px);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1003;
}
.nav-morph__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.nav-morph__close:focus {
  outline: 2px solid #009946;
  outline-offset: 2px;
}

.nav-morph__close-text {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
}

.nav-morph__close-icon {
  width: 16px;
  height: 16px;
}

.nav-morph__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4rem 2rem 2rem;
  max-width: 1200px;
}

.nav-morph__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  width: 100%;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .nav-morph__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .nav-morph__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.nav-morph__column {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__column {
  opacity: 1;
  transform: translateY(0);
}

.nav-morph.active .nav-morph__column:nth-child(1) {
  transition-delay: 0.3s;
}

.nav-morph.active .nav-morph__column:nth-child(2) {
  transition-delay: 0.4s;
}

.nav-morph.active .nav-morph__column:nth-child(3) {
  transition-delay: 0.5s;
}

.nav-morph.active .nav-morph__column:nth-child(4) {
  transition-delay: 0.6s;
}

.nav-morph__column-title {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.nav-morph__column-title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 2rem;
  height: 2px;
  background: #009946;
}

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

.nav-morph__column-list li {
  margin-bottom: 0.75rem;
}

.nav-morph__column-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  cursor: pointer;
}
.nav-morph__column-link:hover {
  color: white;
  transform: translateX(0.5rem);
}
.nav-morph__column-link:focus {
  outline: 2px solid #009946;
  outline-offset: 2px;
}

.nav-morph__column-extra {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-morph__column-extra-link {
  color: #009946;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-morph__column-extra-link:hover {
  color: rgb(0, 204, 93.3333333333);
  text-decoration: underline;
}

.nav-morph__footer {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.8s;
}

.nav-morph.active .nav-morph__footer {
  opacity: 1;
  transform: translateY(0);
}

.nav-morph__footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.nav-morph__footer-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .hamburger-morph {
    width: 40px;
    height: 40px;
  }
  .nav-morph {
    clip-path: circle(0% at calc(100% - 32px) 32px);
  }
  .nav-morph.active {
    clip-path: circle(150% at calc(100% - 32px) 32px);
  }
  .nav-morph__link {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hamburger-morph__line,
  .nav-morph,
  .nav-morph__item,
  .nav-morph__text,
  .nav-morph__hover {
    transition: none;
  }
}
.breadcrumb-nav {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  opacity: 1;
  padding: 0;
}
.breadcrumb-nav.midnight-default {
  --breadcrumb-color: #2d3748;
  --breadcrumb-icon-color: #2d3748;
  --breadcrumb-separator-color: #4a5568;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}
.breadcrumb-nav.midnight-hero {
  --breadcrumb-color: #ffffff;
  --breadcrumb-icon-color: #ffffff;
  --breadcrumb-separator-color: #e2e8f0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.breadcrumb-nav.midnight-news {
  --breadcrumb-color: #2d3748;
  --breadcrumb-icon-color: #2d3748;
  --breadcrumb-separator-color: #4a5568;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}
.breadcrumb-nav.midnight-recruit {
  --breadcrumb-color: #ffffff;
  --breadcrumb-icon-color: #ffffff;
  --breadcrumb-separator-color: #e2e8f0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .breadcrumb-nav {
    left: -5px;
  }
}
@media (max-width: 768px) {
  .breadcrumb-nav {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .breadcrumb-nav {
    display: none !important;
  }
}

.breadcrumb-mobile {
  display: none;
}

.breadcrumb-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.breadcrumb-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  margin: 4px 0;
  opacity: 0;
  transform: translateX(-30px);
}
@media (max-width: 768px) {
  .breadcrumb-separator {
    height: 14px;
    margin: 3px 0;
  }
}
@media (max-width: 640px) {
  .breadcrumb-separator {
    height: 12px;
    margin: 2px 0;
  }
}
.breadcrumb-separator .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color: var(--breadcrumb-separator-color, #999);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .breadcrumb-separator .material-symbols-outlined {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .breadcrumb-separator .material-symbols-outlined {
    font-size: 12px;
  }
}

.breadcrumb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0;
  transform: translateX(-30px);
  position: relative;
  margin-bottom: 0;
}
.breadcrumb-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.breadcrumb-item:only-child .breadcrumb-icon {
  color: #009946;
}

.breadcrumb-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--breadcrumb-color, #666);
  font-size: 11px;
  font-weight: 400;
  transition: color 0.2s ease;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .breadcrumb-link {
    padding: 4px 6px;
    font-size: 9px;
  }
}
@media (max-width: 640px) {
  .breadcrumb-link {
    padding: 2px 3px;
    font-size: 7px;
  }
}
.breadcrumb-link:hover {
  color: var(--breadcrumb-color, #666);
  background-color: rgba(0, 0, 0, 0.05);
}

.breadcrumb-icon {
  font-size: 18px;
  color: var(--breadcrumb-icon-color, #666);
  transition: color 0.2s ease;
  display: block;
}
@media (max-width: 768px) {
  .breadcrumb-icon {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .breadcrumb-icon {
    font-size: 10px;
  }
}
.breadcrumb-link:hover .breadcrumb-icon {
  color: var(--breadcrumb-icon-color, #666);
}

.breadcrumb-icon-custom {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .breadcrumb-icon-custom {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 640px) {
  .breadcrumb-icon-custom {
    width: 10px;
    height: 10px;
  }
}
.breadcrumb-link:hover .breadcrumb-icon-custom {
  opacity: 1;
}
.breadcrumb-nav.midnight-hero .breadcrumb-icon-custom, .breadcrumb-nav.midnight-recruit .breadcrumb-icon-custom {
  filter: none;
  opacity: 0.9;
}
.breadcrumb-nav.midnight-default .breadcrumb-icon-custom, .breadcrumb-nav.midnight-news .breadcrumb-icon-custom {
  filter: brightness(0) saturate(100%);
  opacity: 0.8;
}

.breadcrumb-text {
  font-size: 11px;
  color: var(--breadcrumb-color, #666);
  transition: color 0.2s ease;
  text-align: center;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .breadcrumb-text {
    font-size: 9px;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 640px) {
  .breadcrumb-text {
    font-size: 7px;
    letter-spacing: 0.02em;
  }
}
.breadcrumb-link:hover .breadcrumb-text {
  color: var(--breadcrumb-color, #666);
}

.breadcrumb-item:not(:has(.breadcrumb-link)) {
  cursor: default;
}
.breadcrumb-item:not(:has(.breadcrumb-link)) .breadcrumb-icon {
  color: var(--breadcrumb-icon-color, #666);
}
.breadcrumb-item:not(:has(.breadcrumb-link)) .breadcrumb-text {
  color: var(--breadcrumb-color, #666);
  font-weight: 400;
}

.breadcrumb-item:last-child .breadcrumb-icon {
  color: var(--breadcrumb-icon-color, #666);
  opacity: 0.8;
}
.breadcrumb-item:last-child .breadcrumb-text {
  color: var(--breadcrumb-color, #666);
  font-weight: 500;
  opacity: 0.8;
}

.fixed-buttons-container {
  position: fixed;
  bottom: 0;
  right: 1rem; /* 右端から1remに調整 */
  z-index: 1000;
  font-family: "MaruFolk R", "MaruFolk DB", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "HGSゴシックE", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.tab-buttons-container {
  display: flex;
  background: transparent;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  gap: 2px;
}

.tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  height: 35px;
  background: #009946;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  position: relative;
}
.tab-button:hover {
  background: rgb(0, 102, 46.6666666667);
}
.tab-button .tab-button__icon {
  width: 18px;
  height: 18px;
  fill: white;
}
.tab-button .tab-button__text {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tab-button {
    height: 35px;
    padding: 0 1rem;
  }
  .tab-button .tab-button__text {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .tab-button {
    height: 35px;
    padding: 0 0.875rem;
  }
  .tab-button .tab-button__text {
    font-size: 0.7rem;
  }
  .tab-button .tab-button__icon {
    width: 16px;
    height: 16px;
  }
}

.contact-tab {
  border-radius: 15px 0 0 0;
  min-width: 140px;
}

.scroll-tab {
  border-radius: 0 15px 0 0;
  min-width: 80px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  padding-left: 0;
  padding-right: 1rem;
}

.contact-form__window {
  position: absolute;
  bottom: 45px;
  right: 0;
  width: 350px;
  max-width: calc(100vw - 2rem);
  background: white;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form__window.is-active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .contact-form__window {
    width: calc(100vw - 2rem);
    right: -10px;
  }
}

.contact-form__header {
  background: #009946;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-form__header .contact-form__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: white;
}
.contact-form__header .contact-form__close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.contact-form__header .contact-form__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.contact-form__header .contact-form__close .contact-form__close-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-form__content {
  padding: 1rem;
  max-height: 400px;
  overflow-y: auto;
}

.contact-form__form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form__form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #262946;
  margin-bottom: 0.5rem;
}
.contact-form__form .form-label::after {
  content: " *";
  color: #ef4444;
}
.contact-form__form .form-label.optional::after {
  content: "";
}
.contact-form__form .form-input,
.contact-form__form .form-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  background: white;
  transition: all 0.2s ease;
}
.contact-form__form .form-input:focus,
.contact-form__form .form-textarea:focus {
  outline: none;
  border-color: #009946;
  box-shadow: 0 0 0 3px rgba(0, 153, 70, 0.1);
}
.contact-form__form .form-input:hover,
.contact-form__form .form-textarea:hover {
  border-color: #d1d5db;
}
.contact-form__form .form-input.is-error,
.contact-form__form .form-textarea.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.contact-form__form .form-input::placeholder,
.contact-form__form .form-textarea::placeholder {
  color: #9ca3af;
}
.contact-form__form .form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.contact-form__form .form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}
.contact-form__form .form-error::before {
  content: "⚠";
  margin-right: 0.25rem;
  font-size: 0.875rem;
}
.contact-form__form .form-submit {
  width: 100%;
  padding: 1rem;
  background: #009946;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.contact-form__form .form-submit:hover {
  background: rgb(0, 102, 46.6666666667);
  transform: translateY(-1px);
}
.contact-form__form .form-submit:active {
  transform: translateY(0);
}
.contact-form__form .form-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.contact-form__status {
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.contact-form__status.is-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.contact-form__status.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@keyframes slideInUp {
  from {
    transform: translateY(20px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes slideOutDown {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(20px) scale(0.9);
    opacity: 0;
  }
}
.contact-chat__window.slide-in {
  animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-chat__window.slide-out {
  animation: slideOutDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form {
  font-family: "MaruFolk R", "MaruFolk DB", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "HGSゴシックE", sans-serif;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.contact-form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #262946;
  margin-bottom: 0.5rem;
}
.contact-form .form-label::after {
  content: " *";
  color: #ef4444;
}
.contact-form .form-label.optional::after {
  content: "";
}
.contact-form .form-input,
.contact-form .form-textarea,
.contact-form .form-select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  background: white;
  transition: all 0.2s ease;
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus,
.contact-form .form-select:focus {
  outline: none;
  border-color: #009946;
  box-shadow: 0 0 0 3px rgba(0, 153, 70, 0.1);
}
.contact-form .form-input:hover,
.contact-form .form-textarea:hover,
.contact-form .form-select:hover {
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
.contact-form .form-input.is-error,
.contact-form .form-textarea.is-error,
.contact-form .form-select.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.contact-form .form-input.is-success,
.contact-form .form-textarea.is-success,
.contact-form .form-select.is-success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder,
.contact-form .form-select::placeholder {
  color: #6b7280;
  opacity: 0.7;
}
.contact-form .form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.contact-form .form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linecap='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}
.contact-form .form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}
.contact-form .form-error::before {
  content: "⚠";
  margin-right: 0.25rem;
  font-size: 0.875rem;
}
.contact-form .form-success {
  font-size: 0.75rem;
  color: #10b981;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}
.contact-form .form-success::before {
  content: "✓";
  margin-right: 0.25rem;
  font-size: 0.875rem;
}
.contact-form .form-submit {
  width: 100%;
  padding: 1rem;
  background: #009946;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.contact-form .form-submit:hover {
  background: rgb(0, 102, 46.6666666667);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 153, 70, 0.3);
}
.contact-form .form-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 153, 70, 0.3);
}
.contact-form .form-submit:disabled {
  background: #6b7280;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.contact-form .form-submit.is-loading {
  color: transparent;
}
.contact-form .form-submit.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.contact-form .form-checkbox,
.contact-form .form-radio {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.contact-form .form-checkbox input[type=checkbox],
.contact-form .form-checkbox input[type=radio],
.contact-form .form-radio input[type=checkbox],
.contact-form .form-radio input[type=radio] {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
  accent-color: #009946;
}
.contact-form .form-checkbox label,
.contact-form .form-radio label {
  font-size: 0.875rem;
  color: #262946;
  cursor: pointer;
  margin: 0;
}
.contact-form .form-checkbox label::after,
.contact-form .form-radio label::after {
  content: "";
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.contact-form .form-required {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 1rem;
  text-align: center;
}
.contact-form .form-required::before {
  content: "* ";
  color: #ef4444;
}

.contact-form--submitted .form-submit {
  background: #10b981;
}
.contact-form--submitted .form-submit:hover {
  background: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.contact-form--error .form-submit {
  background: #ef4444;
}
.contact-form--error .form-submit:hover {
  background: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.form-input.is-error,
.form-textarea.is-error {
  animation: shake 0.3s ease-in-out;
}

.form-group .form-label {
  transition: color 0.2s ease;
}
.form-group .form-input:focus + .form-label,
.form-group .form-textarea:focus + .form-label {
  color: #009946;
}

@media (max-width: 768px) {
  .contact-form .form-input,
  .contact-form .form-textarea,
  .contact-form .form-select {
    padding: 0.75rem;
    font-size: 1rem;
  }
  .contact-form .form-submit {
    padding: 1rem;
    font-size: 1rem;
  }
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus,
.contact-form .form-select:focus,
.contact-form .form-submit:focus {
  outline: 2px solid #009946;
  outline-offset: 2px;
}
@media (prefers-contrast: high) {
  .contact-form .form-input,
  .contact-form .form-textarea,
  .contact-form .form-select {
    border-width: 3px;
  }
  .contact-form .form-submit {
    border: 2px solid white;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-form .form-input,
  .contact-form .form-textarea,
  .contact-form .form-select,
  .contact-form .form-submit {
    transition: none;
  }
  .contact-form .form-submit:hover {
    transform: none;
  }
}

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.contact-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.contact-modal__content {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-modal.is-active .contact-modal__content {
  transform: scale(1) translateY(0);
}
@media (max-width: 768px) {
  .contact-modal__content {
    width: 95%;
    max-height: 95vh;
  }
}
@media (max-width: 640px) {
  .contact-modal__content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

.contact-modal__header {
  background: #009946;
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-modal__header .contact-modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
}
.contact-modal__header .contact-modal__close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-modal__header .contact-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.contact-modal__header .contact-modal__close .contact-modal__close-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-modal__body {
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 120px);
}
@media (max-width: 640px) {
  .contact-modal__body {
    padding: 1.5rem;
    max-height: calc(100vh - 120px);
  }
}

.contact-modal__footer {
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .contact-modal__footer {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }
}
.contact-modal__footer .contact-modal__info {
  font-size: 0.875rem;
  color: #6b7280;
}
.contact-modal__footer .contact-modal__info .contact-modal__phone {
  color: #009946;
  font-weight: 600;
  text-decoration: none;
}
.contact-modal__footer .contact-modal__info .contact-modal__phone:hover {
  text-decoration: underline;
}
.contact-modal__footer .contact-modal__actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 640px) {
  .contact-modal__footer .contact-modal__actions {
    width: 100%;
    justify-content: center;
  }
}

.contact-modal__btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-modal__btn--primary {
  background: #009946;
  color: white;
}
.contact-modal__btn--primary:hover {
  background: rgb(0, 102, 46.6666666667);
  transform: translateY(-1px);
}
.contact-modal__btn--secondary {
  background: white;
  color: #262946;
  border: 1px solid #e5e7eb;
}
.contact-modal__btn--secondary:hover {
  background: #f8fafc;
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
.contact-modal__btn--close {
  background: #6b7280;
  color: white;
}
.contact-modal__btn--close:hover {
  background: rgb(83.7787234043, 89.2595744681, 100.2212765957);
}

.contact-modal__message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.contact-modal__message--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.contact-modal__message--success::before {
  content: "✓";
  margin-right: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.contact-modal__message--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.contact-modal__message--error::before {
  content: "⚠";
  margin-right: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.contact-modal__message--info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.contact-modal__message--info::before {
  content: "ℹ";
  margin-right: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.contact-modal__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.contact-modal__loading .contact-modal__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top: 3px solid #009946;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.contact-modal__loading .contact-modal__loading-text {
  margin-left: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes modalSlideOut {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
}
.contact-modal__content.slide-in {
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal__content.slide-out {
  animation: modalSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal:focus {
  outline: none;
}

.contact-modal__content:focus {
  outline: none;
}

.contact-modal[aria-hidden=true] {
  display: none;
}
@media (prefers-contrast: high) {
  .contact-modal .contact-modal__overlay {
    background: rgba(0, 0, 0, 0.8);
  }
  .contact-modal .contact-modal__content {
    border: 2px solid #262946;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-modal .contact-modal__content,
  .contact-modal .contact-modal__overlay {
    transition: none;
  }
  .contact-modal .contact-modal__content.slide-in,
  .contact-modal .contact-modal__content.slide-out {
    animation: none;
  }
}

@media (max-width: 640px) {
  .contact-modal .contact-modal__content {
    margin: 0;
    border-radius: 0;
  }
  .contact-modal .contact-modal__body {
    padding: 1rem;
  }
  .contact-modal .contact-modal__footer {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-modal__content {
    max-width: 600px;
  }
  .contact-modal__body {
    padding: 2.5rem;
  }
}
.section-animation-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.section-animation-container svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.section-animation-container path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.8s ease-in-out;
}
.section-animation-container .squiggle-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.8s ease-in-out;
}
.section-animation-container .squiggle-path.primary {
  stroke: #009946;
}
.section-animation-container .squiggle-path.secondary {
  stroke: #1e3a8a;
}
.section-animation-container .squiggle-path.accent {
  stroke: #f59e0b;
}

.services {
  position: relative;
}
.services .section-animation-container {
  z-index: 0;
}
.services .container {
  position: relative;
  z-index: 2;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-end {
  align-items: flex-end !important;
}

.align-center {
  align-items: center !important;
}

.align-baseline {
  align-items: baseline !important;
}

.align-stretch {
  align-items: stretch !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.m-2 {
  margin: 1rem !important;
}

.m-3 {
  margin: 1.5rem !important;
}

.m-4 {
  margin: 2rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.container {
  max-width: 1400px;
  margin: 8rem auto auto;
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 8rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 12rem 0;
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background-color: #009946;
  color: white;
}
.btn-primary:hover {
  background-color: rgb(0, 102, 46.6666666667);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: transparent;
  color: #009946;
  border: 2px solid #009946;
}
.btn-secondary:hover {
  background-color: #009946;
  color: white;
}

.section-header {
  text-align: left;
  margin-bottom: 8rem;
  padding-left: 0;
}

.section-title {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #009946;
  text-align: left;
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 1.2rem;
  }
}

.section-subtitle {
  font-family: "Heebo", sans-serif;
  font-size: 4rem;
  color: #009946;
  font-weight: bold;
  text-align: left;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 0.9;
  position: relative;
}
.section-subtitle::before {
  content: attr(data-text);
  position: absolute;
  top: 0.1ch;
  left: 0.1ch;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 153, 70, 0.3);
  z-index: -1;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.section-subtitle.long-title {
  display: flex;
  flex-direction: column;
}
.section-subtitle.long-title::after {
  content: attr(data-second-word);
  margin-left: 4ch;
  margin-top: -0.1em;
}
.section-subtitle.long-title::before {
  content: attr(data-text) "\a" attr(data-second-word);
  white-space: pre-line;
  line-height: 0.9;
}
@media (min-width: 1024px) {
  .section-subtitle {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .section-subtitle {
    font-size: 8rem;
  }
}
@media (min-width: 1400px) {
  .section-subtitle {
    font-size: 9.375rem;
  }
}
@media (max-width: 640px) {
  .section-subtitle {
    font-size: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 2rem;
  }
}

.section-subtitle-line {
  font-family: "Heebo", sans-serif;
  font-size: 4rem;
  color: #009946;
  font-weight: bold;
  text-align: left;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  line-height: 0.9;
  position: relative;
  margin: 0;
  margin-left: 1ch;
}
.section-subtitle-line::before {
  content: attr(data-text);
  position: absolute;
  top: 0.1ch;
  left: 0.1ch;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 153, 70, 0.3);
  z-index: -1;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.section-subtitle-line:first-child {
  margin-left: 0;
}
@media (min-width: 1024px) {
  .section-subtitle-line {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .section-subtitle-line {
    font-size: 8rem;
  }
}
@media (min-width: 1400px) {
  .section-subtitle-line {
    font-size: 9.375rem;
  }
}
@media (max-width: 640px) {
  .section-subtitle-line {
    font-size: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-left: 0.5ch;
  }
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #009946;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.scroll-top:hover {
  background-color: rgb(0, 102, 46.6666666667);
  transform: translateY(-2px);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top .scroll-top-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.koukin-ion-main {
  background-color: transparent;
}
.koukin-ion-section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.koukin-ion-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.koukin-ion-section .section-body {
  max-width: min(960px, 100%);
  margin: 0 auto;
  text-align: left;
}
.koukin-ion-hero-wrapper {
  background: url(../images/koukin-ion/slider-bg.png) no-repeat top center;
  background-size: 100% auto;
  position: relative;
  z-index: 12;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .koukin-ion-hero-wrapper {
    background-size: 200% auto;
    background-position: center 0%;
  }
}
@media (max-width: 768px) {
  .koukin-ion-hero-wrapper {
    background-size: 500% auto;
    background-position: center 0%;
  }
}
.koukin-ion-top-c {
  background: transparent;
  width: 100%;
  height: 504px;
  position: relative;
  z-index: 12;
}
@media (max-width: 1024px) {
  .koukin-ion-top-c {
    height: auto;
    min-height: auto;
    padding: 60px 0 40px 0;
  }
}
@media (max-width: 768px) {
  .koukin-ion-top-c {
    height: auto;
    min-height: auto;
    padding: 60px 0 40px 0;
  }
}
.koukin-ion-top-c .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .koukin-ion-top-c .container {
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .koukin-ion-top-c .container {
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.koukin-ion-top-c-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 768px) {
  .koukin-ion-top-c-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
.koukin-ion-top-c-img-wrapper {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
@media (max-width: 768px) {
  .koukin-ion-top-c-img-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.koukin-ion-top-c .koukin-ion-topc-img {
  margin-top: 60px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
}
@media (max-width: 768px) {
  .koukin-ion-top-c .koukin-ion-topc-img {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.koukin-ion-top-c .koukin-ion-topc-img img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .koukin-ion-top-c .koukin-ion-topc-img img {
    max-width: 150px;
  }
}
.koukin-ion-top-c-content {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 768px) {
  .koukin-ion-top-c-content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
  }
}
.koukin-ion-top-c .koukin-ion-topc-title {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  margin: 110px 0 28px 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .koukin-ion-top-c .koukin-ion-topc-title {
    font-size: clamp(24px, 5vw, 32px);
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.koukin-ion-top-c .koukin-ion-topc-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .koukin-ion-top-c .koukin-ion-topc-description {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.65;
    text-align: center;
    padding: 0 1.5rem;
    margin-top: 8px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
.koukin-ion-overview {
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: 0;
  background-color: transparent;
  position: relative;
}
@media (max-width: 768px) {
  .koukin-ion-overview {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.koukin-ion-overview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.koukin-ion-overview-content {
  max-width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}
.koukin-ion-overview-title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(30px);
}
.koukin-ion-overview-description {
  display: flex;
  flex-direction: column;
  gap: clamp(0.3rem, 0.6vw, 0.5rem);
  text-align: left;
  margin-bottom: clamp(0.4rem, 0.8vw, 0.6rem);
}
@media (min-width: 768px) {
  .koukin-ion-overview-description {
    flex-direction: row;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 3rem);
  }
}
.koukin-ion-overview-description p {
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.4;
  color: #4a4a4a;
  margin: 0;
  flex: 1;
  letter-spacing: 0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: left;
  hyphens: none;
  opacity: 0;
  transform: translateX(-30px);
}
.koukin-ion-overview-image {
  margin-top: clamp(0.75rem, 1.5vw, 1.5rem);
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}
.koukin-ion-overview-image img {
  width: 40%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 0 auto;
}
.koukin-ion-unified {
  position: relative;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 260px;
  background-color: transparent;
  overflow: visible;
}
@media (max-width: 768px) {
  .koukin-ion-unified {
    padding-top: 10px;
    padding-bottom: 200px;
  }
}
.koukin-ion-unified::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/koukin-ion/service-bg.png) no-repeat top center;
  background-size: 100% auto;
  z-index: -1;
  pointer-events: none;
}
.koukin-ion-unified::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 140%;
  background: url(../images/koukin-ion/products-bg.png) no-repeat center calc(100% - 140px);
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .koukin-ion-unified::after {
    bottom: 50px;
    background-size: 140% auto;
  }
}
.koukin-ion-unified .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}
.koukin-ion-unified .koukin-ion-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  justify-items: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
@media (max-width: 768px) {
  .koukin-ion-unified .koukin-ion-services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}
.koukin-ion-unified .koukin-ion-service-item {
  text-align: center;
  width: 100%;
  max-width: 250px;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}
.koukin-ion-unified .koukin-ion-service-icon {
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #39c8e2;
  border-radius: 50%;
  font-size: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #39c8e2;
  box-shadow: 0 4px 12px rgba(57, 200, 226, 0.15);
}
@media (max-width: 768px) {
  .koukin-ion-unified .koukin-ion-service-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 40px;
  }
}
.koukin-ion-unified .koukin-ion-service-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .koukin-ion-unified .koukin-ion-service-icon img {
    width: 60px;
    height: 60px;
  }
}
.koukin-ion-unified .koukin-ion-service-title {
  font-size: 18px;
  color: #39c8e2;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 0;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .koukin-ion-unified .koukin-ion-service-title {
    font-size: clamp(16px, 3.5vw, 18px);
  }
}
.koukin-ion-unified .koukin-ion-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  justify-items: center;
  color: #ffffff;
  position: relative;
  top: 40px;
}
@media (max-width: 768px) {
  .koukin-ion-unified .koukin-ion-products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    top: 40px;
  }
}
.koukin-ion-unified .koukin-ion-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
  opacity: 0;
  transform: translateY(40px);
}
@media (max-width: 768px) {
  .koukin-ion-unified .koukin-ion-product-item {
    max-width: 100%;
  }
}
.koukin-ion-unified .koukin-ion-product-content {
  width: 100%;
  padding: 0;
}
.koukin-ion-unified .koukin-ion-product-content p {
  text-align: left;
  color: #ffffff;
  line-height: 1.9;
  font-size: clamp(14px, 1.8vw, 16px);
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .koukin-ion-unified .koukin-ion-product-content p {
    color: #1a1a1a;
  }
}
.koukin-ion-unified .koukin-ion-tech-note {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.koukin-ion-services {
  background: url(../images/koukin-ion/service-bg.png) no-repeat top center;
  background-size: cover;
  background-color: transparent !important;
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .koukin-ion-services {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.koukin-ion-services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.koukin-ion-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  justify-items: center;
}
@media (max-width: 768px) {
  .koukin-ion-services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.koukin-ion-services .koukin-ion-service-item {
  text-align: center;
  width: 100%;
  max-width: 250px;
  position: relative;
  z-index: 3;
}
.koukin-ion-services .koukin-ion-service-icon {
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #39c8e2;
  border-radius: 50%;
  font-size: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #39c8e2;
}
@media (max-width: 768px) {
  .koukin-ion-services .koukin-ion-service-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 40px;
  }
}
.koukin-ion-services .koukin-ion-service-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .koukin-ion-services .koukin-ion-service-icon img {
    width: 60px;
    height: 60px;
  }
}
.koukin-ion-services .koukin-ion-service-title {
  text-transform: uppercase;
  font-size: 20px;
  color: #39c8e2;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .koukin-ion-services .koukin-ion-service-title {
    font-size: clamp(16px, 4vw, 20px);
  }
}
.koukin-ion-products {
  background: url(../images/koukin-ion/products-bg.png) no-repeat top center;
  background-size: cover;
  position: relative;
  z-index: 11;
  color: #ffffff;
  padding-top: 200px;
  padding-bottom: 120px;
  margin-top: -120px;
}
@media (max-width: 768px) {
  .koukin-ion-products {
    padding-top: 100px;
    padding-bottom: 80px;
    margin-top: 0;
  }
}
.koukin-ion-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.koukin-ion-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  justify-items: center;
}
@media (max-width: 768px) {
  .koukin-ion-products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.koukin-ion-products .koukin-ion-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
  opacity: 0;
  transform: translateY(40px);
}
@media (max-width: 768px) {
  .koukin-ion-products .koukin-ion-product-item {
    max-width: 100%;
  }
}
.koukin-ion-products .koukin-ion-product-image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .koukin-ion-products .koukin-ion-product-image {
    width: 100px;
    height: 100px;
  }
}
.koukin-ion-products .koukin-ion-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.koukin-ion-products .koukin-ion-product-content {
  width: 100%;
  padding: 0;
}
.koukin-ion-products .koukin-ion-product-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #fff;
}
@media (max-width: 768px) {
  .koukin-ion-products .koukin-ion-product-content h3 {
    font-size: clamp(16px, 3vw, 18px);
  }
}
.koukin-ion-products .koukin-ion-product-content p {
  text-align: left;
  color: #fff;
  line-height: 1.8;
  font-size: clamp(14px, 2vw, 16px);
}
.koukin-ion-products .koukin-ion-tech-note {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/*# sourceMappingURL=koukin_ion.css.map */
