/*
 * 画像カルーセル（雨照/メッセージ/鑑定/スピリチュアル 各セクション）
 */
.teller-carousel { position:relative; width:100%; }
.teller-carousel__wrapper { overflow:hidden; width:100%; border-radius:16px; }
.teller-carousel__track { display:flex; transition:transform 0.3s ease; }
.teller-carousel__slide { width:100%; flex-shrink:0; aspect-ratio:300/200; background:rgba(0,0,0,0.56); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.teller-carousel__slide img { width:100%; height:100%; object-fit:cover; }

.teller-carousel__nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.85); border:none; border-radius:50%; width:32px; height:32px; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 1px 4px rgba(0,0,0,0.2); z-index:2; font-size:18px; line-height:1; }
.teller-carousel__nav--prev { left:8px; }
.teller-carousel__nav--next { right:8px; }

.teller-carousel__dots { display:flex; justify-content:center; gap:6px; margin-top:8px; }
.teller-carousel__dot { width:8px; height:8px; border-radius:50%; background:#bdbdbd; cursor:pointer; border:none; padding:0; transition:background-color 0.2s ease; }
.teller-carousel__dot.is-active { background:#1976d2; }
