@charset "UTF-8";
/* リセットとベーススタイル */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* 改行処理の共通設定 */
h1, h2, h3, h4, h5, h6, p, li, td, th, div, span, a {
  word-break: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

/* 🔥 最先端カスタムプロパティ（CSS変数） */
:root {
  --pastel-blue: #B4D4FF;
  --pastel-pink: #FFB4D4;
  --pastel-green: #B4FFD4;
  --glassmorphism-bg: rgba(255, 255, 255, 0.7);
  --glassmorphism-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 2px 10px rgba(180, 212, 255, 0.1);
  --shadow-md: 0 8px 30px rgba(180, 212, 255, 0.15);
  --shadow-lg: 0 20px 60px rgba(180, 212, 255, 0.2);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 🔥 パフォーマンス最適化 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
body {
  padding-top: 80px;
  overflow-x: hidden;
  font-family: "M PLUS Rounded 1c", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "palt" 1;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: #FAFCFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 🔥 最先端ヘッダー（グラスモーフィズム＋シャドウアニメーション） */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid rgba(180, 212, 255, 0.15);
  box-shadow: 0 4px 30px rgba(180, 212, 255, 0.12), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.5s var(--transition-smooth);
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 40px rgba(180, 212, 255, 0.2), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(180, 212, 255, 0.6) 25%, rgba(255, 180, 212, 0.6) 50%, rgba(180, 255, 212, 0.6) 75%, transparent);
  opacity: 0.7;
  animation: headerGradientFlow 8s ease-in-out infinite;
}

@keyframes headerGradientFlow {
  0%, 100% {
    opacity: 0.4;
    transform: translateX(-100%);
  }
  50% {
    opacity: 0.8;
    transform: translateX(100%);
  }
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

/* ハンバーガーメニューボタン */
.hamburger {
  position: relative;
  z-index: 10001;
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  order: 3;
  width: 36px;
  height: 30px;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ハンバーガーメニューが開いているとき */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.site-logo {
  order: 1;
}
.site-logo img {
  max-width: 200px;
}

.site-logo h1 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-logo h1 a {
  text-decoration: none;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  order: 2;
}

.site-nav ul {
  display: flex;
  gap: 35px;
  align-items: center;
  list-style: none;
}

.site-nav a {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.site-nav a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  transition: width 0.3s;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a:not(.nav-contact).active {
  padding: 8px 16px;
  font-weight: 700;
  color: var(--pastel-blue);
  background: linear-gradient(135deg, rgba(180, 212, 255, 0.1) 0%, rgba(255, 180, 212, 0.1) 100%);
  border-radius: 20px;
}

.site-nav a:not(.nav-contact).active::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--pastel-blue);
  transform: translateY(-1px);
}

.nav-contact {
  padding: 10px 25px;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  border-radius: 25px;
}

.nav-contact::after {
  display: none;
}

.nav-contact:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #A0C4FF 0%, #B5D0FF 100%);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
}

/* メインビジュアル */
.main-visual {
  position: relative;
  z-index: 1;
  padding: 100px 0 120px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5F0 50%, #F5FFF0 100%);
}

.visual-decoration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.circle-1 {
  top: -250px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  animation-delay: 0s;
}

.circle-2 {
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, #FFC5E0 100%);
  animation-delay: 5s;
}

.circle-3 {
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--pastel-green) 0%, #C5FFE0 100%);
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(5deg);
  }
  66% {
    transform: translateY(20px) rotate(-5deg);
  }
}
.visual-content {
  position: relative;
  z-index: 1;
}

