/* フェードイン基本 */
.fade-in {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* 各セクションをフレックスレイアウトで2列に */
.section {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-bottom: 30px !important;
}

.section img {
  width: calc(50% - 10px) !important;
  height: auto !important;
  display: block !important;
}