/* ============================================
   onino — Top Page
   ============================================ */

/* ============================================
   Hero Slider
   ============================================ */
.hero {
  margin-top: 72px;
  position: relative;
}

.hero-swiper {
  width: 100%;
  aspect-ratio: 16 / 6.5;
  overflow: hidden;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

/* ============================================
   Sections — shared
   ============================================ */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  line-height: 1.2;
}

.section-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #999;
  margin-top: 8px;
}

/* ============================================
   News
   ============================================ */
.news-list {
  max-width: 680px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.news-item + .news-item {
  border-top: 1px solid #eee;
}

.news-item:hover {
  background: #f5f5f5;
}

.news-date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-text {
  font-size: 16px;
  font-weight: 500;
  color: #2c2c2c;
}

.news-more {
  text-align: center;
  margin-top: 48px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 40px;
  border: 2px solid #1a1a1a;
  border-radius: 100px;
  color: #1a1a1a;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-more:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.btn-more:hover .btn-arrow {
  transform: translateX(3px);
}

/* ============================================
   Company (Light section)
   ============================================ */
.section--light {
  background: #f7f7f7;
}

.company-table-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 20px 0;
  font-size: 15px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
  line-height: 1.9;
}

.company-table th {
  width: 130px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #888;
  white-space: nowrap;
  padding-right: 32px;
}

.company-table td {
  color: #1a1a1a;
  font-weight: 400;
  font-size: 16px;
}

/* ============================================
   Responsive — Top Page
   ============================================ */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    margin-top: 60px;
  }

  .hero-swiper {
    aspect-ratio: 16 / 10;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  /* News */
  .news-item {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 18px 16px;
  }

  .news-text {
    width: 100%;
    font-size: 15px;
  }

  /* Company */
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding-right: 0;
  }

  .company-table th {
    padding-bottom: 2px;
    border-bottom: none;
    font-size: 11px;
  }

  .company-table td {
    padding-top: 0;
    padding-bottom: 20px;
    font-size: 15px;
  }
}