.company-name {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.business-label {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pastel-blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.main-title {
  margin-bottom: 35px;
  font-family: "Inter", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 50%, var(--pastel-green) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 25px;
  margin-left: auto;
  font-size: 22px;
  line-height: 1.8;
  color: #666;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

/* PC・タブレットでは非表示、モバイルのみ表示 */
.sp-only {
  display: none;
}

@media (max-width: 640px) {
  .sp-only {
    display: inline;
  }
}
/* モバイルでのbr非表示 */
@media (max-width: 640px) {
  .subtitle br:not(.sp-only) {
    display: none;
  }
}
.description {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  font-size: 16px;
  line-height: 1.9;
  color: #888;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* モバイルでのbr非表示 */
@media (max-width: 640px) {
  .description br:not(.sp-only) {
    display: none;
  }
}
/* CTAボタングループ */
.cta-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
}

/* 🔥 最先端プライマリーボタン（グロウ＋リップル効果） */
.btn-primary,
.btn-business {
  position: relative;
  display: inline-block;
  padding: 20px 50px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  border: 0;
  border-radius: 35px;
  box-shadow: 0 8px 25px rgba(180, 212, 255, 0.35), 0 0 0 0 rgba(180, 212, 255, 0.4);
  transition: all 0.5s var(--transition-smooth);
}

.btn-primary::before,
.btn-business::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn-primary:hover::before,
.btn-business:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover,
.btn-business:hover {
  filter: brightness(1.1);
  box-shadow: 0 15px 40px rgba(180, 212, 255, 0.5), 0 0 0 8px rgba(180, 212, 255, 0.15), 0 0 30px rgba(180, 212, 255, 0.3);
  transform: translateY(-5px);
}

.btn-primary:active,
.btn-business:active {
  box-shadow: 0 8px 20px rgba(180, 212, 255, 0.4);
  transform: translateY(-2px);
}

/* 🔥 最先端セカンダリーボタン（グラデーションボーダー） */
.btn-secondary {
  position: relative;
  display: inline-block;
  padding: 20px 50px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--pastel-blue);
  text-decoration: none;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: #fff;
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 35px;
  box-shadow: 0 8px 25px rgba(180, 212, 255, 0.2);
  transition: all 0.5s var(--transition-smooth);
}

.btn-secondary::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  padding: 2px;
  content: "";
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  border-radius: 35px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.btn-secondary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  box-shadow: 0 15px 40px rgba(180, 212, 255, 0.4), 0 0 30px rgba(180, 212, 255, 0.2);
  transform: translateY(-5px);
}

/* 🔥 最先端アウトラインボタン（グラデーションボーダー＋グロウ） */
.btn-outline {
  position: relative;
  display: inline-block;
  padding: 16px 42px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--pastel-blue);
  text-decoration: none;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  background-clip: padding-box;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 28px;
  box-shadow: 0 4px 15px rgba(180, 212, 255, 0.15);
  transition: all 0.5s var(--transition-smooth);
}

.btn-outline::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  padding: 2px;
  content: "";
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 50%, var(--pastel-green) 100%);
  border-radius: 28px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.btn-outline:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  box-shadow: 0 12px 35px rgba(180, 212, 255, 0.4), 0 0 25px rgba(180, 212, 255, 0.3);
  transform: translateY(-4px);
}

/* 🔥 最先端大型ボタン（パルスアニメーション＋グロウ） */
.btn-primary-large {
  position: relative;
  display: inline-block;
  padding: 24px 70px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, #FFC4E4 100%);
  border-radius: 40px;
  box-shadow: 0 12px 40px rgba(255, 180, 212, 0.45), 0 0 0 0 rgba(255, 180, 212, 0.4);
  transition: all 0.5s var(--transition-smooth);
  animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 12px 40px rgba(255, 180, 212, 0.45), 0 0 0 0 rgba(255, 180, 212, 0.4);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255, 180, 212, 0.45), 0 0 0 15px rgba(255, 180, 212, 0);
  }
}
.btn-primary-large::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn-primary-large:hover::before {
  width: 350px;
  height: 350px;
}

.btn-primary-large:hover {
  filter: brightness(1.1);
  box-shadow: 0 20px 50px rgba(255, 180, 212, 0.6), 0 0 40px rgba(255, 180, 212, 0.4);
  transform: translateY(-6px) scale(1.03);
  animation: none;
}

.btn-primary-large:active {
  box-shadow: 0 10px 30px rgba(255, 180, 212, 0.5);
  transform: translateY(-3px) scale(1.01);
}

/* コンタクトページへのボタン */
.btn-contact-page {
  display: inline-block;
  padding: 16px 50px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(180, 212, 255, 0.3);
  transition: all 0.3s;
}

