/*
Theme Name: Charmant Recruiting
Theme URI: https://charmant-recruiting.com
Author: Your Name
Author URI: https://your-website.com
Description: A custom theme for Charmant Recruiting website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: charmant-recruiting
*/

/* CLIENT
---------------------------------------- */
.top-client {
  padding: 100px 0;
  background-color: #f8f8f8;
}

.top-client__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-client__title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.top-client__content {
  display: flex;
  gap: 60px;
}

.top-client__left {
  flex: 1;
}

.top-client__subtitle {
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.top-client__features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.top-client__feature {
  display: flex;
  gap: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.top-client__feature::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #333;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-client__feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.top-client__feature.visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.top-client__feature-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #666;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.top-client__feature.visible .top-client__feature-number {
  opacity: 1;
  transform: translateX(0);
}

.top-client__feature-content {
  flex: 1;
}

.top-client__feature-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.top-client__feature.visible .top-client__feature-title {
  opacity: 1;
  transform: translateY(0);
}

.top-client__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-client__feature-list li {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-client__feature-list li:nth-child(1) {
  transition-delay: 0.6s;
}

.top-client__feature-list li:nth-child(2) {
  transition-delay: 0.8s;
}

.top-client__feature-list li:nth-child(3) {
  transition-delay: 1s;
}

.top-client__feature.visible .top-client__feature-list li {
  opacity: 1;
  transform: translateX(0);
}

.top-client__right {
  flex: 1;
  display: flex;
  align-items: center;
}

.top-client__stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.top-client__stat {
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.top-client__stat:nth-child(1) {
  transition-delay: 0.6s;
}

.top-client__stat:nth-child(2) {
  transition-delay: 0.8s;
}

.top-client__stat:nth-child(3) {
  transition-delay: 1s;
}

.top-client__stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.top-client__stat-number {
  font-size: 3.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.top-client__stat-text {
  font-size: 1.4rem;
  color: #666;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .top-client {
    padding: 60px 0;
  }

  .top-client__title {
    font-size: 2.4rem;
  }

  .top-client__content {
    flex-direction: column;
    gap: 40px;
  }

  .top-client__subtitle {
    font-size: 2rem;
  }

  .top-client__stat-number {
    font-size: 2.4rem;
  }
}
