/* ===== PROMO TABS MODULE (kenpogen-style) ===== */
.etl-promo-wrap {
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  color: #2c2c2c;
  box-sizing: border-box;
}
.etl-promo-wrap *, .etl-promo-wrap *::before, .etl-promo-wrap *::after { box-sizing: border-box; }
.etl-promo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #faf5f4;
}
.etl-promo-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 16px;
}
.etl-headline-title {
  color: #2c2c2c;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.etl-headline-title span { color: #d4817a; }
.etl-section-blocks {
  max-width: 900px;
  margin: 0 auto;
}
.etl-tab-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
  scrollbar-width: none;
}
.etl-tab-wrapper::-webkit-scrollbar { display: none; }
.etl-tab-item {
  padding: 16px 14px;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: #999;
  min-width: 0;
  text-align: center;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  cursor: pointer;
  flex: 1;
  white-space: nowrap;
  border: none;
  transition: all 0.25s ease;
  line-height: 1.3;
}
.etl-tab-item:hover { color: #666; }
.etl-tab-item.active {
  background: #d4817a;
  color: #fff;
}
.etl-content-wrapper {
  position: relative;
  background: #d4817a;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  min-height: 0;
}
.etl-tab-nav-arrows {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}
.etl-tab-nav-arrow {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.7);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.etl-content-wrapper:hover .etl-tab-nav-arrow { opacity: 1; }
.etl-tab-nav-arrow svg {
  width: 18px; height: 18px;
  stroke: #d4817a;
  fill: none;
  stroke-width: 2;
}
.etl-content-item {
  color: #2c2c2c;
  font-size: 16px;
  display: none;
  word-break: break-all;
  animation: etlFadeIn 0.3s ease;
}
.etl-content-item.active { display: block; }
@keyframes etlFadeIn { from { opacity: 0; } to { opacity: 1; } }
.etl-content-item-inner {
  position: relative;
  min-height: 0;
}
.etl-content-panel {
  padding: 24px 20px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.etl-content-bg-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.etl-content-bg-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 10px 10px;
  object-fit: cover;
}
.etl-tab-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.etl-tab-pagination-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.2s;
}
.etl-tab-pagination-dot.active {
  background: #d4817a;
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .etl-promo-inner { padding: 10px 10px; }
  .etl-headline-title { font-size: 16px; margin-bottom: 10px; }
  .etl-tab-wrapper { gap: 6px; }
  .etl-tab-item {
    padding: 10px 10px;
    font-size: 12px;
    min-width: 90px;
    flex: none;
  }
  .etl-tab-nav-arrow { opacity: 0.8; width: 28px; height: 28px; }
  .etl-tab-nav-arrow svg { width: 14px; height: 14px; }
  .etl-content-panel { padding: 16px 14px; }
}
