body {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  line-height: 1.8;
  color: #111827;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.footer-logo {
  flex: 1 1 200px;
}

.footer-links {
  flex: 1 1 200px;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer-column-title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.footer-link {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  padding-bottom: 1.5rem;
} */

/* ロゴスクロール */
.logo-section {
  max-width: 1300px !important;
}

.logo-slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.logo-slider {
  display: flex;
  width: fit-content; /* 中身の幅に合わせる */
}

.logo-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scroll-loop 80s linear infinite;
}

/* .logo-slider-wrapper:hover .logo-list {
  animation-play-state: paused;
} */

.logo-item {
  flex-shrink: 0;
  margin: 0 30px; /* ロゴ間の余白 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  max-height: 80px; /* ロゴの高さを揃える */
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
  transition: transform 0.2s ease-out;
}

.logo-item a:hover .logo-image {
  transform: scale(1.1);
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  /* セクションの横方向のパディングを追加して端に寄りすぎないようにする */
  .logo-section {
    padding: 1rem 10px;
  }

  /* ロゴ間の余白を調整 */
  .logo-item {
    margin: 0 15px; /* モバイル: ロゴ間の余白を狭く */
  }

  /* ロゴの高さを調整 */
  .logo-image {
    max-height: 30px; /* モバイル: ロゴの高さを小さく */
  }

  /* アニメーション速度を遅くして見やすくする */
  .logo-list {
    animation: scroll-loop 100s linear infinite; /* 60s -> 100s に変更してさらに遅く */
  }

  /* ホバーエフェクトはタッチデバイスでは不要な場合が多いが、残しておきます */
  .logo-item a:hover .logo-image {
    transform: none; /* モバイルでのホバーは無効化しても良い */
  }
}

/* === SWELL CSS との衝突回避: ロゴスライダー強制適用 === */
.logo-slider-wrapper {
  overflow: hidden !important;
  width: 100% !important;
  padding: 10px 0 !important;
}
.logo-slider {
  display: flex !important;
  width: max-content !important;
  align-items: center;
}
.logo-list {
  display: flex !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0;
  animation: scroll-loop 80s linear infinite;
}
.logo-list > li.logo-item {
  flex-shrink: 0 !important;
  margin: 0 30px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  list-style: none !important;
}
.logo-list > li.logo-item::before,
.logo-list > li.logo-item::marker {
  content: none !important;
  display: none !important;
}
.logo-image {
  max-height: 80px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo-list > li.logo-item {
    margin: 0 15px !important;
  }
  .logo-image {
    max-height: 40px !important;
  }
}
