/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 16 2026 | 06:37:01 */
/* ===== ローリングバレーボールページ ===== */
.rv-page {
    max-width: 860px;
    margin: 0 auto;
    color: #2b2b2b;
    line-height: 1.85;
}

/* リード文 */
.rv-lead {
    background: #eef4f7;
    border-left: 5px solid #5c8da8;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin-bottom: 36px;
    font-size: 1.02em;
}

/* セクション */
.rv-section {
    margin-bottom: 40px;
}
.rv-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.rv-section-num {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    background: #5c8da8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    font-weight: bold;
}
.rv-section-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #1f2d3a;
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #d4e4ed;
    flex: 1;
}
.rv-section-body {
    padding-left: 50px;
}
.rv-section-body p {
    margin: 0 0 16px;
    font-size: 0.95em;
}

/* カード */
.rv-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.rv-card {
    background: #fff;
    border: 1px solid #d4e4ed;
    border-top: 3px solid #5c8da8;
    border-radius: 8px;
    padding: 16px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.rv-card-head {
    font-weight: bold;
    color: #2c5f7a;
    margin-bottom: 8px;
    font-size: 0.95em;
}
.rv-card p {
    font-size: 0.88em;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* タイムライン */
.rv-timeline {
    position: relative;
    padding-left: 20px;
    margin-top: 16px;
}
.rv-timeline::before {
    content: "";
    position: absolute;
    left: 90px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #c5d8e8;
}
.rv-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}
.rv-tl-item:last-child {
    margin-bottom: 0;
}
.rv-tl-year {
    flex: 0 0 70px;
    font-weight: bold;
    color: #5c8da8;
    font-size: 0.9em;
    padding-top: 2px;
    text-align: right;
}
.rv-tl-content {
    flex: 1;
    background: #f5f9fb;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9em;
    color: #333;
    line-height: 1.6;
    position: relative;
}
.rv-tl-content::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 12px;
    width: 14px;
    height: 14px;
    background: #5c8da8;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #5c8da8;
}

/* 締めくくり */
.rv-closing {
    background: linear-gradient(135deg, #5c8da8 0%, #4a7691 100%);
    color: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 8px;
    font-size: 0.96em;
    line-height: 1.9;
}
.rv-closing strong {
    color: #fff;
}

/* スマホ */
@media (max-width: 600px) {
    .rv-section-body { padding-left: 0; }
    .rv-cards { grid-template-columns: 1fr; }
    .rv-timeline { padding-left: 0; }
    .rv-timeline::before { left: 44px; }
    .rv-tl-year { flex: 0 0 56px; font-size: 0.82em; }
}