.btn-contact-page:hover {
  box-shadow: 0 8px 25px rgba(180, 212, 255, 0.4);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Our Business セクション */
.business-section {
  padding: 100px 0;
  background: #fff;
}

/* ビジュアル with 画像 */
.business-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  margin-bottom: 80px;
}

.visual-image {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(180, 212, 255, 0.2);
  transition: all 0.5s;
}

.visual-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.visual-text h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.visual-text p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.9;
  color: #666;
}

/* セクションCTA */
/* 🔥 最先端CTAセクション */
.section-cta {
  padding: 50px 40px;
  margin-top: 70px;
  text-align: center;
  background: linear-gradient(135deg, rgba(240, 245, 255, 0.5) 0%, rgba(255, 245, 250, 0.5) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 212, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(180, 212, 255, 0.1);
}

.cta-title {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.cta-text {
  max-width: 650px;
  margin-right: auto;
  margin-bottom: 35px;
  margin-left: auto;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  color: #666;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.contact-cta {
  margin-top: 50px;
  text-align: center;
}

.visual-features {
  padding: 0;
  list-style: none;
}

.visual-features li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
  color: #333;
}

.feature-icon {
  font-size: 24px;
}

.section-title {
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--pastel-blue);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-subtitle {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.section-intro {
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-description {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  text-align: center;
}

/* モバイルでのbr非表示 */
@media (max-width: 640px) {
  .section-description br:not(.sp-only) {
    display: none;
  }
}
/* マーケティング×プロモーション説明 */
.marketing-promo-intro {
  margin-bottom: 80px;
}

.mp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* 🔥 最先端カードデザイン（グラスモーフィズム＋3Dエフェクト） */
.mp-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(180, 212, 255, 0.12), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.6s var(--transition-smooth);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.mp-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(135deg, rgba(180, 212, 255, 0.05) 0%, rgba(255, 180, 212, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mp-card-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.mp-card-image::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mp-card:hover .mp-card-image::after {
  opacity: 1;
}

.mp-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.mp-card:hover .mp-card-image img {
  filter: brightness(0.95);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.08);
}

.mp-card:hover .mp-card-image img {
  filter: brightness(1);
  transform: scale(1.1);
}

.mp-card-content {
  padding: 35px;
}

.mp-card.marketing {
  border-top: 4px solid var(--pastel-blue);
}

.mp-card.promotion {
  border-top: 4px solid var(--pastel-pink);
}

.mp-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.mp-card.marketing h3 {
  color: var(--pastel-blue);
}

.mp-card.promotion h3 {
  color: var(--pastel-pink);
}

.mp-description {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.mp-list {
  padding: 0;
  list-style: none;
}

.mp-list li {
  position: relative;
  padding: 8px 0;
  padding-left: 25px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.mp-list li::before {
  position: absolute;
  left: 0;
  font-size: 14px;
  font-weight: 700;
  content: "✓";
}

.mp-card.marketing .mp-list li::before {
  color: var(--pastel-blue);
}

.mp-card.promotion .mp-list li::before {
  color: var(--pastel-pink);
}

/* 🔥 最先端サービスカード（マイクロインタラクション） */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  position: relative;
  padding: 45px 35px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(180, 212, 255, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.5s var(--transition-smooth);
  transform-style: preserve-3d;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(180, 212, 255, 0.15) 30%, rgba(255, 180, 212, 0.15) 70%, transparent);
  transition: left 0.8s ease;
  transform: skewX(-20deg);
}

.service-card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: radial-gradient(circle at center, rgba(180, 212, 255, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(180, 212, 255, 0.3);
  transition: all 0.5s var(--transition-bounce);
}

.icon-blue {
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
}

.icon-pink {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, #FFC5E0 100%);
}

.icon-green {
  background: linear-gradient(135deg, var(--pastel-green) 0%, #C5FFE0 100%);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.service-description {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--pastel-blue);
}

.service-detail {
  padding-top: 20px;
  border-top: 1px solid #F0F0F0;
}

.service-detail p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  text-align: left;
}

/* Statistics セクション */
.statistics-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 50%, var(--pastel-green) 100%);
}

.statistics-section::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>');
  background-size: 80px 80px;
  opacity: 0.5;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* 🔥 最先端統計カード（高度なグラスモーフィズム） */
.stat-item {
  position: relative;
  padding: 45px 35px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(30px) saturate(200%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(180, 212, 255, 0.2), 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 -1px 0 rgba(180, 212, 255, 0.2) inset;
  transition: all 0.6s var(--transition-smooth);
  transform-style: preserve-3d;
}

.stat-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.stat-number {
  margin-bottom: 10px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(180, 212, 255, 0.3);
  transition: all 0.4s ease;
}

.stat-label {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.stat-unit {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Information セクション */
.information-section {
  padding: 80px 0;
  background: #fff;
}

.info-list-home {
  max-width: 900px;
  margin: 0 auto 40px;
}

/* 🔥 最先端インフォカード（ホバー時のライティング効果） */
.info-item-home a {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 35px;
  margin-bottom: 25px;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
  border-left: 5px solid transparent;
  border-radius: 20px;
  -o-border-image: linear-gradient(180deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%) 1;
     border-image: linear-gradient(180deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%) 1;
  box-shadow: 0 4px 15px rgba(180, 212, 255, 0.08);
  transition: all 0.5s var(--transition-smooth);
}

.info-item-home a::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(180, 212, 255, 0.15) 50%, transparent);
  transition: left 0.7s ease;
}

.info-item-home a:hover::before {
  left: 100%;
}

.info-item-home a:hover {
  background: linear-gradient(135deg, #F5F8FF 0%, #FFF8FC 100%);
  box-shadow: 0 12px 40px rgba(180, 212, 255, 0.25), 0 4px 15px rgba(255, 180, 212, 0.15);
  transform: translateX(8px) translateY(-2px);
}

.info-date-home {
  display: inline-block;
  padding-top: 3px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--pastel-blue);
  white-space: nowrap;
}

.info-content-home {
  flex: 1;
}

.info-title-home {
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  letter-spacing: -0.01em;
}

.info-text-home {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.info-more {
  margin-top: 30px;
  text-align: center;
}

.btn-info-more {
  display: inline-block;
  padding: 12px 35px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--pastel-blue);
  text-decoration: none;
  letter-spacing: -0.01em;
  background: #fff;
  border: 2px solid var(--pastel-blue);
  border-radius: 25px;
  transition: all 0.3s;
}

.btn-info-more:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
  box-shadow: 0 5px 15px rgba(180, 212, 255, 0.3);
  transform: translateY(-2px);
}

/* Company セクション */
.company-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
}

.company-content {
  max-width: 900px;
  margin: 0 auto;
}

.company-table {
  width: 100%;
  margin-bottom: 50px;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.company-table tr {
  border-bottom: 1px solid #F0F0F0;
}

.company-table tr:last-child {
  border-bottom: 0;
}

.company-table th,
.company-table td {
  padding: 25px 30px;
  text-align: left;
}

.company-table th {
  width: 180px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
}

.company-table td {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.company-map {
  padding: 35px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.company-map h3 {
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #F0F0F0;
}

.map-container {
  overflow: hidden;
  border-radius: 10px;
}

/* 🔥 セクション間の遷移効果 */
section {
  position: relative;
}

/* Contact セクション */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #F0F5FF 0%, #FFF5FA 100%);
  border-radius: 15px;
  transition: all 0.3s;
}

.contact-icon {
  font-size: 32px;
}

.contact-label {
  margin-bottom: 5px;
  font-size: 13px;
  color: #999;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* メールアドレスと電話番号のリンク */
.email-link,
.tel-link {
  position: relative;
  color: var(--pastel-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-link:hover,
.tel-link:hover {
  color: var(--pastel-pink);
}

.email-link::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  transition: width 0.3s ease;
}

.email-link:hover::after {
  width: 100%;
}

.info-content {
  max-width: 800px;
  padding: 40px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-text {
  font-size: 16px;
  color: #666;
}

/* フッター */
.footer {
  padding: 50px 0 30px;
  color: #fff;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.footer-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
  flex: 1;
  width: 100%;
}

/* フッターロゴ（画像対応） */
.footer-logo-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
}

.footer-logo-link:hover .footer-logo-img {
  filter: brightness(1.1);
}

.footer-logo-link:hover .footer-company-text {
  color: var(--pastel-pink);
}

.footer-logo-link::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  transition: width 0.3s ease;
}

.footer-logo-link:hover::after {
  width: 100%;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo-img {
  display: block;
  max-width: 200px;
  height: auto;
  margin-bottom: 12px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* ロゴ画像が読み込めない場合のテキスト表示 */
.footer-company-text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

/* ロゴ画像が存在する場合はテキストを非表示 */
.footer-logo-img[src]:not([src=""]) ~ .footer-company-text {
  display: none;
}

/* ロゴ画像が読み込めない場合 */
.footer-logo-img {
  display: none;
}

.footer-logo-img[src]:not([src=""]) {
  display: block;
}

/* 旧スタイル（後方互換性のため残す） */
.footer-company {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-address,
.footer-tel {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  list-style: none;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* レスポンシブ */
/* タブレット表示 */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  /* ハンバーガーメニュー表示 */
  .hamburger {
    display: flex !important;
    order: 3;
  }
  .site-logo {
    order: 1;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10000;
    order: 2;
    width: 280px;
    height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .site-nav.active {
    right: 0;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0;
  }
  .site-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(180, 212, 255, 0.2);
  }
  .site-nav a {
    display: block;
    width: 100%;
    padding: 18px 30px;
    font-size: 16px;
    text-align: left;
    transition: all 0.3s ease;
  }
  .site-nav a::after {
    display: none;
  }
  .site-nav a:hover,
  .site-nav a:not(.nav-contact).active {
    padding-left: 40px;
    background: linear-gradient(135deg, rgba(180, 212, 255, 0.15) 0%, rgba(255, 180, 212, 0.15) 100%);
    border-radius: 0;
  }
  .nav-contact {
    margin: 20px;
    color: #fff !important;
    text-align: center;
    background: linear-gradient(135deg, var(--pastel-blue) 0%, #C5E0FF 100%);
    border-radius: 25px;
  }
  .nav-contact:hover {
    padding-left: 30px !important;
  }
  /* メニューオーバーレイ */
  .site-nav::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    content: "";
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
  }
  .site-nav.active::before {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.5);
  }
  .main-title {
    font-size: 46px;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .subtitle {
    font-size: 18px;
  }
  .section-intro {
    font-size: 28px;
    line-height: 1.6;
  }
  .business-visual {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .company-info-grid {
    grid-template-columns: 1fr;
  }
}
/* 小型タブレット・大型スマートフォン */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .site-nav ul {
    gap: 12px;
  }
  .site-nav a {
    font-size: 13px;
    white-space: nowrap;
  }
  .nav-contact {
    padding: 8px 15px;
    font-size: 13px;
  }
  .main-title {
    font-size: 36px;
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .subtitle {
    font-size: 16px;
    line-height: 1.7;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .section-title {
    margin-bottom: 10px;
    font-size: 32px;
  }
  .section-subtitle {
    margin-bottom: 45px;
    font-size: 20px;
  }
  .section-intro {
    font-size: 24px;
    line-height: 1.6;
    word-break: keep-all;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .service-card h3 {
    font-size: 20px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .service-detail p {
    line-height: 1.8;
    text-align: left;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .info-item-home a {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .info-date-home {
    width: 100%;
  }
  .company-table th,
  .company-table td {
    padding: 15px 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .company-table th {
    width: 100px;
    word-break: keep-all;
  }
  .company-table td {
    word-break: break-all;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-address,
  .footer-tel {
    line-height: 1.8;
    word-break: break-all;
  }
}
/* スマートフォン表示 */
@media (max-width: 640px) {
  body {
    padding-top: 70px;
    font-size: 15px;
  }
  .container {
    padding: 0 16px;
  }
  .header-inner {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    padding: 15px 0;
  }
  .site-logo h1 {
    font-size: 22px;
  }
  .hamburger {
    display: flex !important;
    order: 3;
  }
  .site-logo {
    order: 1;
  }
  .site-nav {
    order: 2;
    width: 260px;
  }
  .site-nav a {
    padding: 16px 25px;
    font-size: 15px;
  }
  /* スマホではハンバーガーメニューを使用するため、これらは削除 */
  .main-visual {
    padding: 60px 0 80px;
  }
  .main-title {
    padding: 0 5px;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .subtitle {
    padding: 0 5px;
    font-size: 15px;
    line-height: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .description {
    padding: 0 5px;
    font-size: 14px;
    line-height: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .business-section,
  .mp-section,
  .services-section,
  .information-section,
  .company-section,
  .contact-section {
    padding: 50px 0;
  }
  /* モバイルでのセクションタイトル：英語+日本語の縦並び中央揃え */
  .section-title {
    display: block;
    margin-bottom: 8px;
    font-size: 28px;
    text-align: center;
    word-break: keep-all;
  }
  .section-subtitle {
    display: block;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
  }
  .section-intro {
    font-size: 20px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .section-description {
    font-size: 14px;
    line-height: 1.9;
  }
  .business-visual {
    gap: 30px;
    padding: 30px 0;
  }
  .visual-text h3 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.6;
    word-break: keep-all;
  }
  .visual-text p {
    font-size: 14px;
    line-height: 1.8;
  }
  .mp-card {
    margin-bottom: 0;
  }
  .mp-card-content {
    padding: 25px 18px;
  }
  .mp-card-image {
    height: 200px;
  }
  .mp-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .mp-description {
    font-size: 13px;
    line-height: 1.8;
  }
  .mp-list li {
    padding: 6px 0;
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .service-description {
    font-size: 13px;
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .service-detail p {
    font-size: 14px;
    line-height: 1.9;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .service-icon svg {
    width: 35px;
    height: 35px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .stat-number {
    font-size: 40px;
  }
  .stat-label {
    font-size: 13px;
    word-break: keep-all;
  }
  .stat-unit {
    font-size: 16px;
  }
  .info-item-home a {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  .info-date-home {
    width: 100%;
    font-size: 12px;
  }
  .info-title-home {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    word-break: keep-all;
  }
  .info-text-home {
    font-size: 13px;
    line-height: 1.8;
  }
  .company-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .company-table tbody {
    display: block;
  }
  .company-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #E8F0FF;
    border-radius: 10px;
  }
  .company-table th,
  .company-table td {
    display: block;
    width: 100% !important;
    padding: 12px 15px;
    line-height: 1.7;
    text-align: left;
    border: 0;
  }
  .company-table th {
    font-weight: 600;
    color: var(--pastel-blue);
    background: #F0F5FF;
    border-bottom: 1px solid #E8F0FF;
  }
  .company-table td {
    word-break: break-all;
    overflow-wrap: break-word;
    background: #fff;
  }
  .contact-info-item {
    padding: 25px 20px;
  }
  .contact-info-item h3 {
    margin-bottom: 12px;
    font-size: 18px;
    word-break: keep-all;
  }
  .contact-info-item p {
    font-size: 14px;
    line-height: 1.8;
  }
  .footer-info {
    text-align: center;
  }
  .footer-logo-link {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  .footer-logo-link:active {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .footer-logo-link::after {
    display: none;
  }
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }
  .footer-logo-img {
    max-width: 160px;
    margin-bottom: 10px;
  }
  .footer-company-text {
    font-size: 16px;
  }
  .footer-company {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .footer-address {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.8;
    word-break: break-all;
  }
  .footer-tel {
    font-size: 13px;
    word-break: break-all;
  }
  .footer-nav ul {
    gap: 8px;
  }
  .footer-nav a {
    font-size: 12px;
  }
  .footer-copyright {
    font-size: 11px;
    line-height: 1.6;
    word-break: keep-all;
  }
  .btn-primary {
    padding: 15px 35px;
    font-size: 15px;
  }
  .btn-info-more {
    padding: 12px 30px;
    font-size: 14px;
  }
  .btn-primary-large {
    width: 100%;
    max-width: 320px;
    padding: 18px 40px;
    font-size: 16px;
  }
  .cta-text {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .section-cta {
    padding: 35px 20px;
    margin-top: 40px;
  }
  .cta-title {
    margin-bottom: 15px;
    font-size: 19px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}
.stat-number {
  font-size: 42px;
}

.info-item-home a {
  padding: 25px 20px;
}

.info-title-home {
  font-size: 16px;
}

.info-text-home {
  font-size: 13px;
}