.rms-section {
    padding: 20px 8px;
    text-align: center;
    overflow: hidden;
}
.rms-title {
    font-size: 20px;
    font-weight: bold;
    color: #e8607a;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}
.rms-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: #e8607a;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* カルーセル全体 */
.rms-carousel-wrap {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.rms-carousel {
    overflow: hidden;
    border-radius: 10px;
    margin: 0 20px;
}
.rms-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    align-items: stretch;
}

/* カード（幅はJSで設定） */
.rms-card {
    flex: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(232,96,122,.10);
    padding: 14px 14px 12px;
    margin: 0 5px;
    text-align: left;
    box-sizing: border-box;
}
blockquote.rms-card-text {
    font-size: 12px;
    min-height: 60px;
    margin-bottom: 10px;
}
.rms-card-stars {
    color: #ffb300;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.rms-card-stars .empty { color: #ddd; }
.rms-card-meta {
    font-size: 11px;
    color: #999;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}

/* 矢印 */
.rms-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    cursor: pointer;
    font-size: 16px;
    color: #e8607a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    padding: 0;
    line-height: 1;
    z-index: 2;
}
.rms-arrow:hover { background: #e8607a; color: #fff; }
.rms-arrow:disabled { opacity: 0.25; cursor: default; }
.rms-arrow-prev { left: 0; }
.rms-arrow-next { right: 0; }

/* ドット */
.rms-dots {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.rms-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.rms-dot.active { background: #e8607a; transform: scale(1.2); }
