/* =================================
   共通コンポーネント
   ================================= */

/* セクションラベル */
.section-label {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 0px;
  font-weight: bold;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
  z-index: 999;
}

/* CTAボタン */
.cta-button {
  display: block;
  margin: 0 auto;
  padding: 16px 40px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  width: 564px;
  height: 58px;
  box-sizing: border-box;
  box-shadow: 3px 3px 0 #CC143E;
}

/* 価格ラベル */
.price-label {
  display: inline-block;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 14px;
  padding: 4px 8px;
  margin-right: 8px;
  font-weight: bold;
  vertical-align: middle;
}

/* サークル（◯マーク） */
.circle {
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  display: inline-block;
}

/* ナビゲーション矢印 */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-arrow:hover {
  background: #3A9BB8;
}

.nav-arrow.prev {
  left: 0px;
}

.nav-arrow.next {
  right: 0px;
}

/* ページネーションドット */
.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C4C4C4;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
}

.dot:hover {
  background: var(--primary-color);
}

/* 装飾ライン */
.vertical-line {
  width: 2px;
  height: 20px;
  background: var(--primary-color);
}

.horizontal-line {
  width: 60px;
  height: 1px;
  background: var(--primary-color);
}

/* バブル（丸い背景） */
.bubble {
  width: 154px;
  height: 154px;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 auto;
}